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
|
'\" t
.TH QTable 3qt "18 March 2002" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QTable \- Flexible editable table widget
.SH SYNOPSIS
\fC#include <qtable.h>\fR
.PP
Inherits QScrollView.
.PP
Inherited by QDataTable.
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQTable\fR ( QWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fBQTable\fR ( int numRows, int numCols, QWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QTable\fR ()"
.br
.ti -1c
.BI "QHeader * \fBhorizontalHeader\fR () const"
.br
.ti -1c
.BI "QHeader * \fBverticalHeader\fR () const"
.br
.ti -1c
.BI "enum \fBSelectionMode\fR { Single, Multi, SingleRow, MultiRow, NoSelection }"
.br
.ti -1c
.BI "virtual void \fBsetSelectionMode\fR ( SelectionMode mode )"
.br
.ti -1c
.BI "SelectionMode \fBselectionMode\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetItem\fR ( int row, int col, QTableItem * item )"
.br
.ti -1c
.BI "virtual void \fBsetText\fR ( int row, int col, const QString & text )"
.br
.ti -1c
.BI "virtual void \fBsetPixmap\fR ( int row, int col, const QPixmap & pix )"
.br
.ti -1c
.BI "virtual QTableItem * \fBitem\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual QString \fBtext\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual QPixmap \fBpixmap\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual void \fBclearCell\fR ( int row, int col )"
.br
.ti -1c
.BI "virtual QRect \fBcellGeometry\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual int \fBcolumnWidth\fR ( int col ) const"
.br
.ti -1c
.BI "virtual int \fBrowHeight\fR ( int row ) const"
.br
.ti -1c
.BI "virtual int \fBcolumnPos\fR ( int col ) const"
.br
.ti -1c
.BI "virtual int \fBrowPos\fR ( int row ) const"
.br
.ti -1c
.BI "virtual int \fBcolumnAt\fR ( int x ) const"
.br
.ti -1c
.BI "virtual int \fBrowAt\fR ( int y ) const"
.br
.ti -1c
.BI "virtual int \fBnumRows\fR () const"
.br
.ti -1c
.BI "virtual int \fBnumCols\fR () const"
.br
.ti -1c
.BI "void \fBupdateCell\fR ( int row, int col )"
.br
.ti -1c
.BI "int \fBcurrentRow\fR () const"
.br
.ti -1c
.BI "int \fBcurrentColumn\fR () const"
.br
.ti -1c
.BI "void \fBensureCellVisible\fR ( int row, int col )"
.br
.ti -1c
.BI "bool \fBisSelected\fR ( int row, int col ) const"
.br
.ti -1c
.BI "bool \fBisRowSelected\fR ( int row, bool full = FALSE ) const"
.br
.ti -1c
.BI "bool \fBisColumnSelected\fR ( int col, bool full = FALSE ) const"
.br
.ti -1c
.BI "int \fBnumSelections\fR () const"
.br
.ti -1c
.BI "QTableSelection \fBselection\fR ( int num ) const"
.br
.ti -1c
.BI "virtual int \fBaddSelection\fR ( const QTableSelection & s )"
.br
.ti -1c
.BI "virtual void \fBremoveSelection\fR ( const QTableSelection & s )"
.br
.ti -1c
.BI "virtual void \fBremoveSelection\fR ( int num )"
.br
.ti -1c
.BI "virtual int \fBcurrentSelection\fR () const"
.br
.ti -1c
.BI "bool \fBshowGrid\fR () const"
.br
.ti -1c
.BI "bool \fBcolumnMovingEnabled\fR () const"
.br
.ti -1c
.BI "bool \fBrowMovingEnabled\fR () const"
.br
.ti -1c
.BI "virtual void \fBsortColumn\fR ( int col, bool ascending = TRUE, bool wholeRows = FALSE )"
.br
.ti -1c
.BI "bool \fBsorting\fR () const"
.br
.ti -1c
.BI "virtual void \fBtakeItem\fR ( QTableItem * i )"
.br
.ti -1c
.BI "virtual void \fBsetCellWidget\fR ( int row, int col, QWidget * e )"
.br
.ti -1c
.BI "virtual QWidget * \fBcellWidget\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual void \fBclearCellWidget\fR ( int row, int col )"
.br
.ti -1c
.BI "virtual QRect \fBcellRect\fR ( int row, int col ) const"
.br
.ti -1c
.BI "virtual void \fBpaintCell\fR ( QPainter * p, int row, int col, const QRect & cr, bool selected )"
.br
.ti -1c
.BI "virtual void \fBpaintCell\fR ( QPainter * p, int row, int col, const QRect & cr, bool selected, const QColorGroup & cg )"
.br
.ti -1c
.BI "virtual void \fBpaintFocus\fR ( QPainter * p, const QRect & cr )"
.br
.ti -1c
.BI "bool \fBisReadOnly\fR () const"
.br
.ti -1c
.BI "bool \fBisRowReadOnly\fR ( int row ) const"
.br
.ti -1c
.BI "bool \fBisColumnReadOnly\fR ( int col ) const"
.br
.ti -1c
.BI "void \fBrepaintSelections\fR ()"
.br
.ti -1c
.BI "enum \fBFocusStyle\fR { FollowStyle, SpreadSheet }"
.br
.ti -1c
.BI "virtual void \fBsetFocusStyle\fR ( FocusStyle fs )"
.br
.ti -1c
.BI "FocusStyle \fBfocusStyle\fR () const"
.br
.in -1c
.SS "Public Slots"
.in +1c
.ti -1c
.BI "virtual void \fBsetNumRows\fR ( int r )"
.br
.ti -1c
.BI "virtual void \fBsetNumCols\fR ( int r )"
.br
.ti -1c
.BI "virtual void \fBsetShowGrid\fR ( bool b )"
.br
.ti -1c
.BI "virtual void \fBhideRow\fR ( int row )"
.br
.ti -1c
.BI "virtual void \fBhideColumn\fR ( int col )"
.br
.ti -1c
.BI "virtual void \fBshowRow\fR ( int row )"
.br
.ti -1c
.BI "virtual void \fBshowColumn\fR ( int col )"
.br
.ti -1c
.BI "virtual void \fBsetColumnWidth\fR ( int col, int w )"
.br
.ti -1c
.BI "virtual void \fBsetRowHeight\fR ( int row, int h )"
.br
.ti -1c
.BI "virtual void \fBadjustColumn\fR ( int col )"
.br
.ti -1c
.BI "virtual void \fBadjustRow\fR ( int row )"
.br
.ti -1c
.BI "virtual void \fBsetColumnStretchable\fR ( int col, bool stretch )"
.br
.ti -1c
.BI "virtual void \fBsetRowStretchable\fR ( int row, bool stretch )"
.br
.ti -1c
.BI "bool \fBisColumnStretchable\fR ( int col ) const"
.br
.ti -1c
.BI "bool \fBisRowStretchable\fR ( int row ) const"
.br
.ti -1c
.BI "virtual void \fBsetSorting\fR ( bool b )"
.br
.ti -1c
.BI "virtual void \fBswapRows\fR ( int row1, int row2, bool swapHeader = FALSE )"
.br
.ti -1c
.BI "virtual void \fBswapColumns\fR ( int col1, int col2, bool swapHeader = FALSE )"
.br
.ti -1c
.BI "virtual void \fBswapCells\fR ( int row1, int col1, int row2, int col2 )"
.br
.ti -1c
.BI "virtual void \fBsetLeftMargin\fR ( int m )"
.br
.ti -1c
.BI "virtual void \fBsetTopMargin\fR ( int m )"
.br
.ti -1c
.BI "virtual void \fBsetCurrentCell\fR ( int row, int col )"
.br
.ti -1c
.BI "void \fBclearSelection\fR ( bool repaint = TRUE )"
.br
.ti -1c
.BI "virtual void \fBsetColumnMovingEnabled\fR ( bool b )"
.br
.ti -1c
.BI "virtual void \fBsetRowMovingEnabled\fR ( bool b )"
.br
.ti -1c
.BI "virtual void \fBsetReadOnly\fR ( bool b )"
.br
.ti -1c
.BI "virtual void \fBsetRowReadOnly\fR ( int row, bool ro )"
.br
.ti -1c
.BI "virtual void \fBsetColumnReadOnly\fR ( int col, bool ro )"
.br
.ti -1c
.BI "virtual void \fBsetDragEnabled\fR ( bool b )"
.br
.ti -1c
.BI "bool \fBdragEnabled\fR () const"
.br
.ti -1c
.BI "virtual void \fBinsertRows\fR ( int row, int count = 1 )"
.br
.ti -1c
.BI "virtual void \fBinsertColumns\fR ( int col, int count = 1 )"
.br
.ti -1c
.BI "virtual void \fBremoveRow\fR ( int row )"
.br
.ti -1c
.BI "virtual void \fBremoveRows\fR ( const QMemArray<int> & rows )"
.br
.ti -1c
.BI "virtual void \fBremoveColumn\fR ( int col )"
.br
.ti -1c
.BI "virtual void \fBremoveColumns\fR ( const QMemArray<int> & cols )"
.br
.ti -1c
.BI "virtual void \fBeditCell\fR ( int row, int col, bool replace = FALSE )"
.br
.in -1c
.SS "Signals"
.in +1c
.ti -1c
.BI "void \fBcurrentChanged\fR ( int row, int col )"
.br
.ti -1c
.BI "void \fBclicked\fR ( int row, int col, int button, const QPoint & mousePos )"
.br
.ti -1c
.BI "void \fBdoubleClicked\fR ( int row, int col, int button, const QPoint & mousePos )"
.br
.ti -1c
.BI "void \fBpressed\fR ( int row, int col, int button, const QPoint & mousePos )"
.br
.ti -1c
.BI "void \fBselectionChanged\fR ()"
.br
.ti -1c
.BI "void \fBvalueChanged\fR ( int row, int col )"
.br
.ti -1c
.BI "void \fBcontextMenuRequested\fR ( int row, int col, const QPoint & pos )"
.br
.ti -1c
.BI "void \fBdropped\fR ( QDropEvent * e )"
.br
.in -1c
.SS "Properties"
.in +1c
.ti -1c
.BI "bool \fBcolumnMovingEnabled\fR - whether columns can be moved by the user"
.br
.ti -1c
.BI "FocusStyle \fBfocusStyle\fR - how the current (focus) cell is drawn"
.br
.ti -1c
.BI "int \fBnumCols\fR - the number of columns in the table"
.br
.ti -1c
.BI "int \fBnumRows\fR - the number of rows in the table"
.br
.ti -1c
.BI "bool \fBreadOnly\fR - whether the table is read-only"
.br
.ti -1c
.BI "bool \fBrowMovingEnabled\fR - whether rows can be moved by the user"
.br
.ti -1c
.BI "SelectionMode \fBselectionMode\fR - the current selection mode"
.br
.ti -1c
.BI "bool \fBshowGrid\fR - whether the table's grid is displayed"
.br
.ti -1c
.BI "bool \fBsorting\fR - whether a click on the header of a column sorts that column"
.br
.in -1c
.SS "Protected Members"
.in +1c
.ti -1c
.BI "enum \fBEditMode\fR { NotEditing, Editing, Replacing }"
.br
.ti -1c
.BI "virtual void \fBdrawContents\fR ( QPainter * p, int cx, int cy, int cw, int ch )"
.br
.ti -1c
.BI "void \fBsetEditMode\fR ( EditMode mode, int row, int col )"
.br
.ti -1c
.BI "virtual void \fBcontentsDragEnterEvent\fR ( QDragEnterEvent * e )"
.br
.ti -1c
.BI "virtual void \fBcontentsDragMoveEvent\fR ( QDragMoveEvent * e )"
.br
.ti -1c
.BI "virtual void \fBcontentsDragLeaveEvent\fR ( QDragLeaveEvent * e )"
.br
.ti -1c
.BI "virtual void \fBcontentsDropEvent\fR ( QDropEvent * e )"
.br
.ti -1c
.BI "virtual QDragObject * \fBdragObject\fR ()"
.br
.ti -1c
.BI "virtual void \fBstartDrag\fR ()"
.br
.ti -1c
.BI "virtual void \fBpaintEmptyArea\fR ( QPainter * p, int cx, int cy, int cw, int ch )"
.br
.ti -1c
.BI "virtual void \fBactivateNextCell\fR ()"
.br
.ti -1c
.BI "virtual QWidget * \fBcreateEditor\fR ( int row, int col, bool initFromCell ) const"
.br
.ti -1c
.BI "virtual void \fBsetCellContentFromEditor\fR ( int row, int col )"
.br
.ti -1c
.BI "virtual QWidget * \fBbeginEdit\fR ( int row, int col, bool replace )"
.br
.ti -1c
.BI "virtual void \fBendEdit\fR ( int row, int col, bool accept, bool replace )"
.br
.ti -1c
.BI "virtual void \fBresizeData\fR ( int len )"
.br
.ti -1c
.BI "virtual void \fBinsertWidget\fR ( int row, int col, QWidget * w )"
.br
.ti -1c
.BI "int \fBindexOf\fR ( int row, int col ) const"
.br
.ti -1c
.BI "bool \fBisEditing\fR () const"
.br
.ti -1c
.BI "EditMode \fBeditMode\fR () const"
.br
.ti -1c
.BI "int \fBcurrEditRow\fR () const"
.br
.ti -1c
.BI "int \fBcurrEditCol\fR () const"
.br
.in -1c
.SS "Protected Slots"
.in +1c
.ti -1c
.BI "virtual void \fBcolumnWidthChanged\fR ( int col )"
.br
.ti -1c
.BI "virtual void \fBrowHeightChanged\fR ( int row )"
.br
.ti -1c
.BI "virtual void \fBcolumnIndexChanged\fR ( int section, int fromIndex, int toIndex )"
.br
.ti -1c
.BI "virtual void \fBrowIndexChanged\fR ( int section, int fromIndex, int toIndex )"
.br
.ti -1c
.BI "virtual void \fBcolumnClicked\fR ( int col )"
.br
.in -1c
.SH DESCRIPTION
The QTable class provides a flexible editable table widget.
.PP
QTable is easy to use, although it does have a large API because of the comprehensive functionality that it provides. QTable includes functions for manipulating headers, rows and columns, cells and selections. QTable also provides in-place editing and drag and drop, as well as a useful set of signals. QTable efficiently supports very large tables, for example, tables one million by one million cells are perfectly possible. QTable is economical with memory, using none for unused cells.
.PP
.nf
.br
QTable *table = new QTable( 100, 250, this );
.br
table->setPixmap( 3, 2, pix );
.br
table->setText( 3, 2, "A pixmap" );
.br
.fi
.PP
The first line constructs the table specifying its size in rows and columns. We then insert a pixmap and some text into the \fIsame\fR cell, with the pixmap appearing to the left of the text. QTable cells can be populated with QTableItems, QComboTableItems or by QCheckTableItems. By default a vertical header appears at the left of the table showing row numbers and a horizontal header appears at the top of the table showing column numbers. (The numbers displayed start at 1, although row and column numbers within QTable begin at 0.)
.PP
If you want to use mouse tracking call setMouseTracking( TRUE ) on the \fIviewport\fR; (see QScrollView).
.PP
<center>
.ce 1
.B "[Image Omitted]"
.PP
</center>
.SH "Headers"
QTable supports a header column, e.g. to display row numbers, and a header row, e.g to display column titles. To set row or column labels use QHeader::setLabel() on the pointers returned by verticalHeader() and horizontalHeader() respectively. The vertical header is displayed within the table's left margin whose width is set with setLeftMargin(). The horizontal header is displayed within the table's top margin whose height is set with setTopMargin(). The table's grid can be switched off with setShowGrid(). If you want to hide a vertical header call hide(), and call setTopMargin( 0 ) so that the area the header would have occupied is reduced to zero size.
.PP
Header labels are indexed via their section numbers. Note that the default behavior of QHeader regarding section numbers is overriden for QTable. See the explanation below in Rows and Columns section in the discussion of moving columns and rows.
.SH "Rows and Columns"
Row and column sizes are set with setRowHeight() and setColumnWidth(). If you want a row high enough to show the tallest item in its entirety, use adjustRow(). Similarly, to make a column wide enough to show the widest item use adjustColumn(). If you want the row height and column width to adjust automatically as the height and width of the table changes use setRowStretchable() and setColumnStretchable().
.PP
Rows and columns can be hidden and shown with hideRow(), hideColumn(), showRow() and showColumn(). New rows and columns are inserted using insertRows() and insertColumns(). Additional rows and columns are added at the bottom (rows) or right (columns) if you set setNumRows() or setNumCols() to be larger than numRows() or numCols(). Existing rows and columns are removed with removeRow() and removeColumn(). Multiple rows and columns can be removed with removeRows() and removeColumns().
.PP
Rows and columns can be set to be moveable, i.e. the user can drag them to reorder them, using rowMovingEnabled() and columnMovingEnabled(). For performance reasons, the default behavior of QHeader section numbers is overwritten by QTable. Currently in QTable, when a row or column is dragged and reordered, the section number is also changed to its new position. Therefore, there is no difference between the section and the index fields in QHeader. The QTable QHeader classes do not provide a mechanism for indexing independent of the user interface ordering.
.PP
The table can be sorted using sortColumn(). Users can sort a column by clicking its header if setSorting() is set to TRUE. Rows can be swapped with swapRows(), columns with swapColumns() and cells with swapCells().
.PP
For editable tables (see setReadOnly()) you can set the read-only property of individual rows and columns with setRowReadOnly() and setColumnReadOnly(). (Whether a cell is editable or read-only depends on these settings and the cell's QTableItem::EditType.)
.PP
The row and column which have the focus are returned by currentRow() and currentColumn() respectively.
.PP
Although many QTable functions operate in terms of rows and columns the indexOf() function returns a single integer identifying a particular cell.
.SH "Cells"
All of a QTable's cells are empty when the table is constructed.
.PP
There are two approaches to populating the table's cells. The first and simplest approach is to use QTableItems or QTableItem subclasses. The second approach doesn't use QTableItems at all which is useful for very large sparse tables but requires you to reimplement a number of functions. We'll look at each approach in turn.
.PP
To put a string in a cell use setText(). This function will create a new QTableItem for the cell if one doesn't already exist, and displays the text in it. By default the table item's widget will be a QLineEdit. A pixmap may be put in a cell with setPixmap(), which also creates a table item if required. A cell may contain \fIboth\fR a pixmap and text; the pixmap is displayed to the left of the text. Another approach is to construct a QTableItem or QTableItem subclass, set its properties, then insert it into a cell with setItem().
.PP
If you want cells which contain comboboxes use the QComboTableItem class. Similarly if you require cells containing checkboxes use the QCheckTableItem class. These table items look and behave just like the combobox or checkbox widgets but consume far less memory.
.PP
.nf
.br
for ( int j = 0; j < numRows; ++j )
.br
table.setItem( j, 1, new QCheckTableItem( &table, "Check me" ) );
.fi
In the example above we create a column of QCheckTableItems and insert them into the table using setItem().
.PP
QTable takes ownership of its QTableItems and will delete them when the table itself is destroyed. You can take ownership of a table item using takeItem() which you use to move a cell's contents from one cell to another, either within the same table, or from one table to another. (See also, swapCells()).
.PP
In-place editing of the text in QTableItems, and the values in QComboTableItems and QCheckTableItems works automatically. Cells may be editable or read-only, see QTableItem::EditType.
.PP
The contents of a cell can be retrieved as a QTableItem using item(), or as a string with text() or as a pixmap (if there is one) with pixmap(). A cell's bounding rectangle is given by cellGeometry(). Use updateCell() to repaint a cell, for example to clear away a cell's visual representation after it has been deleted with clearCell(). The table can be forced to scroll to show a particular cell with ensureCellVisible(). The isSelected() function indicates if a cell is selected.
.PP
It is possible to use your own widget as a cell's widget using setCellWidget(), but subclassing QTableItem might be a simpler approach. The cell's widget (if there is one) can be removed with clearCellWidget().
.PP
<h4> Large tables </h4>
.PP
For large, sparse, tables using QTableItems or other widgets is inefficient. The solution is to \fIdraw\fR the cell as it should appear and to create and destroy cell editors on demand.
.PP
This approach requires that you reimplement various functions. Reimplement paintCell() to display your data, and createEditor() and setCellContentFromEditor() to facilitate in-place editing. It is very important to reimplement resizeData() to have no functionality, to prevent QTable from attempting to create a huge array. You will also need to reimplement item(), setItem(), clearCell(), and insertWidget(), cellWidget() and clearCellWidget(). If you wish to support sorting you should also reimplement swapRows(), swapCells() and possibly swapColumns().
.PP
If you represent active cells with a dictionary of QTableItems and QWidgets, i.e. only store references to cells that are actually used, most of the functions can be implemented with a single line of code. (See the table/bigtable/main.cpp example.)
.PP
For more information on cells see the QTableItem documenation.
.SH "Selections"
QTable's support single selection, multi-selection (multiple cells) or no selection. The selection mode is set with setSelectionMode(). Use isSelected() to determine if a particular cell is selected, and isRowSelected() and isColumnSelected() to see if a row or column is selected.
.PP
QTable's support multiple selections. You can programmatically select cells with addSelection(). The number of selections is given by numSelections(). The current selection is returned by currentSelection(). You can remove a selection with removeSelection() and remove all selections with clearSelection(). Selections are QTableSelection objects.
.SH "Signals"
When the user clicks a cell the currentChanged() signal is emitted. You can also connect to the lower level clicked(), doubleClicked() and pressed() signals. If the user changes the selection the selectionChanged() signal is emitted; similarly if the user changes a cell's value the valueChanged() signal is emitted. If the user right-clicks (or presses the platform-specific key sequence) the contextMenuRequested() signal is emitted. If the user drops a drag and drop object the dropped() signal is emitted with the drop event.
.PP
See also Advanced Widgets.
.SS "Member Type Documentation"
.SH "QTable::EditMode"
.TP
\fCQTable::NotEditing\fR - No cell is currently being edited.
.TP
\fCQTable::Editing\fR - A cell is currently being edited. The editor was initialised with the cell's contents.
.TP
\fCQTable::Replacing\fR - A cell is currently being edited. The editor was not initialised with the cell's contents.
.SH "QTable::FocusStyle"
Specifies how the current cell (focus cell) is drawn.
.TP
\fCQTable::FollowStyle\fR - The current cell is drawn according to the current style and the cell's background is also drawn selected, if the current cell is position within a selection
.TP
\fCQTable::SpreadSheet\fR - The current cell is drawn as in a spread sheet. This means, it is indicated by a black rectangle around the cell, and the background of the current cell is always drawn with the widget's base color - even when selected.
.SH "QTable::SelectionMode"
.TP
\fCQTable::NoSelection\fR - No cell can be selected by the user.
.TP
\fCQTable::Single\fR - The user may only select a single range of cells.
.TP
\fCQTable::Multi\fR - The user may select multiple ranges of cells.
.TP
\fCQTable::SingleRow\fR - The user may select one row at once (there is always the row of the current item selected)
.TP
\fCQTable::MultiRow\fR - The user may select multiple rows
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QTable::QTable ( QWidget * parent = 0, const char * name = 0 )"
Creates an empty table object called \fIname\fR as a child of \fIparent\fR.
.PP
Call setNumRows() and setNumCols() to set the table size before populating the table if you're using QTableItems.
.PP
See also QWidget::clearWFlags() and Qt::WidgetFlags.
.SH "QTable::QTable ( int numRows, int numCols, QWidget * parent = 0, const char * name = 0 )"
Constructs an empty table called \fIname\fR with \fInumRows\fR rows and \fInumCols\fR columns. The table is a child of \fIparent\fR.
.PP
If you're using QTableItems to populate the table's cells, you can create QTableItem, QComboTableItem and QCheckTableItem items and insert them into the table using setItem(). (See the notes on large tables for an alternative to using QTableItems.)
.PP
See also QWidget::clearWFlags() and Qt::WidgetFlags.
.SH "QTable::~QTable ()"
Destructor. Deletes all the resources used by a QTable object, including all QTableItems and their widgets.
.SH "void QTable::activateNextCell ()\fC [virtual protected]\fR"
This function is called to activate the next cell if in-place editing was finished by pressing the Return key.
.PP
The default behaviour is to move from top to bottom, i.e. move to the cell beneath the cell being edited. Reimplement this function if you want different behaviour, e.g. moving from left to right.
.SH "int QTable::addSelection ( const QTableSelection & s )\fC [virtual]\fR"
Adds a selection described by \fIs\fR to the table and returns its number or -1 if the selection is invalid.
.PP
Remember to call QTableSelection::init() and QTableSelection::expandTo() to make the selection valid (see also QTableSelection::isActive()).
.PP
See also numSelections(), removeSelection() and clearSelection().
.SH "void QTable::adjustColumn ( int col )\fC [virtual slot]\fR"
Resizes column \fIcol\fR so that the column width is wide enough to display the widest item the column contains.
.PP
See also adjustRow().
.SH "void QTable::adjustRow ( int row )\fC [virtual slot]\fR"
Resizes row \fIrow\fR so that the row height is tall enough to display the tallest item the row contains.
.PP
See also adjustColumn().
.SH "QWidget * QTable::beginEdit ( int row, int col, bool replace )\fC [virtual protected]\fR"
This function is called to start in-place editing of the cell at \fIrow\fR, \fIcol\fR. Editing is achieved by creating an editor (createEditor() is called) and setting the cell's editor with setCellWidget() to the newly created editor. (After editing is complete endEdit() will be called to replace the cell's content with the editor's content.) If \fIreplace\fR is TRUE the editor will be initialized with the cell's content (if any), i.e. the user will be modifying the original cell content; otherwise the user will be entering new data.
.PP
See also endEdit().
.SH "QRect QTable::cellGeometry ( int row, int col ) const\fC [virtual]\fR"
Returns the bounding rectangle of the cell at \fIrow\fR, \fIcol\fR in content coordinates.
.SH "QRect QTable::cellRect ( int row, int col ) const\fC [virtual]\fR"
Returns the geometry of cell \fIrow\fR, \fIcol\fR in the cell's coordinate system. This is a convenience function useful in paintCell(). It is equivalent to QRect( QPoint(0,0), cellGeometry( row, col).size() );
.PP
See also cellGeometry().
.SH "QWidget * QTable::cellWidget ( int row, int col ) const\fC [virtual]\fR"
Returns the widget that has been set for the cell at \fIrow\fR, \fIcol\fR, or 0 if no widget has been set.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.PP
See also clearCellWidget() and setCellWidget().
.SH "void QTable::clearCell ( int row, int col )\fC [virtual]\fR"
Removes the QTableItem at \fIrow\fR, \fIcol\fR.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.SH "void QTable::clearCellWidget ( int row, int col )\fC [virtual]\fR"
Removes the widget (if there is one) set for the cell at \fIrow\fR, \fIcol\fR.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.PP
This function deletes the widget at \fIrow\fR, \fIcol\fR. Note that the widget is not deleted immediately but QObject::deleteLater() is called on the widget to avoid problems with timing issues.
.PP
See also cellWidget() and setCellWidget().
.SH "void QTable::clearSelection ( bool repaint = TRUE )\fC [slot]\fR"
Clears all selections and repaints the appropriate regions if \fIrepaint\fR is TRUE.
.PP
See also removeSelection().
.SH "void QTable::clicked ( int row, int col, int button, const QPoint & mousePos )\fC [signal]\fR"
This signal is emitted when mouse button \fIbutton\fR is clicked. The cell where the event took place is at \fIrow\fR, \fIcol\fR, and the mouse's position is in \fImousePos\fR.
.SH "int QTable::columnAt ( int x ) const\fC [virtual]\fR"
Returns the number of the column at position \fIx\fR. \fIx\fR must be given in content coordinates.
.PP
See also columnPos() and rowAt().
.SH "void QTable::columnClicked ( int col )\fC [virtual protected slot]\fR"
This function is called when the column \fIcol\fR has been clicked. The default implementation sorts this column if sorting() is TRUE.
.SH "void QTable::columnIndexChanged ( int section, int fromIndex, int toIndex )\fC [virtual protected slot]\fR"
This function is called when column order is to be changed, i.e. when the user moved the column header \fIsection\fR from \fIfromIndex\fR to \fItoIndex\fR.
.PP
If you want to change the column order programmatically, call swapRows() or swapColumns();
.PP
See also QHeader::indexChange() and rowIndexChanged().
.SH "bool QTable::columnMovingEnabled () const"
Returns TRUE if columns can be moved by the user; otherwise returns FALSE. See the "columnMovingEnabled" property for details.
.SH "int QTable::columnPos ( int col ) const\fC [virtual]\fR"
Returns the x-coordinate of the column \fIcol\fR in content coordinates.
.PP
See also columnAt() and rowPos().
.SH "int QTable::columnWidth ( int col ) const\fC [virtual]\fR"
Returns the width of column \fIcol\fR.
.PP
See also setColumnWidth() and rowHeight().
.SH "void QTable::columnWidthChanged ( int col )\fC [virtual protected slot]\fR"
This function should be called whenever the column width of \fIcol\fR has been changed. It updates the geometry of any affected columns and repaints the table to reflect the changes it has made.
.SH "void QTable::contentsDragEnterEvent ( QDragEnterEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever a QTable object receives a QDragEnterEvent \fIe\fR, i.e. when the user pressed the mouse button to drag something.
.PP
The focus is moved to the cell where the QDragEnterEvent occurred.
.PP
Reimplemented from QScrollView.
.SH "void QTable::contentsDragLeaveEvent ( QDragLeaveEvent * e )\fC [virtual protected]\fR"
This event handler is called when a drag activity leaves \fIthis\fR QTable object with event \fIe\fR.
.PP
Reimplemented from QScrollView.
.SH "void QTable::contentsDragMoveEvent ( QDragMoveEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever a QTable object receives a QDragMoveEvent \fIe\fR, i.e. when the user actually drags the mouse.
.PP
The focus is moved to the cell where the QDragMoveEvent occurred.
.PP
Reimplemented from QScrollView.
.SH "void QTable::contentsDropEvent ( QDropEvent * e )\fC [virtual protected]\fR"
This event handler is called when the user ends a drag and drop by dropping something onto \fIthis\fR QTable and thus triggers the drop event, \fIe\fR.
.PP
Reimplemented from QScrollView.
.SH "void QTable::contextMenuRequested ( int row, int col, const QPoint & pos )\fC [signal]\fR"
This signal is emitted when the user invokes a context menu with the right mouse button (or with a system-specific keyboard key). The cell where the event took place is at \fIrow\fR, \fIcol\fR. \fIpos\fR is the position where the context menu will appear in the global coordinate system.
.SH "QWidget * QTable::createEditor ( int row, int col, bool initFromCell ) const\fC [virtual protected]\fR"
This function returns the widget which should be used as an editor for the contents of the cell at \fIrow\fR, \fIcol\fR.
.PP
If \fIinitFromCell\fR is TRUE, the editor is used to edit the current contents of the cell (so the editor widget should be initialized with this content). If \fIinitFromCell\fR is FALSE, the content of the cell is replaced with the new content which the user entered into the widget created by this function.
.PP
The default functionality is as follows: if \fIinitFromCell\fR is TRUE or the cell has a QTableItem and the table item's QTableItem::isReplaceable() is FALSE then the cell is asked to create an appropriate editor (using QTableItem::createEditor()). Otherwise a QLineEdit is used as the editor.
.PP
If you want to create your own editor for certain cells, implement a custom QTableItem subclass and reimplement QTableItem::createEditor().
.PP
If you are not using QTableItems and you don't want to use a QLineEdit as the default editor, subclass QTable and reimplement this function with code like this:
.PP
.nf
.br
QTableItem *i = item( row, col );
.br
if ( initFromCell || ( i && !i->isReplaceable() ) )
.br
// If we had a QTableItem ask the base class to create the editor
.br
return QTable::createEditor( row, col, initFromCell );
.br
else
.br
return ...(create your editor)
.br
.fi
Ownership of the editor widget is transferred to the caller.
.PP
If you reimplement this function return 0 for read-only cells. You will need to reimplement setCellContentFromEditor() to retrieve the data the user entered.
.PP
See also QTableItem::createEditor().
.SH "int QTable::currEditCol () const\fC [protected]\fR"
Returns the current edited column
.SH "int QTable::currEditRow () const\fC [protected]\fR"
Returns the current edited row
.SH "void QTable::currentChanged ( int row, int col )\fC [signal]\fR"
This signal is emitted when the current cell has changed to \fIrow\fR, \fIcol\fR.
.SH "int QTable::currentColumn () const"
Returns the current column.
.PP
See also currentRow().
.SH "int QTable::currentRow () const"
Returns the current row.
.PP
See also currentColumn().
.SH "int QTable::currentSelection () const\fC [virtual]\fR"
Returns the number of the current selection or -1 if there is no current selection.
.PP
See also numSelections().
.SH "void QTable::doubleClicked ( int row, int col, int button, const QPoint & mousePos )\fC [signal]\fR"
This signal is emitted when mouse button \fIbutton\fR is double-clicked. The cell where the event took place is at \fIrow\fR, \fIcol\fR, and the mouse's position is in \fImousePos\fR.
.SH "bool QTable::dragEnabled () const\fC [slot]\fR"
If this function returns TRUE, the table supports dragging.
.PP
See also setDragEnabled().
.SH "QDragObject * QTable::dragObject ()\fC [virtual protected]\fR"
If the user presses the mouse on a selected cell, starts moving (i.e. dragging), and dragEnabled() is TRUE, this function is called to obtain a drag object. A drag using this object begins immediately unless dragObject() returns 0.
.PP
By default this function returns 0. You might reimplement it and create a QDragObject depending on the selected items.
.PP
See also dropped().
.SH "void QTable::drawContents ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
Draws the table contents on the painter \fIp\fR. This function is optimized so that it only draws the cells inside the \fIcw\fR pixels wide and \fIch\fR pixels high clipping rectangle at position \fIcx\fR, \fIcy\fR.
.PP
Additionally, drawContents() highlights the current cell.
.PP
Reimplemented from QScrollView.
.SH "void QTable::dropped ( QDropEvent * e )\fC [signal]\fR"
This signal is emitted when a drop event occurred on the table.
.PP
\fIe\fR contains information about the drop.
.SH "void QTable::editCell ( int row, int col, bool replace = FALSE )\fC [virtual slot]\fR"
Starts editing the cell at \fIrow\fR, \fIcol\fR.
.PP
If \fIreplace\fR is TRUE the content of this cell will be replaced by the content of the editor when editing is finished, i.e. the user will be entering new data; otherwise the current content of the cell (if any) will be modified in the editor.
.PP
See also beginEdit().
.SH "EditMode QTable::editMode () const\fC [protected]\fR"
Returns the current edit mode
.SH "void QTable::endEdit ( int row, int col, bool accept, bool replace )\fC [virtual protected]\fR"
This function is called when in-place editing of the cell at \fIrow\fR, \fIcol\fR is requested to stop.
.PP
If the cell is not being edited or \fIaccept\fR is FALSE the function returns and the cell's contents are left unchanged.
.PP
If \fIaccept\fR is TRUE the content of the editor must be transferred to the relevant cell. If \fIreplace\fR is TRUE the current content of this cell should be replaced by the content of the editor (this means removing the current QTableItem of the cell and creating a new one for the cell). Otherwise (if possible) the content of the editor should just be set to the existing QTableItem of this cell.
.PP
If the cell contents should be replaced or if no QTableItem exists for the cell, setCellContentFromEditor() is called. Otherwise QTableItem::setContentFromEditor() is called on the QTableItem of the cell.
.PP
Finally clearCellWidget() is called to remove the editor widget.
.PP
See also setCellContentFromEditor() and beginEdit().
.SH "void QTable::ensureCellVisible ( int row, int col )"
Scrolls the table until the cell at \fIrow\fR, \fIcol\fR becomes visible.
.SH "FocusStyle QTable::focusStyle () const"
Returns how the current (focus) cell is drawn. See the "focusStyle" property for details.
.SH "void QTable::hideColumn ( int col )\fC [virtual slot]\fR"
Hides column \fIcol\fR.
.PP
See also showColumn() and hideRow().
.SH "void QTable::hideRow ( int row )\fC [virtual slot]\fR"
Hides row \fIrow\fR.
.PP
See also showRow() and hideColumn().
.SH "QHeader * QTable::horizontalHeader () const"
Returns the table's top QHeader.
.PP
This header contains the column labels.
.PP
To modify a column label use QHeader::setLabel(), e.g.
.PP
.nf
.br
horizontalHeader()->setLabel( 0, tr( "File" ) );
.fi
.PP
See also verticalHeader(), setTopMargin() and QHeader.
.PP
Example: table/small-table-demo/main.cpp.
.SH "int QTable::indexOf ( int row, int col ) const\fC [protected]\fR"
Returns a single integer which identifies a particular \fIrow\fR and \fIcol\fR by mapping the 2D table to a 1D array.
.PP
This is useful, for example, if you have a sparse table and want to use a QIntDict to map integers to the cells that are used.
.SH "void QTable::insertColumns ( int col, int count = 1 )\fC [virtual slot]\fR"
Inserts \fIcount\fR empty columns at column \fIcol\fR.
.PP
See also insertRows() and removeColumn().
.SH "void QTable::insertRows ( int row, int count = 1 )\fC [virtual slot]\fR"
Inserts \fIcount\fR empty rows at row \fIrow\fR.
.PP
See also insertColumns() and removeRow().
.SH "void QTable::insertWidget ( int row, int col, QWidget * w )\fC [virtual protected]\fR"
Inserts widget \fIw\fR at \fIrow\fR, \fIcol\fR into the internal datastructure. See the documentation of setCellWidget() for further details.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.SH "bool QTable::isColumnReadOnly ( int col ) const"
Returns whether column \fIcol\fR is read-only.
.PP
Whether a cell in this column is editable or read-only depends on the cell's EditType, and this setting: see QTableItem::EditType.
.PP
See also setColumnReadOnly() and isRowReadOnly().
.SH "bool QTable::isColumnSelected ( int col, bool full = FALSE ) const"
Returns TRUE if column \fIcol\fR is selected; otherwise returns FALSE.
.PP
If \fIfull\fR is FALSE (the default), 'col is selected' means that at least one cell in the column is selected. If \fIfull\fR is TRUE, then 'col is selected' means every cell in the column is selected.
.PP
See also isRowSelected() and isSelected().
.SH "bool QTable::isColumnStretchable ( int col ) const\fC [slot]\fR"
Returns TRUE if column \fIcol\fR is stretchable; otherwise returns FALSE.
.PP
See also setColumnStretchable() and isRowStretchable().
.SH "bool QTable::isEditing () const\fC [protected]\fR"
Returns TRUE if the EditMode is Editing or Replacing. Returns FALSE if the EditMode is NotEditing.
.PP
See also QTable::EditMode.
.SH "bool QTable::isReadOnly () const"
Returns TRUE if the table is read-only; otherwise returns FALSE. See the "readOnly" property for details.
.SH "bool QTable::isRowReadOnly ( int row ) const"
Returns whether row \fIrow\fR is read-only.
.PP
Whether a cell in this row is editable or read-only depends on the cell's EditType, and this setting: see QTableItem::EditType.
.PP
See also setRowReadOnly() and isColumnReadOnly().
.SH "bool QTable::isRowSelected ( int row, bool full = FALSE ) const"
Returns TRUE if row \fIrow\fR is selected; otherwise returns FALSE.
.PP
If \fIfull\fR is FALSE (the default), 'row is selected' means that at least one cell in the row is selected. If \fIfull\fR is TRUE, then 'row is selected' means every cell in the row is selected.
.PP
See also isColumnSelected() and isSelected().
.SH "bool QTable::isRowStretchable ( int row ) const\fC [slot]\fR"
Returns TRUE if row \fIrow\fR is stretchable; otherwise returns FALSE.
.PP
See also setRowStretchable() and isColumnStretchable().
.SH "bool QTable::isSelected ( int row, int col ) const"
Returns TRUE if the cell at \fIrow\fR, \fIcol\fR is selected; otherwise returns FALSE.
.PP
See also isRowSelected() and isColumnSelected().
.SH "QTableItem * QTable::item ( int row, int col ) const\fC [virtual]\fR"
Returns the QTableItem representing the contents of the cell at \fIrow\fR, \fIcol\fR.
.PP
If \fIrow\fR or \fIcol\fR are out of range or no content has been set for this cell, item() returns 0.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.PP
See also setItem().
.SH "int QTable::numCols () const\fC [virtual]\fR"
Returns the number of columns in the table. See the "numCols" property for details.
.PP
Reimplemented in QDataTable.
.SH "int QTable::numRows () const\fC [virtual]\fR"
Returns the number of rows in the table. See the "numRows" property for details.
.PP
Reimplemented in QDataTable.
.SH "int QTable::numSelections () const"
Returns the number of selections.
.PP
See also currentSelection().
.SH "void QTable::paintCell ( QPainter * p, int row, int col, const QRect & cr, bool selected, const QColorGroup & cg )\fC [virtual]\fR"
Paints the cell at \fIrow\fR, \fIcol\fR on the painter \fIp\fR. The painter has already been translated to the cell's origin. \fIcr\fR describes the cell coordinates in the content coordinate system.
.PP
If \fIselected\fR is TRUE the cell is highlighted.
.PP
\fIcg\fR is the colorgroup which should be used to draw the cell content.
.PP
If you want to draw custom cell content, for example right-aligned text, you must either reimplement paintCell(), or subclass QTableItem and reimplement QTableItem::paint() to do the custom drawing.
.PP
If you're using a QTableItem subclass, for example, to store a data structure, then reimplementing QTableItem::paint() may be the best approach. For data you want to draw immediately, e.g. data retrieved from a database, it is probably best to reimplement paintCell(). Note that if you reimplement paintCell, i.e. don't use QTableItems, you will have to reimplement other functions: see the notes on large tables.
.PP
Note that the painter is not clipped by default in order to get maximum efficiency. If you want clipping, use code like this:
.PP
.nf
.br
p->setClipRect( cellRect(row, col), QPainter::CoordPainter );
.br
//... your drawing code
.br
p->setClipping( FALSE );
.br
.fi
.SH "void QTable::paintCell ( QPainter * p, int row, int col, const QRect & cr, bool selected )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Use the other paintCell() function. This function is only included for backwards compatibilty.
.SH "void QTable::paintEmptyArea ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
This function fills the \fIcw\fR pixels wide and \fIch\fR pixels high rectangle starting at position \fIcx\fR, \fIcy\fR with the background color using the painter \fIp\fR.
.PP
paintEmptyArea() is invoked by drawContents() to erase or fill unused areas.
.SH "void QTable::paintFocus ( QPainter * p, const QRect & cr )\fC [virtual]\fR"
Draws the focus rectangle of the current cell (see currentRow(), currentColumn()).
.PP
The painter \fIp\fR is already translated to the cell's origin, while \fIcr\fR specifies the cell's geometry in content coordinates.
.SH "QPixmap QTable::pixmap ( int row, int col ) const\fC [virtual]\fR"
Returns the pixmap set for the cell at \fIrow\fR, \fIcol\fR, or a null-pixmap if the cell contains no pixmap.
.PP
See also setPixmap().
.SH "void QTable::pressed ( int row, int col, int button, const QPoint & mousePos )\fC [signal]\fR"
This signal is emitted when mouse button \fIbutton\fR is pressed. The cell where the event took place is at \fIrow\fR, \fIcol\fR, and the mouse's position is in \fImousePos\fR.
.SH "void QTable::removeColumn ( int col )\fC [virtual slot]\fR"
Removes column \fIcol\fR, and deletes all its cells including any table items and widgets the cells may contain.
.PP
The array passed in has to contain only valid columns (in the range from 0 to numCols() - 1), no duplicates and must be sorted in ascending order.
.PP
See also removeColumns(), hideColumn(), insertColumns() and removeRow().
.SH "void QTable::removeColumns ( const QMemArray<int> & cols )\fC [virtual slot]\fR"
Removes the columns listed in the array \fIcols\fR, and deletes all their cells including any table items and widgets the cells may contain.
.PP
See also removeColumn(), insertColumns() and removeRows().
.SH "void QTable::removeRow ( int row )\fC [virtual slot]\fR"
Removes row \fIrow\fR, and deletes all its cells including any table items and widgets the cells may contain.
.PP
See also hideRow(), insertRows(), removeColumn() and removeRows().
.SH "void QTable::removeRows ( const QMemArray<int> & rows )\fC [virtual slot]\fR"
Removes the rows listed in the array \fIrows\fR, and deletes all their cells including any table items and widgets the cells may contain.
.PP
The array passed in has to contain only valid rows (in the range from 0 to numRows() - 1), no duplicates and must be sorted in ascending order.
.PP
See also removeRow(), insertRows() and removeColumns().
.SH "void QTable::removeSelection ( const QTableSelection & s )\fC [virtual]\fR"
If the table has a selection, \fIs\fR, this selection is removed from the table.
.PP
See also addSelection() and numSelections().
.SH "void QTable::removeSelection ( int num )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Removes selection number \fInum\fR from the table.
.PP
See also numSelections(), addSelection() and clearSelection().
.SH "void QTable::repaintSelections ()"
Repaints all selections
.SH "void QTable::resizeData ( int len )\fC [virtual protected]\fR"
This is called when QTable's internal array needs to be resized to \fIlen\fR elements.
.PP
If you don't use QTableItems you should reimplement this as an empty method to avoid wasting memory. See the notes on large tables for further details.
.SH "int QTable::rowAt ( int y ) const\fC [virtual]\fR"
Returns the number of the row at position \fIy\fR. \fIy\fR must be given in content coordinates.
.PP
See also rowPos() and columnAt().
.SH "int QTable::rowHeight ( int row ) const\fC [virtual]\fR"
Returns the height of row \fIrow\fR.
.PP
See also setRowHeight() and columnWidth().
.PP
Example: table/small-table-demo/main.cpp.
.SH "void QTable::rowHeightChanged ( int row )\fC [virtual protected slot]\fR"
This function should be called whenever the row height of \fIrow\fR has been changed. It updates the geometry of any affected rows and repaints the table to reflect the changes it has made.
.SH "void QTable::rowIndexChanged ( int section, int fromIndex, int toIndex )\fC [virtual protected slot]\fR"
This function is called when the order of the rows is to be changed, i.e. the user moved the row header section \fIsection\fR from \fIfromIndex\fR to \fItoIndex\fR.
.PP
If you want to change the order programmatically, call swapRows() or swapColumns();
.PP
See also QHeader::indexChange() and columnIndexChanged().
.SH "bool QTable::rowMovingEnabled () const"
Returns TRUE if rows can be moved by the user; otherwise returns FALSE. See the "rowMovingEnabled" property for details.
.SH "int QTable::rowPos ( int row ) const\fC [virtual]\fR"
Returns the y-coordinate of the row \fIrow\fR in content coordinates.
.PP
See also rowAt() and columnPos().
.SH "QTableSelection QTable::selection ( int num ) const"
Returns selection number \fInum\fR, or an empty QTableSelection if \fInum\fR is out of range (see QTableSelection::isNull()).
.SH "void QTable::selectionChanged ()\fC [signal]\fR"
This signal is emitted whenever a selection changes.
.PP
See also QTableSelection.
.SH "SelectionMode QTable::selectionMode () const"
Returns the current selection mode. See the "selectionMode" property for details.
.SH "void QTable::setCellContentFromEditor ( int row, int col )\fC [virtual protected]\fR"
This function is called to replace the contents of the cell at \fIrow\fR, \fIcol\fR with the contents of the cell's editor. If a QTableItem already exists for this cell, it is removed first (see clearCell()).
.PP
If for example, you want to create different QTableItems depending on the contents of the editor, you might reimplement this function.
.PP
If you want to work without QTableItems, you will need to reimplement this function to save the data the user entered into your data structure. (See the notes on large tables.)
.PP
See also QTableItem::setContentFromEditor() and createEditor().
.SH "void QTable::setCellWidget ( int row, int col, QWidget * e )\fC [virtual]\fR"
Sets the widget \fIe\fR to the cell at \fIrow\fR, \fIcol\fR and takes care of placing and resizing the widget when the cell geometry changes.
.PP
By default widgets are inserted into a vector with numRows() * numCols() elements. In very large tables you will probably want to store the widgets in a data structure that consumes less memory (see the notes on large tables). To support the use of your own data structure this function calls insertWidget() to add the widget to the internal data structure. To use your own data structure reimplement insertWidget(), cellWidget() and clearCellWidget().
.PP
Cell widgets are created dynamically with the 'new' operator. The cell widgets are destroyed automatically once the table is destroyed; the table takes ownership of the widget when using setCellWidget.
.SH "void QTable::setColumnMovingEnabled ( bool b )\fC [virtual slot]\fR"
Sets whether columns can be moved by the user to \fIb\fR. See the "columnMovingEnabled" property for details.
.SH "void QTable::setColumnReadOnly ( int col, bool ro )\fC [virtual slot]\fR"
If \fIro\fR is TRUE, column \fIcol\fR is set to be read-only; otherwise the column is set to be editable.
.PP
Whether a cell in this column is editable or read-only depends on the cell's EditType, and this setting: see QTableItem::EditType.
.PP
See also isColumnReadOnly(), setRowReadOnly() and readOnly.
.SH "void QTable::setColumnStretchable ( int col, bool stretch )\fC [virtual slot]\fR"
If \fIstretch\fR is TRUE, column \fIcol\fR is set to be stretchable; otherwise column \fIcol\fR is set to be unstretchable.
.PP
If the table widget's width decreases or increases stretchable columns will grow narrower or wider to fit the space available as completely as possible. The user cannot manually resize stretchable columns.
.PP
See also isColumnStretchable(), setRowStretchable() and adjustColumn().
.SH "void QTable::setColumnWidth ( int col, int w )\fC [virtual slot]\fR"
Resizes column \fIcol\fR to be \fIw\fR pixels wide.
.PP
See also columnWidth() and setRowHeight().
.PP
Reimplemented in QDataTable.
.SH "void QTable::setCurrentCell ( int row, int col )\fC [virtual slot]\fR"
Moves the focus to the cell at \fIrow\fR, \fIcol\fR.
.PP
See also currentRow() and currentColumn().
.SH "void QTable::setDragEnabled ( bool b )\fC [virtual slot]\fR"
If \fIb\fR is TRUE, the table starts a drag (see dragObject()) when the user presses and moves the mouse on a selected cell.
.SH "void QTable::setEditMode ( EditMode mode, int row, int col )\fC [protected]\fR"
Sets the current edit mode to \fImode\fR, the current edit row to \fIrow\fR and the current edit column to \fIcol\fR.
.PP
See also EditMode.
.SH "void QTable::setFocusStyle ( FocusStyle fs )\fC [virtual]\fR"
Sets how the current (focus) cell is drawn to \fIfs\fR. See the "focusStyle" property for details.
.SH "void QTable::setItem ( int row, int col, QTableItem * item )\fC [virtual]\fR"
Inserts the table item \fIitem\fR into the table at row \fIrow\fR, column \fIcol\fR, and repaints the cell. If a table item already exists in this cell it is deleted and replaced with \fIitem\fR. The table takes ownership of the table item.
.PP
If you don't use QTableItems you may need to reimplement this function: see the notes on large tables.
.PP
See also item() and takeItem().
.PP
Example: table/small-table-demo/main.cpp.
.SH "void QTable::setLeftMargin ( int m )\fC [virtual slot]\fR"
Sets the left margin to be \fIm\fR pixels wide.
.PP
The verticalHeader(), which displays row labels, occupies this margin.
.PP
In a arabic or hebrew localization, the verticalHeader() will appear on the right side of the table, and this call will set the right margin.
.PP
See also leftMargin(), setTopMargin() and verticalHeader().
.SH "void QTable::setNumCols ( int r )\fC [virtual slot]\fR"
Sets the number of columns in the table to \fIr\fR. See the "numCols" property for details.
.SH "void QTable::setNumRows ( int r )\fC [virtual slot]\fR"
Sets the number of rows in the table to \fIr\fR. See the "numRows" property for details.
.SH "void QTable::setPixmap ( int row, int col, const QPixmap & pix )\fC [virtual]\fR"
Sets the pixmap in the cell at \fIrow\fR, \fIcol\fR to \fIpix\fR.
.PP
If the cell does not contain a table item a QTableItem is created with an EditType of \fCOnTyping\fR, otherwise the existing table item's pixmap (if any) is replaced with \fIpix\fR.
.PP
Note that QComboTableItems and QCheckTableItems don't show pixmaps.
.PP
See also pixmap(), setText(), setItem() and QTableItem::setPixmap().
.PP
Example: table/small-table-demo/main.cpp.
.SH "void QTable::setReadOnly ( bool b )\fC [virtual slot]\fR"
Sets whether the table is read-only to \fIb\fR. See the "readOnly" property for details.
.SH "void QTable::setRowHeight ( int row, int h )\fC [virtual slot]\fR"
Resizes row \fIrow\fR to be \fIh\fR pixels high.
.PP
See also rowHeight() and setColumnWidth().
.SH "void QTable::setRowMovingEnabled ( bool b )\fC [virtual slot]\fR"
Sets whether rows can be moved by the user to \fIb\fR. See the "rowMovingEnabled" property for details.
.SH "void QTable::setRowReadOnly ( int row, bool ro )\fC [virtual slot]\fR"
If \fIro\fR is TRUE, row \fIrow\fR is set to be read-only; otherwise the row is set to be editable.
.PP
Whether a cell in this row is editable or read-only depends on the cell's EditType, and this setting: see QTableItem::EditType.
.PP
See also isRowReadOnly(), setColumnReadOnly() and readOnly.
.SH "void QTable::setRowStretchable ( int row, bool stretch )\fC [virtual slot]\fR"
If \fIstretch\fR is TRUE, row \fIrow\fR is set to be stretchable; otherwise row \fIrow\fR is set to be unstretchable.
.PP
If the table widget's height decreases or increases stretchable rows will grow shorter or taller to fit the space available as completely as possible. The user cannot manually resize stretchable rows.
.PP
See also isRowStretchable() and setColumnStretchable().
.SH "void QTable::setSelectionMode ( SelectionMode mode )\fC [virtual]\fR"
Sets the current selection mode to \fImode\fR. See the "selectionMode" property for details.
.SH "void QTable::setShowGrid ( bool b )\fC [virtual slot]\fR"
Sets whether the table's grid is displayed to \fIb\fR. See the "showGrid" property for details.
.SH "void QTable::setSorting ( bool b )\fC [virtual slot]\fR"
Sets whether a click on the header of a column sorts that column to \fIb\fR. See the "sorting" property for details.
.SH "void QTable::setText ( int row, int col, const QString & text )\fC [virtual]\fR"
Sets the text in the cell at \fIrow\fR, \fIcol\fR to \fItext\fR.
.PP
If the cell does not contain a table item a QTableItem is created with an EditType of \fCOnTyping\fR, otherwise the existing table item's text (if any) is replaced with \fItext\fR.
.PP
See also text(), setPixmap(), setItem() and QTableItem::setText().
.PP
Example: table/small-table-demo/main.cpp.
.SH "void QTable::setTopMargin ( int m )\fC [virtual slot]\fR"
Sets the top margin to be \fIm\fR pixels high.
.PP
The horizontalHeader(), which displays column labels, occupies this margin.
.PP
See also topMargin() and setLeftMargin().
.SH "void QTable::showColumn ( int col )\fC [virtual slot]\fR"
Shows column \fIcol\fR.
.PP
See also hideColumn() and showRow().
.SH "bool QTable::showGrid () const"
Returns TRUE if the table's grid is displayed; otherwise returns FALSE. See the "showGrid" property for details.
.SH "void QTable::showRow ( int row )\fC [virtual slot]\fR"
Shows row \fIrow\fR.
.PP
See also hideRow() and showColumn().
.SH "void QTable::sortColumn ( int col, bool ascending = TRUE, bool wholeRows = FALSE )\fC [virtual]\fR"
Sorts column \fIcol\fR. If \fIascending\fR is TRUE the sort is in ascending order, otherwise the sort is in descending order.
.PP
If \fIwholeRows\fR is TRUE, entire rows are sorted using swapRows(); otherwise only cells in the column are sorted using swapCells().
.PP
Note that if you are not using QTableItems you will need to reimplement swapRows() and swapCells(). (See the notes on large tables.)
.PP
See also swapRows().
.PP
Example: table/statistics/statistics.cpp.
.PP
Reimplemented in QDataTable.
.SH "bool QTable::sorting () const"
Returns TRUE if a click on the header of a column sorts that column; otherwise returns FALSE. See the "sorting" property for details.
.SH "void QTable::startDrag ()\fC [virtual protected]\fR"
Starts a drag.
.PP
Usually you don't need to call or reimplement this function yourself.
.PP
See also dragObject().
.SH "void QTable::swapCells ( int row1, int col1, int row2, int col2 )\fC [virtual slot]\fR"
Swaps the contents of the cell at \fIrow1\fR, \fIcol1\fR with the contents of the cell at \fIrow2\fR, \fIcol2\fR.
.PP
This function is also called when the table is sorted.
.PP
If you don't use QTableItems and want your users to be able to swap cells, you will need to reimplement this function. (See the notes on large tables.)
.PP
See also swapColumns() and swapRows().
.SH "void QTable::swapColumns ( int col1, int col2, bool swapHeader = FALSE )\fC [virtual slot]\fR"
Exchanges \fIcol1\fR with \fIcol2\fR.
.PP
This function is used to swap the positions of two columns. It is called when the user changes the order of columns (see setColumnMovingEnabled(), and when columns are sorted.
.PP
If you don't use QTableItems and want your users to be able to swap columns you will need to reimplement this function. (See the notes on large tables.)
.PP
If \fIswapHeader\fR is TRUE, also the header contents of the columns is swapped.
.PP
See also swapCells().
.SH "void QTable::swapRows ( int row1, int row2, bool swapHeader = FALSE )\fC [virtual slot]\fR"
Swaps data of \fIrow1\fR and \fIrow2\fR.
.PP
This function is used to swap the positions of two rows. It is called when the user changes the order of rows (see setRowMovingEnabled()), and when rows are sorted.
.PP
If you don't use QTableItems and want your users to be able to swap rows, e.g. for sorting, you will need to reimplement this function. (See the notes on large tables.)
.PP
If \fIswapHeader\fR is TRUE, also the header contents of the rows is swapped.
.PP
See also swapColumns() and swapCells().
.SH "void QTable::takeItem ( QTableItem * i )\fC [virtual]\fR"
Takes the table item \fIi\fR out of the table. This function does \fInot\fR delete the table item. You must either delete the table item yourself or put it into a table (using setItem()) which will then take ownership of it.
.PP
Use this function if you want to move an item from one cell in a table to another, or to move an item from one table to another, reinserting the item with setItem().
.PP
If you want to exchange two cells use swapCells().
.SH "QString QTable::text ( int row, int col ) const\fC [virtual]\fR"
Returns the text in cell at \fIrow\fR, \fIcol\fR, or a null string if the relevant item does not exist or has no text.
.PP
See also setText() and setPixmap().
.PP
Reimplemented in QDataTable.
.SH "void QTable::updateCell ( int row, int col )"
Repaints the cell at \fIrow\fR, \fIcol\fR.
.SH "void QTable::valueChanged ( int row, int col )\fC [signal]\fR"
This signal is emitted when the user changed the value in the cell at \fIrow\fR, \fIcol\fR.
.SH "QHeader * QTable::verticalHeader () const"
Returns the table's left QHeader.
.PP
This header contains the row labels.
.PP
See also horizontalHeader(), setLeftMargin() and QHeader.
.SS "Property Documentation"
.SH "bool columnMovingEnabled"
This property holds whether columns can be moved by the user.
.PP
The default is FALSE.
.PP
See also rowMovingEnabled.
.PP
Set this property's value with setColumnMovingEnabled() and get this property's value with columnMovingEnabled().
.SH "FocusStyle focusStyle"
This property holds how the current (focus) cell is drawn.
.PP
The default style is SpreadSheet.
.PP
See also QTable::FocusStyle.
.PP
Set this property's value with setFocusStyle() and get this property's value with focusStyle().
.SH "int numCols"
This property holds the number of columns in the table.
.PP
Set this property's value with setNumCols() and get this property's value with numCols().
.PP
See also numRows.
.SH "int numRows"
This property holds the number of rows in the table.
.PP
Set this property's value with setNumRows() and get this property's value with numRows().
.PP
See also numCols.
.SH "bool readOnly"
This property holds whether the table is read-only.
.PP
Whether a cell in the table is editable or read-only depends on the cell's EditType, and this setting: see QTableItem::EditType.
.PP
See also QWidget::enabled, setColumnReadOnly() and setRowReadOnly().
.PP
Set this property's value with setReadOnly() and get this property's value with isReadOnly().
.SH "bool rowMovingEnabled"
This property holds whether rows can be moved by the user.
.PP
The default is FALSE.
.PP
See also columnMovingEnabled.
.PP
Set this property's value with setRowMovingEnabled() and get this property's value with rowMovingEnabled().
.SH "SelectionMode selectionMode"
This property holds the current selection mode.
.PP
The default mode is Multi which allows the user to select multiple ranges of cells.
.PP
See also SelectionMode and selectionMode.
.PP
Set this property's value with setSelectionMode() and get this property's value with selectionMode().
.SH "bool showGrid"
This property holds whether the table's grid is displayed.
.PP
The grid is shown by default.
.PP
Set this property's value with setShowGrid() and get this property's value with showGrid().
.SH "bool sorting"
This property holds whether a click on the header of a column sorts that column.
.PP
Set this property's value with setSorting() and get this property's value with sorting().
.PP
See also sortColumn().
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qtable.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in
.BR http://doc.trolltech.com/bughowto.html .
Good bug reports help us to help you. Thank you.
.P
The definitive Qt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using Qt Assistant or with
a web browser. This man page is provided as a convenience for those
users who prefer man pages, although this format is not officially
supported by Trolltech.
.P
If you find errors in this manual page, please report them to
.BR qt-bugs@trolltech.com .
Please include the name of the manual page (qtable.3qt) and the Qt
version (3.0.3).
|