summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_style.h
blob: df1ed13145af62bf94c9301fc19e10abece389b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/* This file is part of the KDE project
   Copyright (C) 2003 Norbert Andres, nandres@web.de

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef __kspread_style__
#define __kspread_style__

#include <tqbrush.h>
#include <tqcolor.h>
#include <tqfont.h>
#include <tqpen.h>

#include "kspread_format.h"

class TQDomDocument;
class TQDomElement;
class KoGenStyles;
class KoOasisStyles;

namespace KSpread
{
class CustomStyle;

/**
 * @brief The Style class represents a cell style.
 * Built-in and custom styles, the ones shown in the StyleManager dialog,
 * are CustomStyles. Pure Styles have no name, for instance, and are only
 * used as AUTO styles.
 */
class Style
{
public:
  /// The style type
  enum StyleType
  {
    BUILTIN,   ///< built-in style (the default style)
    CUSTOM,    ///< custom style (defined in the StyleManager dialog)
    AUTO,      ///< automatically generated on cell format changes
    TENTATIVE  ///< @internal temporary state
  };

  enum FontFlags
    {
      FBold      = 0x01,
      FUnderline = 0x02,
      FItalic    = 0x04,
      FStrike    = 0x08
    };

  /// @see Format::FormatFlags
  enum Properties
    {
      PDontPrintText = 0x01,
      PCustomFormat  = 0x02,
      PNotProtected  = 0x04,
      PHideAll       = 0x08,
      PHideFormula   = 0x10,
      PMultiRow      = 0x20,
      PVerticalText  = 0x40
    };

    // TODO Stefan: merge with Format::Properties
    /// @see Format::Properties
    enum FlagsSet
    {
      SAlignX          = 0x01,
      SAlignY          = 0x02,
      //SFactor was here
      SPrefix          = 0x08,
      SPostfix         = 0x10,
      SLeftBorder      = 0x20,
      SRightBorder     = 0x40,
      STopBorder       = 0x80,
      SBottomBorder    = 0x100,
      SFallDiagonal    = 0x200,
      SGoUpDiagonal    = 0x400,
      SBackgroundBrush = 0x800,
      SFont            = 0x1000,
      STextPen         = 0x2000,
      SBackgroundColor = 0x4000,
      SFloatFormat     = 0x8000,
      SFloatColor      = 0x10000,
      SMultiRow        = 0x20000,
      SVerticalText    = 0x40000,
      SPrecision       = 0x80000,
      SFormatType      = 0x100000,
      SAngle           = 0x200000,
      //SComment         = 0x400000,
      SIndent          = 0x800000,
      SDontPrintText   = 0x1000000,
      SCustomFormat    = 0x2000000,
      SNotProtected    = 0x4000000,
      SHideAll         = 0x8000000,
      SHideFormula     = 0x10000000,
      SFontSize        = 0x20000000,
      SFontFlag        = 0x40000000,
      SFontFamily      = 0x80000000
    };

  /**
   * Constructor.
   * Creates an empty automatic style.
   */
  Style();
  /**
   * Constructor.
   * Creates an automatic style.
   * If @p style is a custom or built-in style (e.g. the default style),
   * @p style becomes the tqparent style. In this case, features are NOT SET.
   * @param style The style which features are copied.
   */
  Style( Style* style );

  /**
   * Destructor.
   */
  virtual ~Style();

  /** Returns true if both styles have the same properties */
  bool operator == (const Style& style) const;
  inline bool operator!=( const Style& other ) const { return !operator==( other ); }

  static FormatType dateType( const TQString &_format );
  static FormatType timeType( const TQString &_format );
  static FormatType fractionType( const TQString &_format );

  /**
   * @return the name of the data style (number, currency, percentage, date,
   * boolean, text)
   */
  static TQString saveOasisStyleNumeric( KoGenStyle &style, KoGenStyles &mainStyles, FormatType _style,
                                        const TQString &_prefix, const TQString &_postfix, int _precision, const TQString& symbol );
  static TQString saveOasisStyleNumericDate( KoGenStyles &mainStyles, FormatType _style,
                                            const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericFraction( KoGenStyles &mainStyles, FormatType _style,
                                                const TQString &_prefix, const TQString _suffix );
  static TQString saveOasisStyleNumericTime( KoGenStyles& mainStyles, FormatType _style,
                                            const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericCustom( KoGenStyles&mainStyles, FormatType _style,
                                              const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericScientific( KoGenStyles&mainStyles, FormatType _style,
                                                  const TQString &_prefix, const TQString _suffix, int _precision );
  static TQString saveOasisStyleNumericPercentage( KoGenStyles&mainStyles, FormatType _style, int _precision,
                                                  const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericMoney( KoGenStyles&mainStyles, FormatType _style,
                                             const TQString& symbol, int _precision,
                                             const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericText( KoGenStyles&mainStyles, FormatType _style, int _precision,
                                            const TQString &_prefix, const TQString &_suffix );
  static TQString saveOasisStyleNumericNumber( KoGenStyles&mainStyles, FormatType _style, int _precision,
                                              const TQString &_prefix, const TQString &_suffix );


  StyleType type() const { return m_type; }

  void saveXML( TQDomDocument & doc, TQDomElement & format ) const;
  bool loadXML( TQDomElement & format );

  /**
   * Saves an OASIS automatic style.
   * Reimplemented by CustomStyle for OASIS user styles.
   * @return always TQString()
   */
  virtual TQString saveOasis( KoGenStyle& style, KoGenStyles& mainStyles);
  void loadOasisStyle( KoOasisStyles& oasisStyles, const TQDomElement & element );
  static TQString saveOasisBackgroundStyle( KoGenStyles &mainStyles, const TQBrush &brush );

  /**
   * Releases this style. The internal reference counter is decremented.
   * @return true, if this style is not used anymore and should be deleted.
   */
  bool release();
  /**
   * Marks this style as used. The internal reference counter is incremented.
   */
  void addRef();
  /**
   * @return the number of references to this style.
   */
  int usage() const { return m_usageCount; }

  bool   hasProperty( Properties p ) const;
  bool   hasFeature( FlagsSet f, bool withoutParent ) const;
  void   clearFeature( FlagsSet f );
  uint   features() const { return m_featuresSet; }

  uint bottomPenValue() const { return m_bottomPenValue; }
  uint rightPenValue() const { return m_rightPenValue; }
  uint leftPenValue() const { return m_leftPenValue; }
  uint topPenValue() const { return m_topPenValue; }

  TQPen    const & pen()             const;
  TQColor  const & bgColor()         const;
  TQPen    const & rightBorderPen()  const;
  TQPen    const & bottomBorderPen() const;
  TQPen    const & leftBorderPen()   const;
  TQPen    const & topBorderPen()    const;
  TQPen    const & fallDiagonalPen() const;
  TQPen    const & goUpDiagonalPen() const;
  TQBrush  const & backGroundBrush() const;
  TQString const & strFormat()       const;
  TQString const & prefix()          const;
  TQString const & postfix()         const;
  TQString const & fontFamily()      const;

  Format::Align       alignX()      const;
  Format::AlignY      alignY()      const;
  Format::FloatFormat floatFormat() const;
  Format::FloatColor  floatColor()  const;
  FormatType  formatType()  const;

  Format::Currency const & currency() const;

  TQFont  font()        const;
  uint   fontFlags()   const;
  int    fontSize()    const;
  int    precision()   const;
  int    rotateAngle() const;
  double indent()      const;

  Style * setAlignX( Format::Align  alignX );
  Style * setAlignY( Format::AlignY alignY );
  Style * setFont( TQFont const & f );
  Style * setFontFamily( TQString const & fam );
  Style * setFontFlags( uint flags );
  Style * setFontSize( int size );
  Style * setPen( TQPen const & pen );
  Style * setBgColor( TQColor const & color );
  Style * setRightBorderPen( TQPen const & pen );
  Style * setBottomBorderPen( TQPen const & pen );
  Style * setLeftBorderPen( TQPen const & pen );
  Style * setTopBorderPen( TQPen const & pen );
  Style * setFallDiagonalPen( TQPen const & pen );
  Style * setGoUpDiagonalPen( TQPen const & pen );
  Style * setRotateAngle( int angle );
  Style * setIndent( double indent );
  Style * setBackGroundBrush( TQBrush const & brush );
  Style * setFloatFormat( Format::FloatFormat format );
  Style * setFloatColor( Format::FloatColor color );
  Style * setFormatType( FormatType format );
  Style * setStrFormat( TQString const & strFormat );
  Style * setPrecision( int precision );
  Style * setPrefix( TQString const & prefix );
  Style * setPostfix( TQString const & postfix );
  Style * setCurrency( Format::Currency const & currency );
  Style * setProperty( Properties p );
  Style * clearProperty( Properties p );

  CustomStyle * tqparent() const;
  TQString const & tqparentName() const { return m_parentName; }
  void setParent( CustomStyle * tqparent );

  /**
   * Returns the name of a colour.  This is the same as returned by TQColor::name, but an internal cache
   * is used to reduce the overhead when asking for the name of the same colour.
   */
  static TQString colorName( const TQColor& color );

protected:
  /**
   * Helper function for saveOasis
   * Does the real work by determining the used attributes.
   */
  void saveOasisStyle( KoGenStyle &style, KoGenStyles &mainStyles );

  void loadOasisDataStyle( KoOasisStyles& oasisStyles, const TQDomElement& styleStack );
  void loadOasisParagraphProperties( KoOasisStyles& oasisStyles, const KoStyleStack& styleStack );
  void loadOasisTableCellProperties( KoOasisStyles& oasisStyles, const KoStyleStack& styleStack );
  void loadOasisTextProperties( KoOasisStyles& oasisStyles, const KoStyleStack& styleStack );

  CustomStyle * m_parent;
  TQString        m_parentName;
  StyleType      m_type;
  uint           m_usageCount;
  uint           m_featuresSet;

  /**
   * Alignment of the text
   */
  Format::Align m_alignX;
  /**
   * Aligment of the text at top middle or bottom
   */
  Format::AlignY m_alignY;

  Format::FloatFormat m_floatFormat;
  /**
   * The color format of a floating point value
   */
  Format::FloatColor m_floatColor;

  FormatType m_formatType;

  /**
   * The font used to draw the text
   */
  TQString   m_fontFamily;
  uint      m_fontFlags;
  int       m_fontSize;

  /**
   * The pen used to draw the text
   */
  TQPen m_textPen;
  /**
   * The background color
   */
  TQColor m_bgColor;

  /**
   * The pen used to draw the right border
   */
  TQPen m_rightBorderPen;

  /**
   * The pen used to draw the bottom border
   */
  TQPen m_bottomBorderPen;

  /**
   * The pen used to draw the left border
   */
  TQPen m_leftBorderPen;

  /**
   * The pen used to draw the top border
   */
  TQPen m_topBorderPen;

  /**
   * The pen used to draw the diagonal
   */
  TQPen m_fallDiagonalPen;
  /**
   * The pen used to draw the the diagonal which go up
   */
  TQPen m_goUpDiagonalPen;

  /**
   * The brush used to draw the background.
   */
  TQBrush m_backGroundBrush;

  int m_rotateAngle;
  /**
   * Give indent
   */
  double m_indent;
  /**
   * Format of the content, e.g. #.##0.00, dd/mmm/yyyy,...
   */
  TQString m_strFormat;
  /**
   * The precision of the floating point representation
   * If precision is -1, this means that no precision is specified.
   */
  int m_precision;
  /**
   * The prefix of a numeric value ( for example "$" )
   * May be empty.
   */
  TQString m_prefix;
  /**
   * The postfix of a numeric value ( for example "DM" )
   * May be empty.
   */
  TQString m_postfix;
  /**
   * Currency information:
   * about which currency from which country
   */
  Format::Currency m_currency;

  /**
   * Stores information like: DonPrint, DontShowFormula, Protected...
   */
  uint m_properties;

  uint m_bottomPenValue;
  uint m_rightPenValue;
  uint m_leftPenValue;
  uint m_topPenValue;

  bool featureSet( FlagsSet f ) const { return ( !m_parent || ( m_featuresSet & (uint) f ) ); }
};

/**
 * @brief Built-in or custom style defined in StyleManager dialog.
 */
class CustomStyle : public Style
{
public:
  /**
   * Constructor.
   * Creates a custom style.
   * @param style The style which's features are copied.
   * @param name The name of this style.
   */
  CustomStyle( Style * style, TQString const & name );
  CustomStyle( TQString const & name, CustomStyle * tqparent );
  ~CustomStyle();

  TQString const & name() const { return m_name; }

  void save( TQDomDocument & doc, TQDomElement & styles );
  /**
   * @reimp
   * Stores an OASIS user style.
   * @return the OASIS style's name
   */
  virtual TQString saveOasis( KoGenStyle& style, KoGenStyles &mainStyles );
  /**
   * Loads the style properties from @p style .
   * Determines also the tqparent's name.
   * @param oasisStyles map of all styles
   * @param style the DOM element defining the style
   * @param name the style's new name
   */
  void loadOasis( KoOasisStyles& oasisStyles, const TQDomElement & style, const TQString & name );

  bool loadXML( TQDomElement const & style, TQString const & name );

  void setType( StyleType type ) { m_type = type; }

  void setName( TQString const & name );
  void refreshParentName();
  bool definesAll() const;

  void changeAlignX( Format::Align  alignX );
  void changeAlignY( Format::AlignY alignY );
  void changeFont( TQFont const & f );
  void changeFontFamily( TQString const & fam );
  void changeFontSize( int size );
  void changeFontFlags( uint flags );
  void changePen( TQPen const & pen );
  void changeTextColor( TQColor const & color );
  void changeBgColor( TQColor const & color );
  void changeRightBorderPen( TQPen const & pen );
  void changeBottomBorderPen( TQPen const & pen );
  void changeLeftBorderPen( TQPen const & pen );
  void changeTopBorderPen( TQPen const & pen );
  void changeFallBorderPen( TQPen const & pen );
  void changeGoUpBorderPen( TQPen const & pen );
  void changeRotateAngle( int angle );
  void changeIndent( double indent );
  void changeBackGroundBrush( TQBrush const & brush );
  void changeFloatFormat( Format::FloatFormat format );
  void changeFloatColor( Format::FloatColor color );
  void changeFormatType( FormatType format );
  void changeStrFormat( TQString const & strFormat );
  void changePrecision( int precision );
  void changePrefix( TQString const & prefix );
  void changePostfix( TQString const & postfix );
  void changeCurrency( Format::Currency const & currency );

  void addProperty( Properties p );
  void removeProperty( Properties p );

  bool operator==( const CustomStyle& other ) const;
  inline bool operator!=( const CustomStyle& other ) const { return !operator==( other ); }

 private:
  friend class StyleManager;

  TQString              m_name;

  /**
   * Constructor.
   * Constructs the default cell style.
   */
  CustomStyle();
};

} // namespace KSpread

#endif