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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
|
/* This file is part of the KDE project
Copyright 2006 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
Copyright 2004 Tomas Mecir <mecirt@gmail.com>
Copyright 1999-2002,2004 Laurent Montel <montel@kde.org>
Copyright 2002,2004 Ariya Hidayat <ariya@kde.org>
Copyright 2002-2003 Norbert Andres <nandres@web.de>
Copyright 2003 Stefan Hetzl <shetzl@chello.at>
Copyright 2001-2002 Philipp Mueller <philipp.mueller@gmx.de>
Copyright 2002 Harri Porten <porten@kde.org>
Copyright 2002 John Dailey <dailey@vt.edu>
Copyright 1999-2001 David Faure <faure@kde.org>
Copyright 2000-2001 Werner Trobin <trobin@kde.org>
Copyright 2000 Simon Hausmann <hausmann@kde.org
Copyright 1998-1999 Torben Weis <weis@kde.org>
Copyright 1999 Michael Reiher <michael.reiher.gmx.de>
Copyright 1999 Reginald Stadlbauer <reggie@kde.org>
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_CELL
#define KSPREAD_CELL
#include <tqpainter.h>
#include <tqptrlist.h>
#include <tqdatetime.h>
#include "kspread_condition.h"
class KLocale;
class TQDomElement;
class TQDomDocument;
class KoXmlWriter;
class KoGenStyles;
class KoGenStyle;
class KSParseNode;
class KoRect;
class KoPoint;
class KoOasisStyles;
class KoOasisLoadingContext;
namespace KSpread
{
class Canvas;
class Format;
class GenValidationStyles;
class Sheet;
class Value;
class View;
class ConditionalDialog;
struct Validity
{
Validity()
{
valMin = 0.0;
valMax = 0.0;
m_cond = Conditional::None;
m_action = Action::Stop;
m_restriction = Restriction::None;
displayMessage = true;
allowEmptyCell = false;
displayValidationInformation = false;
};
bool operator==( const Validity& other ) const
{
if ( message == other.message &&
title == other.title &&
titleInfo == other.titleInfo &&
messageInfo == other.messageInfo &&
valMin == other.valMin &&
valMax == other.valMax &&
m_cond == other.m_cond &&
m_action == other.m_action &&
m_restriction == other.m_restriction &&
timeMin == other.timeMin &&
timeMax == other.timeMax &&
dateMin == other.dateMin &&
dateMax == other.dateMax &&
displayMessage == other.displayMessage &&
allowEmptyCell == other.allowEmptyCell &&
displayValidationInformation == other.displayValidationInformation &&
listValidity == other.listValidity )
{
return true;
}
return false;
}
inline bool operator!=( const Validity& other ) const { return !operator==( other ); }
TQString message;
TQString title;
TQString titleInfo;
TQString messageInfo;
double valMin;
double valMax;
Conditional::Type m_cond;
Action::Type m_action;
Restriction::Type m_restriction;
TQTime timeMin;
TQTime timeMax;
TQDate dateMin;
TQDate dateMax;
bool displayMessage;
bool allowEmptyCell;
bool displayValidationInformation;
TQStringList listValidity;
};
class Formula;
/**
* For every cell in the spread sheet there is a Cell object.
*
* Cell contains format information and algorithm and it
* contains the calculation algorithm.
*
* However, all empty cells are represented by one instace, called the
* default cell. @ref #isDefault can be used to determine whether or not a Cell object represents
* the default one.
*/
class KSPREAD_EXPORT Cell
{
friend class Conditions;
public:
Cell (Sheet *_sheet, int _column, int _row);
Cell (Sheet *_sheet, Style * _style, int _column, int _row);
/**
* @see #sheetDies
*/
~Cell();
/**
* Returns the worksheet which owns this cell.
*/
Sheet* sheet() const;
/**
* Returns true if this is a default cell (with row and column equal to zero).
* Normally, cell constructed within a sheet can't be a default cell.
*/
bool isDefault() const;
/**
* Returns true if this cell has no content, i.e no text and no formula.
*/
bool isEmpty() const;
/**
* Returns the cell's column. This could be 0 if the cell is the default cell.
*/
int column() const;
/**
* Returns the cell's row. This could be 0 if the cell is the default cell.
*/
int row() const;
/**
* Returns the name of the cell. For example, the cell in first column and
* first row is "A1".
*/
TQString name() const;
/**
* Returns the full name of the cell, i.e. including the worksheet name.
* Example: "Sheet1!A1"
*/
TQString fullName() const;
/**
* Returns the column name of the cell.
*/
TQString columnName() const;
/**
* Given the cell position, this static function returns the name of the cell.
* Example: name(5,4) will return "E4".
*/
static TQString name( int col, int row );
/**
* Given the sheet and cell position, this static function returns the full name
* of the cell, i.e. with the name of the sheet.
*/
static TQString fullName( const Sheet *s, int col, int row );
/**
* Given the column number, this static function returns the corresponding
* column name, i.e. the first column is "A", the second is "B", and so on.
*/
static TQString columnName( uint column );
/**
* Returns the locale setting of this cell.
*/
KLocale* locale() const;
/**
* Returns true if this cell holds a formula.
*/
bool isFormula() const;
/**
* Return the text the user entered. This could be a value (e.g. "14.03")
* or a formula (e.g. "=SUM(A1:A10)")
*/
TQString text() const;
TQString strOutText() const;
Formula *formula () const;
/** Returns the format object of this cell */
Format* format() const;
/**
* Returns the value that this cell holds. It could be from the user
* (i.e. when s/he enters a value) or a result of formula.
*/
const Value value() const;
/**
* Sets the value for this cell.
*/
void setValue( const Value& value );
/**
* Sets the value for this cell and its formatting and input text, if
* appropriate. Can therefore be used as a replacement for setCellText,
* if we don't need to parse.
*
* If \p inputText is empty and the cell has NO formula, the input text
* is created from \p value .
*
* \param value the new cell value
* \param fmtType the formatting type
* \param inputText the new input text
*
* \note Calls setValue() after setting the formatting and input text.
*/
void setCellValue (const Value& value, FormatType fmtType = No_format,
const TQString& inputText = TQString());
Cell* previousCell() const;
Cell* nextCell() const;
void setPreviousCell( Cell* c );
void setNextCell( Cell* c );
/**
* Moves around the cell. It cares about obscured and obscuring cells and
* forces, retqlayout, calculation and redrawing of the cell.
*/
void move( int column, int row );
/**
* This method notifies the cell that the parent sheet is being deleted.
*/
// Note: This used to remove any links from this cell to other cells. However, this caused a problem
// in other parts of the code which relied upon walking from one cell to the next using
// nextCell().
void sheetDies();
/**
* Save this cell.
* @param doc document to save cell in
* @param _x_offset x offset
* @param _y_offset y offset
* @param force if set to true, all the properties of the format are stored (used for "Copy"),
* otherwise only the non-default properties will be stored.
* Set this to false if you want smaller files.
* @param copy if set to true, all cell formats will be copied instead of referencing the format (style name),
* thus resulting in larger output (files).
* Set this to false if you want smaller files.
* @param era set this to true if you want to encode relative references as absolutely (they will be switched
* back to relative references during decoding) - is used for cutting to clipboard
* Usually this is false, to only store the properties explicitely set.
*/
TQDomElement save( TQDomDocument& doc, int _x_offset = 0, int _y_offset = 0, bool force = false, bool copy = false, bool era = false );
bool saveOasis( KoXmlWriter& xmlwriter, KoGenStyles& mainStyles,
int row, int column, int &repeated,
GenValidationStyles &valStyle );
void saveOasisValue (KoXmlWriter &xmlWriter);
/**
* @return the OASIS style's name
*/
TQString saveOasisCellStyle( KoGenStyle ¤tCellStyle,KoGenStyles &mainStyles );
bool load( const TQDomElement& cell, int _xshift, int _yshift, Paste::Mode pm = Paste::Normal,
Paste::Operation op = Paste::OverWrite, bool paste = false );
/**
* Loads a cell from an OASIS XML element.
* @param element An OASIS XML element
* @param oasisContext The loading context assoiated with the XML element
*/
bool loadOasis( const TQDomElement & element, KoOasisLoadingContext &oasisContext , Style* style);
TQTime toTime(const TQDomElement &element);
TQDate toDate(const TQDomElement &element);
/**
* Copyies the format from the cell at the position (_column|_row).
*
* @see #copyAll
*/
void copyFormat( const int column, const int row );
/**
* A convenience function.
*
* @see #copyAll
*/
void copyFormat( const Cell* cell );
void copyContent( const Cell* cell );
/**
* Copies the format and the content. It does not copy the #m_row and #m_column attributes.
* Besides that all persistent attributes are copied. @ref #setCellText is called to set the real
* content.
*
* @see #copyFormat
*/
void copyAll( Cell *cell);
enum BorderSides
{
Border_None =0x00,
Border_Left =0x01,
Border_Right =0x02,
Border_Top =0x04,
Border_Bottom =0x08,
Border_SizeGrip =0x10 //the size grip is the little square on the bottom right-hand corner of a highlighted range of cells
//which the user can click and drag to resize the range and change which cells are included.
//this is not used with normal borders
};
/**
* Paints the cell.
*
* @param rect the portion of the canvas that is actually in view
* @param painter the painter object to paint on
* @param view the view of this data. This may be NULL, but no selection
* will be included with the painting.
* @param coordinate coordinates on the painter where the top left corner
* of the cell should be painted plus width and height
* @param cellRef the column/row coordinates of the cell.
* @param paintBorder a combination of flags from the Cell::BorderSides enum which specifies which cell borders to paint
* @param rightPen pen to use to draw the right border if @p paintBorder includes the Border_Right flag
* @param bottomPen pen to use to draw the bottom border if @p paintBorderBottom includes the Border_Bottom flag
* @param leftPen pen to use to draw the left border if @p paintBorderLeft includes the Border_Left flag
* @param topPen pen to use to draw the top border if @p paintBorderTop includes the Border_Top flag
* @param mergedCellsPainted list of merged cells being painted
* @param drawCursor whether to draw the cursor and selection or not
*/
void paintCell( const KoRect & rect, TQPainter & painter,
View * view, const KoPoint & coordinate,
const TQPoint & cellRef,
int paintBorder,
TQPen & rightPen,
TQPen & bottomPen,
TQPen & leftPen,
TQPen & topPen,
TQValueList<TQPoint> &mergedCellsPainted,
bool drawCursor = true );
/**
* @param _col the column this cell is assumed to be in.
* This parameter defaults to the return value of @ref #column.
* @param _canvas the canvas this cell is assumed to be in.
*
* @return the width of this cell as int
*/
int width( int _col = -1, const Canvas *_canvas = 0L ) const;
/**
* @param _row the row this cell is assumed to be in.
* @param _canvas the canvas this cell is assumed to be in.
*
* @return the height of this cell as int
*/
int height( int _row = -1, const Canvas *_canvas = 0L ) const;
/**
* @param _canvas the canvas this cell is assumed to be in.
* @param _col the column this cell is assumed to be in.
* This parameter defaults to the return value of @ref #column.
*
* @return the width of this cell as double
*/
double dblWidth( int _col = -1, const Canvas *_canvas = 0L ) const;
/**
* @param _row the row this cell is assumed to be in.
* @param _canvas the canvas this cell is assumed to be in.
*
* @return the height of this cell as double
*/
double dblHeight( int _row = -1, const Canvas *_canvas = 0L ) const;
/**
* @return a TQRect for this cell (i.e., a 1x1 rect). @see zoomedCellRect
*/
TQRect cellRect();
/**
* @return true if the cell should be printed in a print out.
* That si the case if it has any content, border, backgroundcolor,
* or background brush.
*
* @see Sheet::print
*/
bool needsPrinting() const;
/**
* Increases the precison of the
* value displayed. Precision means here the amount of
* digits behind the dot. If the current precision is the
* default of -1, then it is set to the number of digits
* behind the dot plus 1.
*/
void incPrecision();
/**
* Decreases the precison of the
* value displayed. Precision means here the amount of
* digits behind the dot. If the current precision is the
* default of -1, then it is set to the number of digits
* behind the dot minus 1.
*/
void decPrecision();
/**
* The high-level method for setting text, when the user inputs it.
* It will revert back to the old text if testValidity() returns action==stop.
*/
void setCellText( const TQString& _text, bool asString = false );
/**
* Sets the text in the cell when the user inputs it.
* Will determine the type of contents automatically.
* Called by setCellText.
*/
void setDisplayText( const TQString& _text );
/**
* Sets a link for this cell. For example, setLink( "mailto:joe@somewhere.com" )
* will open a new e-mail if this cell is clicked.
* Possible choices for link are URL (web, ftp), e-mail address, local file,
* or another cell.
*/
void setLink( const TQString& link );
/**
* Returns the link associated with cell. It is empty if this cell
* contains no link.
*/
TQString link() const;
////////////////////////////////
//
// Methods for querying format stuff.
//
////////////////////////////////
/**
* @return effective pen for the left border
* If this cell is merged by another cell, the other cell's
* left border pen. If this cell's conditional formatting contains
* a left border pen and the condition is matched, the conditional
* formatting's pen. Otherwise, its own left border pen.
*/
const TQPen & effLeftBorderPen( int col, int row ) const;
/**
* @return effective pen for the top border
* @see effLeftBorderPen
*/
const TQPen & effTopBorderPen( int col, int row ) const;
/**
* @return effective pen for the right border
* @see effLeftBorderPen
*/
const TQPen & effRightBorderPen( int col, int row ) const;
/**
* @return effective pen for the bottom border
* @see effLeftBorderPen
*/
const TQPen & effBottomBorderPen( int col, int row ) const;
/**
* @return effective pen for the go up diagonal border
* If this cell's conditional formatting contains a go up diagonal pen and
* the condition is matched, the conditional formatting's pen. Otherwise,
* its own go up diagonal pen.
*/
const TQPen & effGoUpDiagonalPen( int col, int row ) const;
/**
* @return effective pen for the go up diagonal border
* @see effGoUpDiagonalPen
*/
const TQPen & effFallDiagonalPen( int col, int row ) const;
const TQColor & effTextColor( int col, int row ) const;
/**
* @return "worth" of the effective bottom border pen
* @see Style::calculateValue
* @see effLeftBorderPen
*/
uint effBottomBorderValue( int col, int row ) const;
/**
* @return "worth" of the effective right border pen
* @see Style::calculateValue
* @see effLeftBorderPen
*/
uint effRightBorderValue( int col, int row ) const;
/**
* @return "worth" of the effective left border pen
* @see Style::calculateValue
* @see effLeftBorderPen
*/
uint effLeftBorderValue( int col, int row ) const;
/**
* @return "worth" of the effective top border pen
* @see Style::calculateValue
* @see effLeftBorderPen
*/
uint effTopBorderValue( int col, int row ) const;
/**
* @see Format::leftBorderPen
*/
const TQPen& leftBorderPen( int col, int row ) const;
/**
* @see Format::topBorderPen
*/
const TQPen& topBorderPen( int col, int row ) const;
/**
* @see Format::rightBorderPen
*/
const TQPen& rightBorderPen( int col, int row ) const;
/**
* @see Format::bottomBorderPen
*/
const TQPen& bottomBorderPen( int col, int row ) const;
/**
* @see Format::bgColor
*/
const TQColor& bgColor( int col, int row ) const;
/**
* @see Format::backGroundBrush
*/
const TQBrush& backGroundBrush( int col, int row ) const;
////////////////////////////////
//
// Methods for setting format stuff.
//
////////////////////////////////
/**
* @see Format::setLeftBorderPen
*/
void setLeftBorderPen( const TQPen& p );
/**
* @see Format::setTopBorderPen
*/
void setTopBorderPen( const TQPen& p );
/**
* @see Format::setRightBorderPen
*/
void setRightBorderPen( const TQPen& p );
/**
* @see Format::setBottomBorderPen
*/
void setBottomBorderPen( const TQPen& p );
//////////////////////
//
// Other stuff
//
//////////////////////
/**
* Return the format of this cell.
* Convenience method for Format::getFormatType
* Note that this is "how the user would like the data to be displayed if possible".
* If he selects a date format, and the cell contains a string, we won't apply that format.
*/
FormatType formatType() const;
/** returns true, if cell format is of date type or content is a date */
bool isDate() const;
/** returns true, if cell format is of time type or content is a time */
bool isTime() const;
void setNumber( double number );
/** return the cell's value as a double */
double getDouble ();
/** converts content to double format */
void convertToDouble ();
/** converts content to percentageformat */
void convertToPercent ();
/** converts content to money format */
void convertToMoney ();
/** converts content to time format */
void convertToTime ();
/** converts content to date format */
void convertToDate ();
/** return width of the text */
double textWidth() const;
/** return height of the text */
double textHeight() const;
/**
* Refreshing chart
* @param refresh is default true
* when it's false it's just for test
* it's used when you paste cell
*/
bool updateChart(bool refresh=true);
TQString testAnchor( int _x, int _y ) const;
/**
* Starts calculating.
* @param delay true if you want to check for delay condition in doc()
* false if you really have to calculate the value right now
* e.g. if you sort with formula as key
*
* @return true on success and false on error.
*/
bool calc(bool delay = true);
/** Set the calcDirtyFlag */
void setCalcDirtyFlag();
/** Checks the calcDirtyFlag */
bool calcDirtyFlag();
/**
* Notify this cell that another cell is depending, or no longer depending on this cell's value
*
* @param col the column of the cell
* @param row the row of the cell
* @param sheet the sheet that the cell is on
* @param isDepending true if the cell is now depending on this one, false if it is not any longer
* depending on it.
*/
void NotifyDepending( int col, int row, Sheet* sheet, bool isDepending );
/**
* Causes the format to be recalculated when the cell is drawn next time.
* This flag is for example set if the width of the column changes or if
* some cell specific format value like font or text change.
*/
void setLayoutDirtyFlag( bool format = false );
bool layoutDirtyFlag() const;
void clearDisplayDirtyFlag();
void setDisplayDirtyFlag();
/**
* Tells this cell that the @ref Cell 'cell' obscures this one.
* If this cell has to be redrawn, then the obscuring cell is redrawn instead.
*
* @param cell the obscuring cell
* @param isForcing whether this is a forced obscuring (merged cells) or
* just a temporary obscure (text overlap).
*/
void obscure( Cell *cell, bool isForcing = false);
/**
* Tells this cell that it is no longer obscured.
*
* @param cell the cell that is no longer obscuring this one.
*/
void unobscure(Cell* cell);
/**
* @return true if this cell is obscured by another.
*/
bool isObscured() const;
/**
* If this cell is part of a merged cell, then the marker may
* never reside on this cell.
*
* @return true if another cell has this one merged into itself.
*/
bool isPartOfMerged() const;
/**
* Return the cell that is obscuring this one (merged cells only).
* If no obscuring, return the cell itself.
*
* @return the cell that decides the format for the cell in question.
*/
Cell *ultimateObscuringCell() const;
/**
* @return the obscuring cell list (might be empty)
*/
TQValueList<Cell*> obscuringCells() const;
void clearObscuringCells();
/**
* Merge a number of cells, i.e. force the cell to occupy other
* cells space. If '_x' and '_y' are 0 then the merging is
* disabled.
*
* @param _col is the column this cell is assumed to be in.
* @param _row is the row this cell is assumed to be in.
* @param _x tells to occupy _x additional cells in the horizontal
* @param _y tells to occupy _y additional cells in the vertical
*
*/
void mergeCells( int _col, int _row, int _x, int _y );
/**
* @return true if the cell is forced to obscure other cells.
*/
bool doesMergeCells() const;
/**
* @return the number of obscured cells in the horizontal direction as a
* result of cell merging (forced obscuring)
*/
int mergedXCells() const;
/**
* @return the number of obscured cells in the vertical direction as a
* result of cell merging (forced obscuring)
*/
int mergedYCells() const;
/**
* @return the amount of obscured cells in the horizontal direction
*/
int extraXCells() const;
/**
* @return the amount of obscured cells in the vertical direction
*/
int extraYCells() const;
double extraWidth() const;
double extraHeight() const;
/**
* encode a formula into a text representation
*
* @param _era encode relative references absolutely (this is used for copying
* a cell to make the paste operation create a formula that points
* to the original cells, not the cells at the same relative position)
* @param _col row the formula is in
* @param _row column the formula is in
*/
TQString encodeFormula( bool _era = false, int _col = -1, int _row = -1 ) const;
TQString decodeFormula( const TQString &_text, int _col = -1, int _row = -1 ) const;
/**
* Merges the @p new_text with @p old_text during a paste operation.
* If both texts represent doubles, then the operation is performed on both
* values and the result is returned. If both texts represents a formula or
* one a formula and the other a double value, then a formula is returned.
* In all other cases @p new_text is returned.
*
* @return the merged text.
*/
TQString pasteOperation( const TQString &new_text, const TQString &old_text, Paste::Operation op );
/**
* @return true if the cell contains a formula that could not
* be evaluated. These cells usually appear with "####" on the screen.
*/
bool hasError() const;
/**
* Clear all error flags from the cell.
*/
void clearAllErrors();
/**
* Calculates the tqlayout of the cell, i,e, determines what should be shown
* for this cell, m_strOutText.
*/
void makeLayout( TQPainter &_painter, int _col, int _row );
/**
* Parses the formula.
* Fills #dependList and #formula.
* @return false on error.
*/
bool makeFormula();
void defaultStyle();
/**
* Gets a copy of the list of current conditions
*/
TQValueList<Conditional> conditionList() const;
/**
* Replace the old set of conditions with a new one
*/
void setConditionList(const TQValueList<Conditional> &newList);
Validity * getValidity( int newStruct = -1 );
void removeValidity();
/**
* return true if value is good
* else show a messagebox
*/
bool testValidity() const;
/**
* Calculates the text parameters stored in cell
* Applies font to use to @p painter
*/
void calculateTextParameters( TQPainter &painter, int _col, int _row );
/**
* return align X when align is undefined
*/
int defineAlignX();
/**
* Used for comparing cells (when sorting)
*/
bool operator > ( const Cell & ) const;
bool operator < ( const Cell & ) const;
bool operator==( const Cell& other ) const;
inline bool operator!=( const Cell& other ) const { return !operator==( other ); }
void freeAllObscuredCells();
/* descriptions of the flags are just below */
enum CellFlags{
/* this uses the same flags variable as Format. The least significant
16 bits are reserved for the base class, and the most significant 16
have been left for this subclass to use. */
Flag_LayoutDirty = 0x00010000,
Flag_CalcDirty = 0x00020000,
Flag_Progress = 0x00040000,
Flag_UpdatingDeps = 0x00080000,
Flag_DisplayDirty = 0x00100000,
Flag_Merged = 0x00200000,
Flag_CellTooShortX = 0x00400000,
Flag_CellTooShortY = 0x00800000,
Flag_ParseError = 0x01000000,
Flag_CircularCalculation = 0x02000000,
Flag_DependancyError = 0x04000000,
Flag_PaintingCell = 0x08000000, // On during painting
Flag_TextFormatDirty = 0x10000000
// Flag_Highlight = 0x20000000
};
void clearFlag( CellFlags flag );
void setFlag( CellFlags flag );
bool testFlag( CellFlags flag ) const;
/* descriptions of the flags are as follows: */
/*
* Error
* True if the cell is calculated and there was an error during calculation
* In that case the cell usually displays "#####"
*
* LayoutDirty
* Flag showing whether the current tqlayout is OK.
* If you change for example the fonts point size, set this flag. When the
* cell must draw itself on the screen it will first recalculate its tqlayout.
*
* CalcDirty
* Shows whether recalculation is necessary.
* If this cell must be recalculated for some reason, for example the user
* entered a new formula, then this flag is set. If @ref #bFormula is false
* nothing will happen at all.
*
* Progress
* Tells whether this cell it currently under calculation.
* If a cell thats 'progressFlag' is set is told to calculate we
* have detected a circular reference and we must stop calulating.
*
* UpdatingDeps
* Tells whether we've already calculated the reverse dependancies for this
* cell. Similar to the Progress flag but it's for when we are calculating
* in the reverse direction.
* @see updateDependancies()
*
* DisplayDirty - TODO - is this unused now??
* If this flag is set, then it is known that this cell has to be updated
* on the display. This means that somewhere in the calling stack there is a
* function which will call @ref Sheet::updateCell once it retains
* the control. If a function changes the contents/tqlayout of this cell and this
* flag is not set, then the function must set it at once. After the changes
* are done the function must call <tt>m_pSheet->updateCell(...).
* The flag is cleared by the function format()->sheet()->updateCell.
*
* Merged
* Tells whether the cell is merged with other cells. Cells may
* occupy other cells space on demand. You may force a cell to
* do so by setting this flag. Merging the cell with 0 in both
* directions, will disable this flag!
*
* CellTooShortX
* When it's True displays ** and/or the red triangle and when the
* mouse is over it, the tooltip displays the full value
* it's true when text size is bigger that cell size
* and when Align is center or left
*
* CellTooShortY
* When it's True when mouseover it, the tooltip displays the full value
* it's true when text size is bigger that cell height
*/
protected:
/**
* Applies the font to use to @p painter
*/
void applyZoomedFont( TQPainter &painter, int _col, int _row );
/**
* Called from makeFormat() to determine the space
* needed for the text.
*/
void textSize( TQPainter &_paint );
/**
* Called from @ref #paintCell to determine the text
* wich can be displaying.
*/
TQString textDisplaying( TQPainter &painter);
/**
* Cleans up formula stuff.
* Call this before you store a new formula or to delete the
* formula.
*/
void clearFormula();
/**
* Check the input from the user, and determine the contents of the cell accordingly
* (in particular the data type).
* This is to be called only when m_content == Text.
*
* Input: m_strText
* Output: m_dataType
*/
void checkTextInput();
/**
* Automatically chooses between a number format and
* a scientific format (if the number is too big)
*/
void checkNumberFormat();
/**
* Load the text paragraphs from an OASIS XML cell description.
* @param parent The DOM element representing the cell.
*/
void loadOasisCellText( const TQDomElement& parent );
void loadOasisObjects( const TQDomElement& e, KoOasisLoadingContext& oasisContext );
void loadOasisValidation( const TQString& validationName );
void loadOasisValidationCondition( TQString &valExpression );
void saveOasisAnnotation( KoXmlWriter &xmlwriter );
void loadOasisConditional( TQDomElement * style );
private:
class Extra;
class Private;
Private *d;
// static const char* s_dataTypeToString[];
/* helper functions to the paintCell(...) function */
/* void paintCellHighlight(TQPainter& painter,
const KoRect& cellRect,
const TQPoint& cellRef,
const int highlightBorder,
const TQPen& rightPen,
const TQPen& bottomPen,
const TQPen& leftPen,
const TQPen& topPen
);*/
void paintCellBorders( TQPainter& painter, const KoRect &rect,
const KoRect &cellRect,
const TQPoint &cellRef,
bool paintBorderRight, bool paintBorderBottom,
bool paintBorderLeft, bool paintBorderTop,
TQPen & rightPen, TQPen & bottomPen,
TQPen & leftPen, TQPen & topPen );
void paintPageBorders( TQPainter& painter, const KoRect &cellRect,
const TQPoint &cellRef,
bool paintBorderRight, bool paintBorderBottom );
void paintText( TQPainter& painter, const KoRect &cellRect,
const TQPoint &cellRef );
void paintMoreTextIndicator( TQPainter& painter, const KoRect &cellRect,
TQColor &backgroundColor );
void paintCommentIndicator( TQPainter& painter, const KoRect &cellRect,
const TQPoint &cellRef, TQColor &backgroundColor );
void paintFormulaIndicator( TQPainter& painter, const KoRect &cellRect,
TQColor &backgroundColor );
void paintDefaultBorders( TQPainter& painter, const KoRect &rect,
const KoRect &cellRect, const TQPoint &cellRef,
bool paintBorderRight, bool paintBorderBottom,
bool paintBorderLeft, bool paintBorderTop,
TQPen const & rightPen, TQPen const & bottomPen,
TQPen const & leftPen, TQPen const & topPen );
void paintBackground( TQPainter& painter, const KoRect &cellRect,
const TQPoint &cellRef, bool selected,
TQColor &backgroundColor );
void paintObscuredCells( const KoRect& rect, TQPainter& painter,
View* view, const KoRect &cellRect,
const TQPoint &cellRef,
bool paintBorderRight, bool paintBorderBottom,
bool paintBorderLeft, bool paintBorderTop,
TQPen & rightPen, TQPen & bottomPen,
TQPen & leftPen, TQPen & topPen,
TQValueList<TQPoint> &mergedCellsPainted );
void paintCellDiagonalLines( TQPainter& painter, const KoRect &cellRect,
const TQPoint &cellRef );
/** handle the fact that a cell has been updated - calls cellUpdated()
in the parent Sheet object */
void valueChanged ();
/* helper functions to the makeLayout(...) function */
/* (more to come) */
void setOutputText();
/* helper functions to the load/save routines */
bool loadCellData(const TQDomElement &text, Paste::Operation op);
bool saveCellResult( TQDomDocument& doc, TQDomElement& result,
TQString str );
void update();
int effAlignX();
/**
* When you insert a cell at bottom or right
* and the size is not the same so text offset
* will not good => recalc offset
*/
void offsetAlign( int _col, int _row );
void checkForNamedAreas( TQString & formula ) const;
/**
* replacements:
* 1. "==" -> "="
* 2. "Sheet1!A1" -> "[Sheet1.A1]"
* "A1" -> "[.A1]"
* 3. "," -> "."
*/
TQString convertFormulaToOasisFormat( const TQString & formula ) const;
void loadOasisValidationValue( const TQStringList &listVal );
};
} // namespace KSpread
#endif // KSPREAD_CELL
|