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
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
|
/****************************************************************************
**
** Implementation of QHeader widget class (table header)
**
** Created : 961105
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the widgets module of the Qt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free Qt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.QPL
** included in the packaging of this file. Licensees holding valid Qt
** Commercial licenses may use this file in accordance with the Qt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/
#include "qheader.h"
#ifndef QT_NO_HEADER
#include "qpainter.h"
#include "qdrawutil.h"
#include "qpixmap.h"
#include "qbitarray.h"
#include "qptrvector.h"
#include "qapplication.h"
#include "qstyle.h"
class QHeaderData
{
public:
QHeaderData(int n)
{
count = n;
labels.setAutoDelete( TRUE );
iconsets.setAutoDelete( TRUE );
sizes.resize(n);
positions.resize(n);
labels.resize(n);
if ( int( iconsets.size() ) < n )
iconsets.resize( n );
i2s.resize(n);
s2i.resize(n);
clicks.resize(n);
resize.resize(n);
int p =0;
for ( int i = 0; i < n; i ++ ) {
sizes[i] = 88;
i2s[i] = i;
s2i[i] = i;
positions[i] = p;
p += sizes[i];
}
clicks_default = TRUE;
resize_default = TRUE;
clicks.fill( clicks_default );
resize.fill( resize_default );
move = TRUE;
sortSection = -1;
sortDirection = TRUE;
positionsDirty = TRUE;
lastPos = 0;
fullSize = -2;
pos_dirty = FALSE;
is_a_table_header = FALSE;
focusIdx = 0;
}
QMemArray<QCOORD> sizes;
int height; // we abuse the heights as widths for vertical layout
bool heightDirty;
QMemArray<QCOORD> positions; // sorted by index
QPtrVector<QString> labels;
QPtrVector<QIconSet> iconsets;
QMemArray<int> i2s;
QMemArray<int> s2i;
QBitArray clicks;
QBitArray resize;
uint move : 1;
uint clicks_default : 1; // default value for new clicks bits
uint resize_default : 1; // default value for new resize bits
uint pos_dirty : 1;
uint is_a_table_header : 1;
bool sortDirection;
bool positionsDirty;
int sortSection;
int count;
int lastPos;
int fullSize;
int focusIdx;
int pressDelta;
int sectionAt( int pos ) {
// positions is sorted by index, not by section
if ( !count )
return -1;
int l = 0;
int r = count - 1;
int i = ( (l+r+1) / 2 );
while ( r - l ) {
if ( positions[i] > pos )
r = i -1;
else
l = i;
i = ( (l+r+1) / 2 );
}
if ( positions[i] <= pos && pos <= positions[i] + sizes[ i2s[i] ] )
return i2s[i];
return -1;
}
};
/*!
\class QHeader qheader.h
\brief The QHeader class provides a header row or column, e.g. for
tables and listviews.
\ingroup advanced
This class provides a header, e.g. a vertical header to display
row labels, or a horizontal header to display column labels. It is
used by QTable and QListView for example.
A header is composed of one or more \e sections, each of which can
display a text label and an \link QIconSet iconset\endlink. A sort
indicator (an arrow) can also be displayed using
setSortIndicator().
Sections are added with addLabel() and removed with removeLabel().
The label and iconset are set in addLabel() and can be changed
later with setLabel(). Use count() to retrieve the number of
sections in the header.
The orientation of the header is set with setOrientation(). If
setStretchEnabled() is TRUE, the sections will expand to take up
the full width (height for vertical headers) of the header. The
user can resize the sections manually if setResizeEnabled() is
TRUE. Call adjustHeaderSize() to have the sections resize to
occupy the full width (or height).
A section can be moved with moveSection(). If setMovingEnabled()
is TRUE (the default)the user may drag a section from one position
to another. If a section is moved, the index positions at which
sections were added (with addLabel()), may not be the same after the
move. You don't have to worry about this in practice because the
QHeader API works in terms of section numbers, so it doesn't matter
where a particular section has been moved to.
If you want the current index position of a section call
mapToIndex() giving it the section number. (This is the number
returned by the addLabel() call which created the section.) If you
want to get the section number of a section at a particular index
position call mapToSection() giving it the index number.
Here's an example to clarify mapToSection() and mapToIndex():
\table
\header \i41 Index positions
\row \i 0 \i 1 \i 2 \i 3
\header \i41 Original section ordering
\row \i Sect 0 \i Sect 1 \i Sect 2 \i Sect 3
\header \i41 Ordering after the user moves a section
\row \i Sect 0 \i Sect 2 \i Sect 3 \i Sect 1
\endtable
\table
\header \i \e k \i mapToSection(\e k) \i mapToIndex(\e k)
\row \i 0 \i 0 \i 0
\row \i 1 \i 2 \i 3
\row \i 2 \i 3 \i 1
\row \i 3 \i 1 \i 2
\endtable
In the example above, if we wanted to find out which section is at
index position 3 we'd call mapToSection(3) and get a section
number of 1 since section 1 was moved. Similarly, if we wanted to
know which index position section 2 occupied we'd call
mapToIndex(2) and get an index of 1.
QHeader provides the clicked(), pressed() and released() signals.
If the user changes the size of a section, the sizeChange() signal
is emitted. If you want to have a sizeChange() signal emitted
continuously whilst the user is resizing (rather than just after
the resizing is finished), use setTracking(). If the user moves a
section the indexChange() signal is emitted.
<img src=qheader-m.png> <img src=qheader-w.png>
\sa QListView QTable
*/
/*!
Constructs a horizontal header called \a name, with parent \a
parent.
*/
QHeader::QHeader( QWidget *parent, const char *name )
: QWidget( parent, name, WStaticContents )
{
orient = Horizontal;
init( 0 );
}
/*!
Constructs a horizontal header called \a name, with \a n sections
and parent \a parent.
*/
QHeader::QHeader( int n, QWidget *parent, const char *name )
: QWidget( parent, name, WStaticContents )
{
orient = Horizontal;
init( n );
}
/*!
Destroys the header and all its sections.
*/
QHeader::~QHeader()
{
delete d;
d = 0;
}
/*! \reimp
*/
void QHeader::showEvent( QShowEvent *e )
{
calculatePositions();
QWidget::showEvent( e );
}
/*!
\fn void QHeader::sizeChange( int section, int oldSize, int newSize )
This signal is emitted when the user has changed the size of a \a
section from \a oldSize to \a newSize. This signal is typically
connected to a slot that repaints the table or list that contains
the header.
*/
/*!
\fn void QHeader::clicked( int section )
If isClickEnabled() is TRUE, this signal is emitted when the user
clicks section \a section.
\sa pressed(), released()
*/
/*!
\fn void QHeader::pressed( int section )
This signal is emitted when the user presses section \a section
down.
\sa released()
*/
/*!
\fn void QHeader::released( int section )
This signal is emitted when section \a section is released.
\sa pressed()
*/
/*!
\fn void QHeader::indexChange( int section, int fromIndex, int toIndex )
This signal is emitted when the user moves section \a section from
index position \a fromIndex, to index position \a toIndex.
*/
/*!
\fn void QHeader::moved( int fromIndex, int toIndex )
\obsolete
Use indexChange() instead.
This signal is emitted when the user has moved the section which
is displayed at the index \a fromIndex to the index \a toIndex.
*/
/*!
\fn void QHeader::sectionClicked( int index )
\obsolete
Use clicked() instead.
This signal is emitted when a part of the header is clicked. \a
index is the index at which the section is displayed.
In a list view this signal would typically be connected to a slot
that sorts the specified column (or row).
*/
/*! \fn int QHeader::cellSize( int ) const
\obsolete
Use sectionSize() instead.
Returns the size in pixels of the section that is displayed at
the index \a i.
*/
/*!
\fn void QHeader::sectionHandleDoubleClicked( int section )
This signal is emitted when the user doubleclicks on the edge
(handle) of section \a section.
*/
/*!
\obsolete
Use sectionPos() instead.
Returns the position in pixels of the section that is displayed at the
index \a i. The position is measured from the start of the header.
*/
int QHeader::cellPos( int i ) const
{
if ( i == count() && i > 0 )
return d->positions[i-1] + d->sizes[d->i2s[i-1]]; // compatibility
return sectionPos( mapToSection(i) );
}
/*!
\property QHeader::count
\brief the number of sections in the header
*/
int QHeader::count() const
{
return d->count;
}
/*!
\property QHeader::tracking
\brief whether the sizeChange() signal is emitted continuously
If tracking is on, the sizeChange() signal is emitted continuously
while the mouse is moved (i.e. when the header is resized),
otherwise it is only emitted when the mouse button is released at
the end of resizing.
Tracking defaults to FALSE.
*/
/*
Initializes with \a n columns.
*/
void QHeader::init( int n )
{
state = Idle;
cachedPos = 0; // unused
d = new QHeaderData( n );
d->height = 0;
d->heightDirty = TRUE;
offs = 0;
if( reverse() )
offs = d->lastPos - width();
oldHandleIdx = oldHIdxSize = handleIdx = 0;
setMouseTracking( TRUE );
trackingIsOn = FALSE;
setBackgroundMode( PaletteButton );
setSizePolicy( QSizePolicy( QSizePolicy::Preferred, QSizePolicy::Fixed ) );
}
/*!
\property QHeader::orientation
\brief the header's orientation
The orientation is either \c Vertical or \c Horizontal (the
default).
Call setOrientation() before adding labels if you don't provide a
size parameter otherwise the sizes will be incorrect.
*/
void QHeader::setOrientation( Orientation orientation )
{
if ( orient == orientation )
return;
orient = orientation;
if ( orient == Horizontal )
setSizePolicy( QSizePolicy( QSizePolicy::Preferred, QSizePolicy::Fixed ) );
else
setSizePolicy( QSizePolicy( QSizePolicy::Fixed, QSizePolicy::Preferred ) );
update();
updateGeometry();
}
/*
Paints a rectangle starting at \a p, with length \s.
*/
void QHeader::paintRect( int p, int s )
{
QPainter paint( this );
paint.setPen( QPen( black, 1, DotLine ) );
if ( reverse() )
paint.drawRect( p - s, 3, s, height() - 5 );
else if ( orient == Horizontal )
paint.drawRect( p, 3, s, height() - 5 );
else
paint.drawRect( 3, p, height() - 5, s );
}
/*
Marks the division line at \a idx.
*/
void QHeader::markLine( int idx )
{
QPainter paint( this );
paint.setPen( QPen( black, 1, DotLine ) );
int MARKSIZE = style().pixelMetric( QStyle::PM_HeaderMarkSize );
int p = pPos( idx );
int x = p - MARKSIZE/2;
int y = 2;
int x2 = p + MARKSIZE/2;
int y2 = height() - 3;
if ( orient == Vertical ) {
int t = x; x = y; y = t;
t = x2; x2 = y2; y2 = t;
}
paint.drawLine( x, y, x2, y );
paint.drawLine( x, y+1, x2, y+1 );
paint.drawLine( x, y2, x2, y2 );
paint.drawLine( x, y2-1, x2, y2-1 );
paint.drawLine( x, y, x, y2 );
paint.drawLine( x+1, y, x+1, y2 );
paint.drawLine( x2, y, x2, y2 );
paint.drawLine( x2-1, y, x2-1, y2 );
}
/*
Removes the mark at the division line at \a idx.
*/
void QHeader::unMarkLine( int idx )
{
if ( idx < 0 )
return;
int MARKSIZE = style().pixelMetric( QStyle::PM_HeaderMarkSize );
int p = pPos( idx );
int x = p - MARKSIZE/2;
int y = 2;
int x2 = p + MARKSIZE/2;
int y2 = height() - 3;
if ( orient == Vertical ) {
int t = x; x = y; y = t;
t = x2; x2 = y2; y2 = t;
}
repaint( x, y, x2-x+1, y2-y+1 );
}
/*! \fn int QHeader::cellAt( int ) const
\obsolete
Use sectionAt() instead.
Returns the index at which the section is displayed, which contains
\a pos in widget coordinates, or -1 if \a pos is outside the header
sections.
*/
/*
Tries to find a line that is not a neighbor of \c handleIdx.
*/
int QHeader::findLine( int c )
{
int i = 0;
if ( c > d->lastPos || (reverse() && c < 0 )) {
return d->count;
} else {
int section = sectionAt( c );
if ( section < 0 )
return handleIdx;
i = d->s2i[section];
}
int MARKSIZE = style().pixelMetric( QStyle::PM_HeaderMarkSize );
if ( i == handleIdx )
return i;
if ( i == handleIdx - 1 && pPos( handleIdx ) - c > MARKSIZE/2 )
return i;
if ( i == handleIdx + 1 && c - pPos( i ) > MARKSIZE/2 )
return i + 1;
if ( c - pPos( i ) > pSize( i ) / 2 )
return i + 1;
else
return i;
}
/*!
Returns the handle at position \a p, or -1 if there is no handle at \a p.
*/
int QHeader::handleAt(int p)
{
int section = d->sectionAt( p );
if ( section >= 0 ) {
int GripMargin = (bool)d->resize[ section ] ?
style().pixelMetric( QStyle::PM_HeaderGripMargin ) : 0;
int index = d->s2i[section];
if ( (index > 0 && p < d->positions[index] + GripMargin) ||
(p > d->positions[index] + d->sizes[section] - GripMargin) ) {
if ( index > 0 && p < d->positions[index] + GripMargin )
section = d->i2s[--index];
// dont show icon if streaching is enabled it is at the end of the last section
if ( d->resize.testBit(section) && (d->fullSize == -2 || index != count() - 1)) {
return section;
}
}
}
return -1;
}
/*!
\obsolete
Use moveSection() instead.
Moves the section that is currently displayed at index \a fromIdx
to index \a toIdx.
*/
void QHeader::moveCell( int fromIdx, int toIdx )
{
moveSection( mapToSection(fromIdx), toIdx );
}
/*!
Move and signal and repaint.
*/
void QHeader::handleColumnMove( int fromIdx, int toIdx )
{
int s = d->i2s[fromIdx];
if ( fromIdx < toIdx )
toIdx++; //Convert to
QRect r = sRect( fromIdx );
r |= sRect( toIdx );
moveSection( s, toIdx );
update( r );
emit moved( fromIdx, toIdx );
emit indexChange( s, fromIdx, toIdx );
}
/*!
\reimp
*/
void QHeader::keyPressEvent( QKeyEvent *e )
{
int i = d->focusIdx;
if ( e->key() == Key_Space ) {
//don't do it if we're doing something with the mouse
if ( state == Idle && d->clicks[ d->i2s[d->focusIdx] ] ) {
handleIdx = i;
state = Pressed;
repaint( sRect( handleIdx ) );
emit pressed( d->i2s[i] );
}
} else if ( orientation() == Horizontal &&
(e->key() == Key_Right || e->key() == Key_Left)
|| orientation() == Vertical &&
(e->key() == Key_Up || e->key() == Key_Down) ) {
int dir = e->key() == Key_Right || e->key() == Key_Down ? 1 : -1;
int s = d->i2s[i];
if ( e->state() & ControlButton && d->resize[s] ) {
//resize
int step = e->state() & ShiftButton ? dir : 10*dir;
int c = d->positions[i] + d->sizes[s] + step;
handleColumnResize( i, c, TRUE );
} else if ( e->state() & (AltButton|MetaButton) && d->move ) {
//move section
int i2 = ( i + count() + dir ) % count();
d->focusIdx = i2;
handleColumnMove( i, i2 );
} else {
//focus on different section
QRect r = sRect( d->focusIdx );
d->focusIdx = (d->focusIdx + count() + dir) % count();
r |= sRect( d->focusIdx );
update( r );
}
} else {
e->ignore();
}
}
/*!
\reimp
*/
void QHeader::keyReleaseEvent( QKeyEvent *e )
{
switch ( e->key() ) {
case Key_Space:
//double check that this wasn't started with the mouse
if ( state == Pressed && handleIdx == d->focusIdx ) {
repaint(sRect( handleIdx ), FALSE);
int section = d->i2s[d->focusIdx];
emit released( section );
emit sectionClicked( handleIdx );
emit clicked( section );
state = Idle;
handleIdx = -1;
}
break;
default:
e->ignore();
}
}
/*!
\reimp
*/
void QHeader::mousePressEvent( QMouseEvent *e )
{
if ( e->button() != LeftButton || state != Idle )
return;
oldHIdxSize = handleIdx;
handleIdx = 0;
int c = orient == Horizontal ? e->pos().x() : e->pos().y();
c += offset();
if ( reverse() )
c = d->lastPos - c;
int section = d->sectionAt( c );
if ( section < 0 )
return;
int GripMargin = (bool)d->resize[ section ] ?
style().pixelMetric( QStyle::PM_HeaderGripMargin ) : 0;
int index = d->s2i[section];
if ( (index > 0 && c < d->positions[index] + GripMargin) ||
(c > d->positions[index] + d->sizes[section] - GripMargin) ) {
if ( c < d->positions[index] + GripMargin )
handleIdx = index-1;
else
handleIdx = index;
if ( d->lastPos <= ( orient == Horizontal ? width() :
height() ) && d->fullSize != -2 && handleIdx == count() - 1 ) {
handleIdx = -1;
return;
}
oldHIdxSize = d->sizes[ d->i2s[handleIdx] ];
state = d->resize[ d->i2s[handleIdx] ] ? Sliding : Blocked;
} else if ( index >= 0 ) {
oldHandleIdx = handleIdx = index;
moveToIdx = -1;
state = d->clicks[ d->i2s[handleIdx] ] ? Pressed : Blocked;
clickPos = c;
repaint( sRect( handleIdx ) );
if(oldHandleIdx != handleIdx)
repaint( sRect( oldHandleIdx ) );
emit pressed( section );
}
d->pressDelta = c - ( d->positions[handleIdx] + d->sizes[ d->i2s[handleIdx] ] );
}
/*!
\reimp
*/
void QHeader::mouseReleaseEvent( QMouseEvent *e )
{
if ( e->button() != LeftButton )
return;
int oldOldHandleIdx = oldHandleIdx;
State oldState = state;
state = Idle;
switch ( oldState ) {
case Pressed: {
int section = d->i2s[handleIdx];
emit released( section );
if ( sRect( handleIdx ).contains( e->pos() ) ) {
oldHandleIdx = handleIdx;
emit sectionClicked( handleIdx );
emit clicked( section );
} else {
handleIdx = oldHandleIdx;
}
repaint(sRect( handleIdx ), FALSE);
if ( oldOldHandleIdx != handleIdx )
repaint(sRect(oldOldHandleIdx ), FALSE );
} break;
case Sliding: {
int c = orient == Horizontal ? e->pos().x() : e->pos().y();
c += offset();
if ( reverse() )
c = d->lastPos - c;
handleColumnResize( handleIdx, c - d->pressDelta, TRUE );
} break;
case Moving: {
#ifndef QT_NO_CURSOR
unsetCursor();
#endif
int section = d->i2s[handleIdx];
if ( handleIdx != moveToIdx && moveToIdx != -1 ) {
moveSection( section, moveToIdx );
handleIdx = oldHandleIdx;
emit moved( handleIdx, moveToIdx );
emit indexChange( section, handleIdx, moveToIdx );
emit released( section );
repaint(); // a bit overkill, but removes the handle as well
} else {
if ( sRect( handleIdx).contains( e->pos() ) ) {
oldHandleIdx = handleIdx;
emit released( section );
emit sectionClicked( handleIdx );
emit clicked( section );
} else {
handleIdx = oldHandleIdx;
}
repaint(sRect( handleIdx ), FALSE );
if(oldOldHandleIdx != handleIdx)
repaint(sRect(oldOldHandleIdx ), FALSE );
}
break;
}
case Blocked:
//nothing
break;
default:
// empty, probably. Idle, at any rate.
break;
}
}
/*!
\reimp
*/
void QHeader::mouseMoveEvent( QMouseEvent *e )
{
int c = orient == Horizontal ? e->pos().x() : e->pos().y();
c += offset();
int pos = c;
if( reverse() )
c = d->lastPos - c;
switch( state ) {
case Idle:
#ifndef QT_NO_CURSOR
if ( handleAt(c) < 0 )
unsetCursor();
else if ( orient == Horizontal )
setCursor( splitHCursor );
else
setCursor( splitVCursor );
#endif
break;
case Blocked:
break;
case Pressed:
if ( QABS( c - clickPos ) > 4 && d->move ) {
state = Moving;
moveToIdx = -1;
#ifndef QT_NO_CURSOR
if ( orient == Horizontal )
setCursor( sizeHorCursor );
else
setCursor( sizeVerCursor );
#endif
}
break;
case Sliding:
handleColumnResize( handleIdx, c, FALSE, FALSE );
break;
case Moving: {
int newPos = findLine( pos );
if ( newPos != moveToIdx ) {
if ( moveToIdx == handleIdx || moveToIdx == handleIdx + 1 )
repaint( sRect(handleIdx) );
else
unMarkLine( moveToIdx );
moveToIdx = newPos;
if ( moveToIdx == handleIdx || moveToIdx == handleIdx + 1 )
paintRect( pPos( handleIdx ), pSize( handleIdx ) );
else
markLine( moveToIdx );
}
break;
}
default:
tqWarning( "QHeader::mouseMoveEvent: (%s) unknown state", name() );
break;
}
}
/*! \reimp */
void QHeader::mouseDoubleClickEvent( QMouseEvent *e )
{
int p = orient == Horizontal ? e->pos().x() : e->pos().y();
p += offset();
if( reverse() )
p = d->lastPos - p;
int header = handleAt(p);
if (header >= 0)
emit sectionHandleDoubleClicked( header );
}
/*
Handles resizing of sections. This means it redraws the relevant parts
of the header.
*/
void QHeader::handleColumnResize( int index, int c, bool final, bool recalcAll )
{
int section = d->i2s[index];
int GripMargin = (bool)d->resize[ section ] ?
style().pixelMetric( QStyle::PM_HeaderGripMargin ) : 0;
int lim = d->positions[index] + 2*GripMargin;
if ( c == lim )
return;
if ( c < lim )
c = lim;
int oldSize = d->sizes[section];
int newSize = c - d->positions[index];
d->sizes[section] = newSize;
calculatePositions( !recalcAll, !recalcAll ? section : 0 );
int pos = d->positions[index]-offset();
if( reverse() ) // repaint the whole thing. Could be optimized (lars)
repaint( 0, 0, width(), height() );
else if ( orient == Horizontal )
repaint( pos, 0, width() - pos, height() );
else
repaint( 0, pos, width(), height() - pos );
int os = 0, ns = 0;
if ( tracking() && oldSize != newSize ) {
os = oldSize;
ns = newSize;
emit sizeChange( section, oldSize, newSize );
} else if ( !tracking() && final && oldHIdxSize != newSize ) {
os = oldHIdxSize;
ns = newSize;
emit sizeChange( section, oldHIdxSize, newSize );
}
if ( os != ns ) {
if ( d->fullSize == -1 ) {
d->fullSize = count() - 1;
adjustHeaderSize();
d->fullSize = -1;
} else if ( d->fullSize >= 0 ) {
int old = d->fullSize;
d->fullSize = count() - 1;
adjustHeaderSize();
d->fullSize = old;
}
}
}
/*!
Returns the rectangle covered by the section at index \a index.
*/
QRect QHeader::sRect( int index )
{
int section = mapToSection( index );
if ( count() > 0 && index >= count() ) {
int s = d->positions[count() - 1] - offset() +
d->sizes[mapToSection(count() - 1)];
if ( orient == Horizontal )
return QRect( s, 0, width() - s + 10, height() );
else
return QRect( 0, s, width(), height() - s + 10 );
}
if ( section < 0 )
return rect(); // ### eeeeevil
if ( reverse() )
return QRect( d->lastPos - d->positions[index] - d->sizes[section] -offset(),
0, d->sizes[section], height() );
else if ( orient == Horizontal )
return QRect( d->positions[index]-offset(), 0, d->sizes[section], height() );
else
return QRect( 0, d->positions[index]-offset(), width(), d->sizes[section] );
}
/*!
Returns the rectangle covered by section \a section.
*/
QRect QHeader::sectionRect( int section ) const
{
int index = mapToIndex( section );
if ( section < 0 )
return rect(); // ### eeeeevil
if ( reverse() )
return QRect( d->lastPos - d->positions[index] - d->sizes[section] -offset(),
0, d->sizes[section], height() );
else if ( orient == Horizontal )
return QRect( d->positions[index]-offset(), 0, d->sizes[section], height() );
else
return QRect( 0, d->positions[index]-offset(), width(), d->sizes[section] );
}
/*!
\overload
Sets the icon for section \a section to \a iconset and the text to
\a s. The section's width is set to \a size if \a size \>= 0;
otherwise it is left unchanged.
If the section does not exist, nothing happens.
*/
void QHeader::setLabel( int section, const QIconSet& iconset,
const QString &s, int size )
{
if ( section < 0 || section >= count() )
return;
d->iconsets.insert( section, new QIconSet( iconset ) );
setLabel( section, s, size );
}
/*!
Sets the text of section \a section to \a s. The section's width
is set to \a size if \a size \>= 0; otherwise it is left
unchanged. Any icon set that has been set for this section remains
unchanged.
If the section does not exist, nothing happens.
*/
void QHeader::setLabel( int section, const QString &s, int size )
{
if ( section < 0 || section >= count() )
return;
if ( s.isNull() )
d->labels.remove( section );
else
d->labels.insert( section, new QString( s ) );
setSectionSizeAndHeight( section, size );
if ( isUpdatesEnabled() ) {
updateGeometry();
calculatePositions();
update();
}
}
bool qt_qheader_label_return_null_strings = FALSE;
/*!
Returns the text for section \a section. If the section does not
exist, a QString::null is returned.
*/
QString QHeader::label( int section ) const
{
if ( section < 0 || section >= count() )
return QString::null;
if ( d->labels[ section ] )
return *( d->labels[ section ] );
else if ( qt_qheader_label_return_null_strings )
return QString::null;
else
return QString::number( section + 1 );
}
/*!
Returns the icon set for section \a section. If the section does
not exist, 0 is returned.
*/
QIconSet *QHeader::iconSet( int section ) const
{
if ( section < 0 || section >= count() )
return 0;
return d->iconsets[ section ];
}
/*!
\overload
Adds a new section with iconset \a iconset and label text \a s.
Returns the index position where the section was added (at the
right for horizontal headers, at the bottom for vertical headers).
The section's width is set to \a size, unless size is negative in
which case the size is calculated taking account of the size of
the text.
*/
int QHeader::addLabel( const QIconSet& iconset, const QString &s, int size )
{
int n = count() + 1;
d->iconsets.resize( n + 1 );
d->iconsets.insert( n - 1, new QIconSet( iconset ) );
return addLabel( s, size );
}
/*!
Removes section \a section. If the section does not exist, nothing
happens.
*/
void QHeader::removeLabel( int section )
{
if ( section < 0 || section > count() - 1 )
return;
int index = d->s2i[section];
int n = --d->count;
int i;
for ( i = section; i < n; ++i ) {
d->sizes[i] = d->sizes[i+1];
d->labels.insert( i, d->labels.take( i + 1 ) );
d->iconsets.insert( i, d->iconsets.take( i + 1 ) );
}
d->sizes.resize( n );
d->positions.resize( n );
d->labels.resize( n );
d->iconsets.resize( n );
for ( i = section; i < n; ++i )
d->s2i[i] = d->s2i[i+1];
d->s2i.resize( n );
if ( isUpdatesEnabled() ) {
for ( i = 0; i < n; ++i )
if ( d->s2i[i] > index )
--d->s2i[i];
}
for ( i = index; i < n; ++i )
d->i2s[i] = d->i2s[i+1];
d->i2s.resize( n );
if ( isUpdatesEnabled() ) {
for ( i = 0; i < n; ++i )
if ( d->i2s[i] > section )
--d->i2s[i];
}
if ( isUpdatesEnabled() ) {
updateGeometry();
calculatePositions();
update();
}
}
QSize QHeader::sectionSizeHint( int section, const QFontMetrics& fm ) const
{
int iw = 0;
int ih = 0;
if ( d->iconsets[section] != 0 ) {
QSize isize = d->iconsets[section]->pixmap( QIconSet::Small,
QIconSet::Normal ).size();
iw = isize.width() + 2;
ih = isize.height();
}
QRect bound;
QString *label = d->labels[section];
if ( label ) {
int lines = label->contains( '\n' ) + 1;
int w = 0;
if (lines > 1) {
bound.setHeight(fm.height() + fm.lineSpacing() * (lines - 1));
QStringList list = QStringList::split('\n', *label);
for (int i=0; i <(int)list.count(); ++i) {
int tmpw = fm.width(*(list.at(i)));
w = QMAX(w, tmpw);
}
} else {
bound.setHeight(fm.height());
w = fm.width(*label);
}
bound.setWidth( w );
}
int arrowWidth = 0;
if ( d->sortSection == section )
arrowWidth = ( ( orient == Qt::Horizontal ? height() : width() ) / 2 ) + 8;
int height = QMAX( bound.height() + 2, ih ) + 4;
int width = bound.width() + style().pixelMetric( QStyle::PM_HeaderMargin ) * 4
+ iw + arrowWidth;
return QSize( width, height );
}
/*
Sets d->sizes[\a section] to a bounding rect based on its size
hint and font metrics, but constrained by \a size. It also updates
d->height.
*/
void QHeader::setSectionSizeAndHeight( int section, int size )
{
QSize sz = sectionSizeHint( section, fontMetrics() );
if ( size < 0 ) {
if ( d->sizes[section] < 0 )
d->sizes[section] = ( orient == Horizontal ) ? sz.width()
: sz.height();
} else {
d->sizes[section] = size;
}
int newHeight = ( orient == Horizontal ) ? sz.height() : sz.width();
if ( newHeight > d->height ) {
d->height = newHeight;
} else if ( newHeight < d->height ) {
/*
We could be smarter, but we aren't. This makes a difference
only for users with many columns and '\n's in their headers
at the same time.
*/
d->heightDirty = TRUE;
}
}
/*!
Adds a new section with label text \a s. Returns the index
position where the section was added (at the right for horizontal
headers, at the bottom for vertical headers). The section's width
is set to \a size. If \a size \< 0, an appropriate size for the
text \a s is chosen.
*/
int QHeader::addLabel( const QString &s, int size )
{
int n = ++d->count;
if ( (int)d->iconsets.size() < n )
d->iconsets.resize( n );
if ( (int)d->sizes.size() < n ) {
d->labels.resize( n );
d->sizes.resize( n );
d->positions.resize( n );
d->i2s.resize( n );
d->s2i.resize( n );
d->clicks.resize( n );
d->resize.resize( n );
}
int section = d->count - 1;
if ( !d->is_a_table_header || !s.isNull() )
d->labels.insert( section, new QString( s ) );
if ( size >= 0 && s.isNull() && d->is_a_table_header ) {
d->sizes[section] = size;
} else {
d->sizes[section] = -1;
setSectionSizeAndHeight( section, size );
}
int index = section;
d->positions[index] = d->lastPos;
d->s2i[section] = index;
d->i2s[index] = section;
d->clicks.setBit( section, d->clicks_default );
d->resize.setBit( section, d->resize_default );
if ( isUpdatesEnabled() ) {
updateGeometry();
calculatePositions();
update();
}
return index;
}
void QHeader::resizeArrays( int size )
{
d->iconsets.resize( size );
d->labels.resize( size );
d->sizes.resize( size );
d->positions.resize( size );
d->i2s.resize( size );
d->s2i.resize( size );
d->clicks.resize( size );
d->resize.resize( size );
}
void QHeader::setIsATableHeader( bool b )
{
d->is_a_table_header = b;
}
/*! \reimp */
QSize QHeader::sizeHint() const
{
int width;
int height;
constPolish();
QFontMetrics fm = fontMetrics();
if ( d->heightDirty ) {
d->height = fm.lineSpacing() + 6;
for ( int i = 0; i < count(); i++ ) {
int h = orient == Horizontal ?
sectionSizeHint( i, fm ).height() : sectionSizeHint( i, fm ).width();
d->height = QMAX( d->height, h );
}
d->heightDirty = FALSE;
}
if ( orient == Horizontal ) {
height = fm.lineSpacing() + 6;
width = 0;
height = QMAX( height, d->height );
for ( int i = 0; i < count(); i++ )
width += d->sizes[i];
} else {
width = fm.width( ' ' );
height = 0;
width = QMAX( width, d->height );
for ( int i = 0; i < count(); i++ )
height += d->sizes[i];
}
return (style().sizeFromContents(QStyle::CT_Header, this,
QSize(width, height)).expandedTo(QApplication::globalStrut()));
}
/*!
\property QHeader::offset
\brief the header's left-most (or top-most) visible pixel
Setting this property will scroll the header so that \e offset
becomes the left-most (or top-most for vertical headers) visible
pixel.
*/
int QHeader::offset() const
{
if ( reverse() )
return d->lastPos - width() - offs;
return offs;
}
void QHeader::setOffset( int x )
{
int oldOff = offset();
offs = x;
if( d->lastPos < ( orient == Horizontal ? width() : height() ) )
offs = 0;
else if ( reverse() )
offs = d->lastPos - width() - x;
if ( orient == Horizontal )
scroll( oldOff-offset(), 0 );
else
scroll( 0, oldOff-offset());
}
/*
Returns the position of actual division line \a i in widget
coordinates. May return a position outside the widget.
Note that the last division line is numbered count(). (There is one
more line than the number of sections).
*/
int QHeader::pPos( int i ) const
{
int pos;
if ( i == count() )
pos = d->lastPos;
else
pos = d->positions[i];
if ( reverse() )
pos = d->lastPos - pos;
return pos - offset();
}
/*
Returns the size of the section at index position \a i.
*/
int QHeader::pSize( int i ) const
{
return d->sizes[ d->i2s[i] ];
}
/*!
\obsolete
Use mapToSection() instead.
Translates from actual index \a a (index at which the section is displayed) to
logical index of the section. Returns -1 if \a a is outside the legal range.
\sa mapToActual()
*/
int QHeader::mapToLogical( int a ) const
{
return mapToSection( a );
}
/*!
\obsolete
Use mapToIndex() instead.
Translates from logical index \a l to actual index (index at which the section \a l is displayed) .
Returns -1 if \a l is outside the legal range.
\sa mapToLogical()
*/
int QHeader::mapToActual( int l ) const
{
return mapToIndex( l );
}
/*!
\obsolete
Use resizeSection() instead.
Sets the size of the section \a section to \a s pixels.
\warning does not repaint or send out signals
*/
void QHeader::setCellSize( int section, int s )
{
if ( section < 0 || section >= count() )
return;
d->sizes[ section ] = s;
if ( isUpdatesEnabled() )
calculatePositions();
}
/*!
If \a enable is TRUE the user may resize section \a section;
otherwise the section may not be manually resized.
If \a section is negative (the default) then the \a enable value
is set for all existing sections and will be applied to any new
sections that are added.
Example:
\code
// Allow resizing of all current and future sections
header->setResizeEnabled(TRUE);
// Disable resizing of section 3, (the fourth section added)
header->setResizeEnabled(FALSE, 3);
\endcode
If the user resizes a section, a sizeChange() signal is emitted.
\sa setMovingEnabled() setClickEnabled() setTracking()
*/
void QHeader::setResizeEnabled( bool enable, int section )
{
if ( section < 0 ) {
d->resize.fill( enable );
// and future ones...
d->resize_default = enable;
} else if ( section < count() ) {
d->resize[ section ] = enable;
}
}
/*!
\property QHeader::moving
\brief whether the header sections can be moved
If this property is TRUE (the default) the user can move sections.
If the user moves a section the indexChange() signal is emitted.
\sa setClickEnabled(), setResizeEnabled()
*/
void QHeader::setMovingEnabled( bool enable )
{
d->move = enable;
}
/*!
If \a enable is TRUE, any clicks on section \a section will result
in clicked() signals being emitted; otherwise the section will
ignore clicks.
If \a section is -1 (the default) then the \a enable value is set
for all existing sections and will be applied to any new sections
that are added.
\sa setMovingEnabled(), setResizeEnabled()
*/
void QHeader::setClickEnabled( bool enable, int section )
{
if ( section < 0 ) {
d->clicks.fill( enable );
// and future ones...
d->clicks_default = enable;
} else if ( section < count() ) {
d->clicks[ section ] = enable;
}
}
/*!
Paints the section at position \a index, inside rectangle \a fr
(which uses widget coordinates) using painter \a p.
Calls paintSectionLabel().
*/
void QHeader::paintSection( QPainter *p, int index, const QRect& fr )
{
int section = mapToSection( index );
if ( section < 0 ) {
style().drawPrimitive( QStyle::PE_HeaderSection, p, fr,
colorGroup(), QStyle::Style_Raised |
(isEnabled() ? QStyle::Style_Enabled : 0) |
( orient == Horizontal ? QStyle::Style_Horizontal : 0 ),
QStyleOption( this ) );
return;
}
if ( sectionSize( section ) <= 0 )
return;
QStyle::SFlags flags = (orient == Horizontal ? QStyle::Style_Horizontal : QStyle::Style_Default);
//pass in some hint about the sort indicator if it is used
if(d->sortSection != section)
flags |= QStyle::Style_Off;
else if(!d->sortDirection)
flags |= QStyle::Style_Up;
if(isEnabled())
flags |= QStyle::Style_Enabled;
if(isClickEnabled(section)) {
if(section == d->sortSection)
flags |= QStyle::Style_Sunken; //currently selected
if((state == Pressed || state == Moving) && index == handleIdx)
flags |= QStyle::Style_Down; //currently pressed
}
if(!(flags & QStyle::Style_Down))
flags |= QStyle::Style_Raised;
p->setBrushOrigin( fr.topLeft() );
if ( d->clicks[section] ) {
style().drawPrimitive( QStyle::PE_HeaderSection, p, fr,
colorGroup(), flags,
QStyleOption( this ) );
} else {
p->save();
p->setClipRect( fr ); // hack to keep styles working
if ( orientation() == Horizontal ) {
style().drawPrimitive( QStyle::PE_HeaderSection, p,
QRect(fr.x() - 2, fr.y() - 2, fr.width() + 4, fr.height() + 4),
colorGroup(), flags,
QStyleOption( this ) );
p->setPen( colorGroup().color( QColorGroup::Mid ) );
p->drawLine( fr.x(), fr.y() + fr.height() - 1,
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->drawLine( fr.x() + fr.width() - 1, fr.y(),
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->setPen( colorGroup().color( QColorGroup::Light ) );
if ( index > 0 )
p->drawLine( fr.x(), fr.y(), fr.x(), fr.y() + fr.height() - 1 );
if ( index == count() - 1 ) {
p->drawLine( fr.x() + fr.width() - 1, fr.y(),
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->setPen( colorGroup().color( QColorGroup::Mid ) );
p->drawLine( fr.x() + fr.width() - 2, fr.y(),
fr.x() + fr.width() - 2, fr.y() + fr.height() - 1 );
}
} else {
style().drawPrimitive( QStyle::PE_HeaderSection, p,
QRect(fr.x() - 2, fr.y() - 2, fr.width() + 4, fr.height() + 4),
colorGroup(), flags,
QStyleOption( this ) );
p->setPen( colorGroup().color( QColorGroup::Mid ) );
p->drawLine( fr.x() + width() - 1, fr.y(),
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->drawLine( fr.x(), fr.y() + fr.height() - 1,
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->setPen( colorGroup().color( QColorGroup::Light ) );
if ( index > 0 )
p->drawLine( fr.x(), fr.y(), fr.x() + fr.width() - 1, fr.y() );
if ( index == count() - 1 ) {
p->drawLine( fr.x(), fr.y() + fr.height() - 1,
fr.x() + fr.width() - 1, fr.y() + fr.height() - 1 );
p->setPen( colorGroup().color( QColorGroup::Mid ) );
p->drawLine( fr.x(), fr.y() + fr.height() - 2,
fr.x() + fr.width() - 1, fr.y() + fr.height() - 2 );
}
}
p->restore();
}
paintSectionLabel( p, index, fr );
}
/*!
Paints the label of the section at position \a index, inside
rectangle \a fr (which uses widget coordinates) using painter \a
p.
Called by paintSection()
*/
void QHeader::paintSectionLabel( QPainter *p, int index, const QRect& fr )
{
int section = mapToSection( index );
if ( section < 0 )
return;
int dx = 0, dy = 0;
QStyle::SFlags flags = QStyle::Style_Default;
if ( index == handleIdx && ( state == Pressed || state == Moving ) ) {
dx = style().pixelMetric( QStyle::PM_ButtonShiftHorizontal, this );
dy = style().pixelMetric( QStyle::PM_ButtonShiftVertical, this );
flags |= QStyle::Style_Sunken;
}
if ( isEnabled() )
flags |= QStyle::Style_Enabled;
QRect r( fr.x() + style().pixelMetric( QStyle::PM_HeaderMargin ) + dx, fr.y() + 2 + dy,
fr.width() - 6, fr.height() - 4 );
style().drawControl( QStyle::CE_HeaderLabel, p, this, r, colorGroup(), flags,
QStyleOption( section ) );
int arrowWidth = ( orient == Qt::Horizontal ? height() : width() ) / 2;
int arrowHeight = fr.height() - 6;
QSize ssh = sectionSizeHint( section, p->fontMetrics() );
int tw = ( orient == Qt::Horizontal ? ssh.width() : ssh.height() );
int ew = 0;
if ( style().styleHint( QStyle::SH_Header_ArrowAlignment, this ) & AlignRight )
ew = fr.width() - tw - 8;
if ( d->sortSection == section && tw <= fr.width() ) {
if ( reverse() ) {
tw = fr.width() - tw;
ew = fr.width() - ew - tw;
}
QStyle::SFlags flags = QStyle::Style_Default;
if ( isEnabled() )
flags |= QStyle::Style_Enabled;
if ( d->sortDirection )
flags |= QStyle::Style_Down;
else
flags |= QStyle::Style_Up;
QRect ar(fr.x() + tw - arrowWidth - 6 + ew, 4, arrowWidth, arrowHeight);
if (label(section).isRightToLeft())
ar.moveBy( 2*(fr.right() - ar.right()) + ar.width() - fr.width(), 0 );
style().drawPrimitive( QStyle::PE_HeaderArrow, p,
ar, colorGroup(), flags, QStyleOption( this ) );
}
}
/*! \reimp */
void QHeader::paintEvent( QPaintEvent *e )
{
QPainter p( this );
p.setPen( colorGroup().buttonText() );
int pos = orient == Horizontal ? e->rect().left() : e->rect().top();
int id = mapToIndex( sectionAt( pos + offset() ) );
if ( id < 0 ) {
if ( pos > 0 )
id = d->count;
else if ( reverse() )
id = d->count - 1;
else
id = 0;
}
if ( reverse() ) {
for ( int i = id; i >= 0; i-- ) {
QRect r = sRect( i );
paintSection( &p, i, r );
if ( r.right() >= e->rect().right() )
return;
}
} else {
if ( count() > 0 ) {
for ( int i = id; i <= count(); i++ ) {
QRect r = sRect( i );
/*
If the last section is clickable (and thus is
painted raised), draw the virtual section count()
as well. Otherwise it looks ugly.
*/
if ( i < count() || d->clicks[ mapToSection( count() - 1 ) ] )
paintSection( &p, i, r );
if ( hasFocus() && d->focusIdx == i ) {
QRect fr( r.x()+2, r.y()+2, r.width()-4, r.height()-4 );
style().drawPrimitive( QStyle::PE_FocusRect, &p, fr,
colorGroup() );
}
if ( orient == Horizontal && r. right() >= e->rect().right() ||
orient == Vertical && r. bottom() >= e->rect().bottom() )
return;
}
}
}
}
/*! \overload
\obsolete
Use the other overload instead.
*/
void QHeader::setSortIndicator( int section, bool ascending )
{
d->sortSection = section;
if ( section != -1 )
oldHandleIdx = section;
d->sortDirection = ascending;
update();
updateGeometry();
}
/*!
\fn void QHeader::setSortIndicator(int section, SortOrder order)
Sets a sort indicator onto the specified \a section. The indicator's
\a order is either Ascending or Descending.
Only one section can show a sort indicator at any one time. If you
don't want any section to show a sort indicator pass a \a section
number of -1.
\sa sortIndicatorSection(), sortIndicatorOrder()
*/
/*!
Returns the section showing the sort indicator or -1 if there is no sort indicator.
\sa setSortIndicator(), sortIndicatorOrder()
*/
int QHeader::sortIndicatorSection() const
{
return d->sortSection;
}
/*!
Returns the implied sort order of the QHeaders sort indicator.
\sa setSortIndicator(), sortIndicatorSection()
*/
Qt::SortOrder QHeader::sortIndicatorOrder() const
{
return d->sortDirection ? Ascending : Descending;
}
/*!
Resizes section \a section to \a s pixels wide (or high).
*/
void QHeader::resizeSection( int section, int s )
{
setCellSize( section, s );
update();
}
/*!
Returns the width (or height) of the \a section in pixels.
*/
int QHeader::sectionSize( int section ) const
{
if ( section < 0 || section >= count() )
return 0;
return d->sizes[section];
}
/*!
Returns the position (in pixels) at which the \a section starts.
\sa offset()
*/
int QHeader::sectionPos( int section ) const
{
if ( d->positionsDirty )
((QHeader *)this)->calculatePositions();
if ( section < 0 || section >= count() )
return 0;
return d->positions[ d->s2i[section] ];
}
/*!
Returns the index of the section which contains the position \a
pos given in pixels from the left (or top).
\sa offset()
*/
int QHeader::sectionAt( int pos ) const
{
if ( reverse() )
pos = d->lastPos - pos;
return d->sectionAt( pos );
}
/*!
Returns the number of the section that corresponds to the specified \a index.
\warning If QTable is used to move header sections as a result of user
interaction, the mapping exposed by this function will not reflect the
order of the headers in the table; i.e., QTable does not call moveSection()
to move sections but handles move operations internally.
\sa mapToIndex()
*/
int QHeader::mapToSection( int index ) const
{
return ( index >= 0 && index < count() ) ? d->i2s[ index ] : -1;
}
/*!
Returns the index position corresponding to the specified \a section number.
\warning If QTable is used to move header sections as a result of user
interaction, the mapping exposed by this function will not reflect the
order of the headers in the table; i.e., QTable does not call moveSection()
to move sections but handles move operations internally.
\sa mapToSection()
*/
int QHeader::mapToIndex( int section ) const
{
return ( section >= 0 && section < count() ) ? d->s2i[ section ] : -1;
}
/*!
Moves section \a section to index position \a toIndex.
*/
void QHeader::moveSection( int section, int toIndex )
{
int fromIndex = mapToIndex( section );
if ( fromIndex == toIndex ||
fromIndex < 0 || fromIndex > count() ||
toIndex < 0 || toIndex > count() )
return;
int i;
int idx = d->i2s[fromIndex];
if ( fromIndex < toIndex ) {
for ( i = fromIndex; i < toIndex - 1; i++ ) {
int t;
d->i2s[i] = t = d->i2s[i+1];
d->s2i[t] = i;
}
d->i2s[toIndex-1] = idx;
d->s2i[idx] = toIndex-1;
} else {
for ( i = fromIndex; i > toIndex; i-- ) {
int t;
d->i2s[i] = t = d->i2s[i-1];
d->s2i[t] = i;
}
d->i2s[toIndex] = idx;
d->s2i[idx] = toIndex;
}
calculatePositions();
}
/*!
Returns TRUE if section \a section is clickable; otherwise returns
FALSE.
If \a section is out of range (negative or larger than count() -
1): returns TRUE if all sections are clickable; otherwise returns
FALSE.
\sa setClickEnabled()
*/
bool QHeader::isClickEnabled( int section ) const
{
if ( section >= 0 && section < count() ) {
return (bool)d->clicks[ section ];
}
for ( int i = 0; i < count(); ++i ) {
if ( !d->clicks[ i ] )
return FALSE;
}
return TRUE;
}
/*!
Returns TRUE if section \a section is resizeable; otherwise
returns FALSE.
If \a section is -1 then this function applies to all sections,
i.e. returns TRUE if all sections are resizeable; otherwise
returns FALSE.
\sa setResizeEnabled()
*/
bool QHeader::isResizeEnabled( int section ) const
{
if ( section >= 0 && section < count() ) {
return (bool)d->resize[ section ];
}
for ( int i = 0; i < count();++i ) {
if ( !d->resize[ i ] )
return FALSE;
}
return TRUE;
}
bool QHeader::isMovingEnabled() const
{
return d->move;
}
/*! \reimp */
void QHeader::setUpdatesEnabled( bool enable )
{
if ( enable )
calculatePositions();
QWidget::setUpdatesEnabled( enable );
}
bool QHeader::reverse () const
{
#if 0
return ( orient == Qt::Horizontal && QApplication::reverseLayout() );
#else
return FALSE;
#endif
}
/*! \reimp */
void QHeader::resizeEvent( QResizeEvent *e )
{
if ( e )
QWidget::resizeEvent( e );
if( d->lastPos < width() ) {
offs = 0;
}
if ( e ) {
adjustHeaderSize( orientation() == Horizontal ?
width() - e->oldSize().width() : height() - e->oldSize().height() );
if ( (orientation() == Horizontal && height() != e->oldSize().height())
|| (orientation() == Vertical && width() != e->oldSize().width()) )
update();
} else
adjustHeaderSize();
}
/*!
\fn void QHeader::adjustHeaderSize()
Adjusts the size of the sections to fit the size of the header as
completely as possible. Only sections for which isStretchEnabled()
is TRUE will be resized.
*/
void QHeader::adjustHeaderSize( int diff )
{
if ( !count() )
return;
// we skip the adjustHeaderSize when trying to resize the last column which is set to stretchable
if ( d->fullSize == (count() -1) &&
(d->lastPos - d->sizes[count() -1]) > ( orient == Horizontal ? width() : height() ) )
return;
if ( d->fullSize >= 0 ) {
int sec = mapToSection( d->fullSize );
int lsec = mapToSection( count() - 1 );
int ns = sectionSize( sec ) +
( orientation() == Horizontal ?
width() : height() ) - ( sectionPos( lsec ) + sectionSize( lsec ) );
int os = sectionSize( sec );
if ( ns < 20 )
ns = 20;
setCellSize( sec, ns );
repaint( FALSE );
emit sizeChange( sec, os, ns );
} else if ( d->fullSize == -1 ) {
int df = diff / count();
int part = orientation() == Horizontal ? width() / count() : height() / count();
for ( int i = 0; i < count() - 1; ++i ) {
int sec = mapToIndex( i );
int os = sectionSize( sec );
int ns = diff != -1 ? os + df : part;
if ( ns < 20 )
ns = 20;
setCellSize( sec, ns );
emit sizeChange( sec, os, ns );
}
int sec = mapToIndex( count() - 1 );
int ns = ( orientation() == Horizontal ? width() : height() ) - sectionPos( sec );
int os = sectionSize( sec );
if ( ns < 20 )
ns = 20;
setCellSize( sec, ns );
repaint( FALSE );
emit sizeChange( sec, os, ns );
}
}
/*!
Returns the total width of all the header columns.
*/
int QHeader::headerWidth() const
{
if ( d->pos_dirty ) {
( (QHeader*)this )->calculatePositions();
d->pos_dirty = FALSE;
}
return d->lastPos;
}
void QHeader::calculatePositions( bool onlyVisible, int start )
{
d->positionsDirty = FALSE;
d->lastPos = count() > 0 ? d->positions[start] : 0;
for ( int i = start; i < count(); i++ ) {
d->positions[i] = d->lastPos;
d->lastPos += d->sizes[d->i2s[i]];
if ( onlyVisible && d->lastPos > offset() +
( orientation() == Horizontal ? width() : height() ) )
break;
}
d->pos_dirty = onlyVisible;
}
/*!
\property QHeader::stretching
\brief whether the header sections always take up the full width
(or height) of the header
*/
/*!
If \a b is TRUE, section \a section will be resized when the
header is resized, so that the sections take up the full width (or
height for vertical headers) of the header; otherwise section \a
section will be set to be unstretchable and will not resize when
the header is resized.
If \a section is -1, and if \a b is TRUE, then all sections will
be resized equally when the header is resized so that they take up
the full width (or height for vertical headers) of the header;
otherwise all the sections will be set to be unstretchable and
will not resize when the header is resized.
\sa adjustHeaderSize()
*/
void QHeader::setStretchEnabled( bool b, int section )
{
if ( b )
d->fullSize = section;
else
d->fullSize = -2;
adjustHeaderSize();
}
bool QHeader::isStretchEnabled() const
{
return d->fullSize == -1;
}
/*!
\overload
Returns TRUE if section \a section will resize to take up the full
width (or height) of the header; otherwise returns FALSE. If at
least one section has stretch enabled the sections will always
take up the full width of the header.
\sa setStretchEnabled()
*/
bool QHeader::isStretchEnabled( int section ) const
{
return d->fullSize == section;
}
/*!
\reimp
*/
void QHeader::fontChange( const QFont &oldFont )
{
QFontMetrics fm = fontMetrics();
d->height = ( orient == Horizontal ) ? fm.lineSpacing() + 6 : fm.width( ' ' );
QWidget::fontChange( oldFont );
}
#endif // QT_NO_HEADER
|