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
|
/****************************************************************************
** $Id: qabstractlayout.cpp,v 2.60.2.5 1999/07/08 10:57:03 paul Exp $
**
** Implementation of the abstract layout base class
**
** Created : 960416
**
** Copyright (C) 1992-1999 Troll Tech AS. All rights reserved.
**
** This file is part of the Qt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Troll Tech AS of Norway and appearing in the file
** LICENSE.QPL included in the packaging of this file.
**
** Licensees holding valid Qt Professional Edition licenses may use this
** file in accordance with the Qt Professional Edition License Agreement
** provided with the Qt Professional Edition.
**
** See http://www.troll.no/pricing.html or email sales@troll.no for
** information about the Professional Edition licensing, or see
** http://www.troll.no/qpl/ for QPL licensing information.
**
*****************************************************************************/
#include "qabstractlayout.h"
#include "qwidget.h"
#include "qmenubar.h"
#include "qapplication.h"
/*!
\class QLayoutItem qabstractlayout.h
\brief The abstract items which a QLayout manipulates.
For custom layouts.
\sa QLayout
*/
/*!
\class QSpacerItem qabstractlayout.h
\brief A QLayoutItem that represents blank space.
For custom layouts.
\sa QLayout
*/
/*!
\class QWidgetItem qabstractlayout.h
\brief A QLayoutItem that represents widget.
For custom layouts.
\sa QLayout
*/
/*! \fn QLayoutItem::QLayoutItem (int alignment)
Constructs a layout item with alignment \a alignment.
Alignment may not be supported by all subclasses.
*/
/*! \fn int QLayoutItem::alignment () const
Returns the alignment of this item.
*/
/*! Sets the alignment of this item to \a a.
*/
void QLayoutItem::setAlignment( int a )
{
align = a;
}
/*! \fn QSize QLayoutItem::maximumSize () const
Implemented in subclasses to return the maximum size of this item.
*/
/*! \fn QSize QLayoutItem::minimumSize () const
Implemented in subclasses to return the minimum size of this item.
*/
/*! \fn QSize QLayoutItem::sizeHint () const
Implemented in subclasses to return the preferred size of this item.
*/
/*! \fn QSizePolicy::ExpandData QLayoutItem::expanding () const
Implemented in subclasses to return whether this item "wants" to expand.
*/
/*! \fn void QLayoutItem::setGeometry (const QRect &r )
Implemented in subclasses to set this item's geometry to \a r.
*/
/*!
\fn QRect QLayoutItem::geometry() const
Returns the rectangle covered by this layout item.
*/
/*! \fn virtual bool QLayoutItem::isEmpty () const
Implemented in subclasses to return whether this item is empty,
i.e. whether it contains any widgets.
*/
/*! \fn QSpacerItem::QSpacerItem (int w, int h, QSizePolicy::SizeType hData=QSizePolicy::Minimum, QSizePolicy::SizeType vData= QSizePolicy::Minimum)
Constructs a spacer item with preferred width \a w, preferred height
\a h, horizontal size policy \a hData and vertical size policy
\a vData.
The default values gives a gap that is able to stretch,
if nothing else wants the space.
*/
/*!
Changes this spacer item to have preferred width \a w, preferred height
\a h, horizontal size policy \a hData and vertical size policy
\a vData.
The default values gives a gap that is able to stretch,
if nothing else wants the space.
*/
void QSpacerItem::changeSize( int w, int h, QSizePolicy::SizeType hData,
QSizePolicy::SizeType vData )
{
width = w;
height = h;
sizeP = QSizePolicy( hData, vData );
}
/*! \fn QWidgetItem::QWidgetItem (QWidget * w)
Creates an item containing \a w.
*/
/*!
Destructs the QLayoutItem.
*/
QLayoutItem::~QLayoutItem()
{
}
/*!
Invalidates any cached information in this layout item.
*/
void QLayoutItem::invalidate()
{
}
/*!
If this item is a QLayout, return it as a QLayout, otherwise return 0.
This function provides type-safe casting.
*/
QLayout * QLayoutItem::layout()
{
return 0;
}
/*!
If this item is a QSpacerItem, return it as a QSpacerItem, otherwise
return 0. This function provides type-safe casting.
*/
QSpacerItem * QLayoutItem::spacerItem()
{
return 0;
}
/*!
\reimp
*/
QLayout * QLayout::layout()
{
return this;
}
/*!
\reimp
*/
QSpacerItem * QSpacerItem::spacerItem()
{
return this;
}
/*!
If this item is a QWidgetItem, the managed widget is returned.
The default implementation returns 0;
*/
QWidget * QLayoutItem::widget()
{
return 0;
}
/*!
Returns the widget managed by this item.
*/
QWidget * QWidgetItem::widget()
{
return wid;
}
/*!
Returns TRUE if this layout's preferred height depends on its
width. The default implementation returns FALSE;
Reimplement this function in layout managers that support
height for width.
\sa heightForWidth(), QWidget::heightForWidth()
*/
bool QLayoutItem::hasHeightForWidth() const
{
return FALSE;
}
/*!
Returns an iterator over this item's QLayoutItem children.
The default implementation returns an empty iterator.
Reimplement this function in subclasses that can have
children.
*/
QLayoutIterator QLayoutItem::iterator()
{
return QLayoutIterator( 0 );
}
/*!
Returns the preferred height for this layout item, given the width
\a w.
The default implementation returns -1, indicating that the preferred
height is independent of the width of the item. Using the function
hasHeightForWidth() will typically be much faster than calling this
function and testing for -1.
Reimplement this function in layout managers that support
height for width. A typical implementation will look like this:
\code
int MyLayout::heightForWidth( int w ) const
{
if ( cache_dirty || cached_width != w ) {
//Not all C++ compilers support "mutable" yet:
MyLayout * mthis = (MyLayout*)this;
int h = calculateHeightForWidth( w );
mthis->cached_hfw = h;
return h;
}
return cached_hfw;
}
\endcode
Caching is strongly recommended, without it layout will take
exponential time. \sa hasHeightForWidth()
*/
int QLayoutItem::heightForWidth( int ) const
{
return -1;
}
static const int HorAlign = Qt::AlignHCenter | Qt::AlignRight | Qt::AlignLeft;
static const int VerAlign = Qt::AlignVCenter | Qt::AlignBottom | Qt::AlignTop;
static QSize smartMinSize( QWidget *w )
{
QSize s(0,0);
if ( w->layout() ) {
s = w->layout()->totalMinimumSize();
} else {
if ( w->sizePolicy().mayShrinkHorizontally() )
s.setWidth( w->minimumSizeHint().width() );
else
s.setWidth( w->sizeHint().width() );
if ( w->sizePolicy().mayShrinkVertically() )
s.setHeight( w->minimumSizeHint().height() );
else
s.setHeight( w->sizeHint().height() );
}
QSize min = w->minimumSize();
if ( min.width() > 0 )
s.setWidth( min.width() );
if ( min.height() > 0 )
s.setHeight( min.height() );
return s;
}
//returns the max size of a box containing \a w with alignment \a align.
static QSize smartMaxSize( QWidget *w, int align = 0 )
{
if ( align & HorAlign && align & VerAlign )
return QSize( QWIDGETSIZE_MAX, QWIDGETSIZE_MAX );
QSize s = w->maximumSize();
if ( s.width() == QWIDGETSIZE_MAX && !(align&HorAlign) )
if ( !w->sizePolicy().mayGrowHorizontally() )
s.setWidth( w->sizeHint().width() );
if ( s.height() == QWIDGETSIZE_MAX && !(align&VerAlign) )
if ( !w->sizePolicy().mayGrowVertically() )
s.setHeight( w->sizeHint().height() );
s = s.expandedTo( w->minimumSize() );
if (align & HorAlign )
s.setWidth( QWIDGETSIZE_MAX );
if (align & VerAlign )
s.setHeight( QWIDGETSIZE_MAX );
return s;
}
/*!
This function stores \a r, so it can be returned by geometry().
*/
void QSpacerItem::setGeometry( const QRect &r )
{
rect = r;
}
/*!
Sets the geometry of this item's widget to be contained within \a r,
taking alignment and maximum size into account.
*/
void QWidgetItem::setGeometry( const QRect &r )
{
QSize s = r.size().boundedTo( smartMaxSize( wid ) );
int x = r.x();
int y = r.y();
if ( align & (HorAlign|VerAlign) ) {
QSize pref = wid->sizeHint().expandedTo( wid->minimumSize() ); //###
if ( align & HorAlign )
s.setWidth( QMIN( s.width(), pref.width() ) );
if ( align & VerAlign ) {
if ( hasHeightForWidth() )
s.setHeight( QMIN( s.height(), heightForWidth(s.width()) ) );
else
s.setHeight( QMIN( s.height(), pref.height() ) );
}
}
if ( align & Qt::AlignRight )
x = x + ( r.width() - s.width() );
else if ( !(align & Qt::AlignLeft) )
x = x + ( r.width() - s.width() ) / 2;
if ( align & Qt::AlignBottom )
y = y + ( r.height() - s.height() );
else if ( !(align & Qt::AlignTop) )
y = y + ( r.height() - s.height() ) / 2;
if ( !wid->testWState( QWidget::WState_ForceHide ) )
wid->setGeometry( x, y, s.width(), s.height() );
}
/*!
\reimp
*/
QRect QSpacerItem::geometry() const
{
return rect;
}
/*!
\reimp
*/
QRect QWidgetItem::geometry() const
{
return wid->geometry();
}
/*!
\reimp
*/
QRect QLayout::geometry() const
{
return rect;
}
/*!
\reimp
*/
bool QWidgetItem::hasHeightForWidth() const
{
if ( isEmpty() )
return FALSE;
if ( wid->layout() )
return wid->layout()->hasHeightForWidth();
return wid->sizePolicy().hasHeightForWidth();
}
/*!
\reimp
*/
int QWidgetItem::heightForWidth( int w ) const
{
if ( wid->layout() )
return wid->layout()->totalHeightForWidth( w );
return wid->heightForWidth( w );
}
/*!
Returns whether this space item is expanding.
*/
QSizePolicy::ExpandData QSpacerItem::expanding() const
{
return sizeP.expanding();
}
/*!
Returns whether this item's widget is expanding.
*/
QSizePolicy::ExpandData QWidgetItem::expanding() const
{
if ( isEmpty() || align&HorAlign && align&VerAlign )
return QSizePolicy::NoDirection;
int e = wid->layout() ? wid->layout()->expanding()
: wid->sizePolicy().expanding();
if ( align&HorAlign )
e = e & ~QSizePolicy::Horizontal;
else if ( align&VerAlign )
e = e & ~QSizePolicy::Vertical;
return (QSizePolicy::ExpandData)e;
}
/*!
Returns the minimum size of this space item.
*/
QSize QSpacerItem::minimumSize() const
{
return QSize( sizeP.mayShrinkHorizontally() ? 0 : width,
sizeP.mayShrinkVertically() ? 0 : height );;
}
/*!
Returns the minimum size of this item.
*/
QSize QWidgetItem::minimumSize() const
{
if ( isEmpty() )
return QSize(0,0);
return smartMinSize( wid );
}
/*!
Returns the maximum size of this space item.
*/
QSize QSpacerItem::maximumSize() const
{
return QSize( sizeP.mayGrowHorizontally() ? QWIDGETSIZE_MAX : width,
sizeP.mayGrowVertically() ? QWIDGETSIZE_MAX : height );
}
/*!
Returns the maximum size of this item.
*/
QSize QWidgetItem::maximumSize() const
{
return smartMaxSize( wid, align );
}
/*!
Returns the preferred size of this space item.
*/
QSize QSpacerItem::sizeHint() const
{
return QSize( width, height );
}
///*!
// Invalidates any cached information.
// */
//void QWidgetItem::invalidate()
//{
// cachedSizeHint = QSize();
//}
/*!
Returns the preferred size of this item.
*/
QSize QWidgetItem::sizeHint() const
{
//if ( cachedSizeHint.isValid() )
// return cachedSizeHint;
QSize s;
if ( isEmpty() )
s = QSize(0,0);
else if ( wid->layout() )
s = QSize( QMAX( wid->sizeHint().width(), wid->minimumWidth() ),
QMAX( wid->sizeHint().height(), wid->minimumHeight() ));
else s = QSize( wid->minimumWidth() == 0 ?
wid->sizeHint().width() : wid->minimumWidth(),
wid->minimumHeight() == 0 ?
wid->sizeHint().height() : wid->minimumHeight() );
//((QWidgetItem*)this)->cachedSizeHint = s; //mutable hack
return s;
}
/*!
Returns TRUE, since a space item never contains widgets.
*/
bool QSpacerItem::isEmpty() const
{
return TRUE;
}
/*!
Returns TRUE, if the widget has been hidden, FALSE otherwise.
*/
bool QWidgetItem::isEmpty() const
{
return wid->testWState( QWidget::WState_ForceHide );
}
/*!
\class QLayout qabstractlayout.h
\brief The QLayout class is the base class of geometry specifiers.
\ingroup geomanagement
This is an abstract base class. The concrete layout managers
QBoxLayout and QGridLayout inherit from this one.
Most users of Q*Layout are likely to use some of the basic functions
provided by QLayout, such as setMenuBar(), which is necessary
to manage a menu bar because of the special properties of menu bars,
and freeze(), which allows you to freeze the widget's size and
layout.
To make your own layout manager, make a subclass of QGLayoutIterator
and implement the functions addItem(), sizeHint(), setGeometry() and
iterator(). You should also implement minimumSize(), otherwise your
layout will be resized to zero size if there is little space. To
support children whose height depend on their widths, implement
hasHeightForWidth() and heightForWidth().
See the <a href="customlayout.html">custom layout page</a> for an in-depth
description and the <a href="layout.html">layout overview page</a>
for an introduction.
Geometry management stops when the layout manager is deleted.
*/
/*!
Creates a new top-level QLayout with main widget \a
parent. \a parent may not be 0.
\a border is the number of pixels between the edge of the widget and
the managed children. \a space sets the value of spacing(), which
gives the spacing between widgets. The default value for \a space
is -1, which means that the value of \a border is used.
\a name is the internal object name
There can only be one top-level layout for a widget. It is returned
by QWidget::layout()
*/
QLayout::QLayout( QWidget *parent, int border, int space, const char *name )
: QObject( parent, name )
{
menubar = 0;
topLevel = FALSE;
frozen = FALSE;
autoMinimum = FALSE;
autoNewChild = FALSE;
activated = FALSE;
if ( parent ) {
if ( parent->layout() ) {
qWarning( "QLayout \"%s\" added to %s \"%s\","
" which already had a layout.", QObject::name(),
parent->className(), parent->name() );
} else {
topLevel = TRUE;
if ( parent->isTopLevel() )
autoMinimum = TRUE;
parent->installEventFilter( this );
setWidgetLayout( parent, this );
}
}
outsideBorder = border;
if ( space < 0 )
insideSpacing = border;
else
insideSpacing = space;
installEventFilter( this );//###binary compatibility.
}
/*!
Constructs a new child QLayout, and places it inside
\a parentLayout, using the default placement defined by
addItem().
If \a space is -1, this QLayout inherits \a parentLayout's
spacing(), otherwise \a space is used.
*/
QLayout::QLayout( QLayout *parentLayout, int space, const char *name )
: QObject( parentLayout, name )
{
menubar = 0;
topLevel = FALSE;
insideSpacing = space < 0 ? parentLayout->insideSpacing : space;
parentLayout->addItem( this );
installEventFilter( this );//###binary compatibility.
}
/*!
Constructs a new child QLayout,
If \a space is -1, this QLayout inherits its parent's
spacing(), otherwise \a space is used.
This layout has to be inserted into another layout before geometry
management will work.
*/
QLayout::QLayout( int space, const char *name )
: QObject( 0, name )
{
menubar = 0;
topLevel = FALSE;
insideSpacing = space;
installEventFilter( this );//###binary compatibility.
}
/*! \fn void QLayout::addItem (QLayoutItem *item )
Implemented in subclasses to add \a item. How it is
added is specific to each subclass.
Note that the ownership of \a item is transferred to
the layout, and it is the layout's responsibility to
delete it.
*/
/*! \fn QLayoutIterator iterator();
Implemented in subclasses to return an iterator that iterates over
the children of this layout.
A typical implementation will be:
\code
QLayoutIterator MyLayout::iterator()
{
QGLayoutIterator *i = new MyLayoutIterator( internal_data );
return QLayoutIterator( i );
}
\endcode
where MyLayoutIterator is a subclass of QGLayoutIterator.
*/
/*!
\fn void QLayout::add (QWidget * w)
Adds \a w to this layout in a manner specific to the layout. This
function uses addItem.
*/
/*!
\fn QString QLayout::name() const
Returns the internal object name.
*/
/*!
\fn QMenuBar* QLayout::menuBar () const
Returns the menu bar set for this layout, or a null pointer if no
menu bar is set.
*/
/*!
\fn bool QLayout::isTopLevel () const
Returns TRUE if this layout is a top level layout, i.e. not a child
of another layout.
*/
/*!
\fn int QLayout::margin () const
returns the width of the outside border of the layout.
\sa spacing() setMargin()
*/
/*!
\fn int QLayout::defaultBorder() const
\obsolete
Returns the internal spacing for the geometry manager. Replaced by
spacing()
*/
/*!
\fn int QLayout::spacing() const
Returns the spacing between widgets inside the layout.
\sa margin() setSpacing()
*/
/*!
Sets the outside border of the layout to \a border.
\sa margin() setSpacing()
*/
void QLayout::setMargin( int border )
{
outsideBorder = border;
invalidate();
if ( mainWidget() ) {
QEvent *lh = new QEvent( QEvent::LayoutHint );
QApplication::postEvent( mainWidget(), lh );
}
}
/*!
Sets the internal spacing of the layout to \a space.
\sa spacing() setMargin()
*/
//##### bool recursive = FALSE ????
void QLayout::setSpacing( int space )
{
insideSpacing = space;
invalidate();
if ( mainWidget() ) {
QEvent *lh = new QEvent( QEvent::LayoutHint );
QApplication::postEvent( mainWidget(), lh );
}
}
/*!
Returns the main widget (parent widget) of this layout, or 0 if this
layout is a sub-layout which is not yet inserted.
*/
QWidget * QLayout::mainWidget()
{
if ( !topLevel ) {
if ( parent() ) {
ASSERT( parent()->inherits( "QLayout" ) );
return ((QLayout*)parent())->mainWidget();
} else {
return 0;
}
} else {
ASSERT( parent() && parent()->isWidgetType() );
return (QWidget*)parent();
}
}
/*!
Returns TRUE if this layout is empty.
The default implementation returns FALSE.
*/
bool QLayout::isEmpty() const
{
return FALSE; //### should check
}
/*!
Sets \a w's layout to \a l.
*/
void QLayout::setWidgetLayout( QWidget *w, QLayout *l )
{
w->setLayout( l );
}
/*! \fn QSize QLayout::minSize()
Returns the minimum size this layout needs. Does not include what's
needed by margin() or menuBar().
*/
/*!
This function is reimplemented in subclasses to
perform layout.
The default implementation maintains the geometry() information.
Reimplementors must call this function.
*/
void QLayout::setGeometry( const QRect &r )
{
rect = r;
}
static bool removeWidget( QLayoutItem *lay, QWidget *w )
{
QLayoutIterator it = lay->iterator();
QLayoutItem *child;
while ( (child = it.current() ) ) {
if ( child->widget() == w ) {
it.deleteCurrent();
lay->invalidate();
return TRUE;
} else if ( removeWidget( child, w ) ) {
lay->invalidate();
return TRUE;
}
++it;
}
return FALSE;
}
/*!
Performs child widget layout when the parent widget is resized.
Also handles removal of widgets and child layouts.
*/
bool QLayout::eventFilter( QObject *o, QEvent *e )
{
if ( o == this && e->type() == QEvent::ChildRemoved ) {
//we cannot implement childEvent() or event() because of
//###binary compatibility.
QChildEvent *c = (QChildEvent*)e;
QLayoutIterator it = iterator();
QLayoutItem *item;
while ( (item = it.current() ) ) {
if ( item == (QLayout*)c->child() ) {
it.takeCurrent();
invalidate();
return FALSE;
}
++it;
}
return FALSE;
}
if ( !o->isWidgetType() )
return FALSE;
// QWidget *p = (QWidget*)o;
// if ( p != parentWidget() ) return FALSE;
switch ( e->type() ) {
case QEvent::Resize: {
QResizeEvent *r = (QResizeEvent*)e;
int mbh = 0;
if ( menubar && !menubar->testWState(WState_ForceHide) )
mbh = menubar->heightForWidth( r->size().width() );
if ( activated )
setGeometry( QRect( outsideBorder, mbh + outsideBorder,
r->size().width() - 2*outsideBorder,
r->size().height() - mbh - 2*outsideBorder ) );
else
activate();
break;
}
case QEvent::ChildRemoved: {
QChildEvent *c = (QChildEvent*)e;
if ( c->child()->isWidgetType() ) {
QWidget *w = (QWidget*)c->child();
if ( w == menubar )
menubar = 0;
if ( removeWidget( this, w ) ) {
QEvent *lh = new QEvent( QEvent::LayoutHint );
QApplication::postEvent( o, lh );
}
}
break;
}
case QEvent::ChildInserted:
if ( topLevel && autoNewChild ) {
QChildEvent *c = (QChildEvent*)e;
if ( c->child()->isWidgetType() ) {
QWidget *w = (QWidget*)c->child();
addItem( new QWidgetItem( w ) );
QEvent *lh = new QEvent( QEvent::LayoutHint );
QApplication::postEvent( o, lh );
}
}
break;
case QEvent::LayoutHint:
activate(); //######## Check that LayoutHint events are collapsed
break;
default:
break;
}
return FALSE; // standard event processing
}
/*!
\internal
Also takes margin() and menu bar into account.
*/
int QLayout::totalHeightForWidth( int w ) const
{
int b = topLevel ? 2*outsideBorder : 0;
int h = heightForWidth( w - b ) + b;
if ( menubar )
h += menubar->heightForWidth( w );
return h;
}
/*!
\internal
Also takes margin() and menu bar into account.
*/
QSize QLayout::totalMinimumSize() const
{
int b = topLevel ? 2*outsideBorder : 0;
QSize s = minimumSize();
int h = b;
if ( menubar )
h += menubar->heightForWidth( s.width() );
return s + QSize(b,h);
}
/*!
\internal
Also takes margin() and menu bar into account.
*/
QSize QLayout::totalSizeHint() const
{
int b = topLevel ? 2*outsideBorder : 0;
QSize s = sizeHint();
int h = b;
if ( menubar )
h += menubar->heightForWidth( s.width() );
return s + QSize(b,h);
}
/*!
\internal
Also takes margin() and menu bar into account.
*/
QSize QLayout::totalMaximumSize() const
{
int b = topLevel ? 2*outsideBorder : 0;
QSize s = maximumSize();
int h = b;
if ( menubar )
h += menubar->heightForWidth( s.width() );
if ( isTopLevel() )
s = QSize( QMIN( s.width() + b, QWIDGETSIZE_MAX ),
QMIN( s.height() + h, QWIDGETSIZE_MAX ) );
return s;
}
/*!
Deletes all layout children. Geometry management stops when
a toplevel layout is deleted.
\internal
The layout classes will probably be fatally confused if you delete
a sublayout
*/
QLayout::~QLayout()
{
//note that this function may be called during the QObject destructor,
//when the parent no longer is a QWidget.
if ( isTopLevel() && parent() && parent()->isWidgetType() &&
((QWidget*)parent())->layout() == this )
setWidgetLayout( (QWidget*)parent(), 0 );
}
/*!
Removes and deletes all items in this layout.
*/
void QLayout::deleteAllItems()
{
QLayoutIterator it = iterator();
QLayoutItem *l;
while ( (l=it.takeCurrent()) )
delete l;
}
/*!
This function is called from addLayout functions in subclasses,
to add \a l layout as a sublayout.
*/
void QLayout::addChildLayout( QLayout *l )
{
if ( l->parent() ) {
#if defined(CHECK_NULL)
qWarning( "QLayout::addChildLayout(), layout already has a parent." );
#endif
return;
}
insertChild( l );
if ( l->insideSpacing < 0 )
l->insideSpacing = insideSpacing;
}
/*!
\overload void QLayout::freeze()
Fixes the main widget at its minimum size.
The recommended way is to call setResizeMode( \c Fixed )
*/
/*!
\obsolete
Fixes the size of the main widget and distributes the available
space to the child widgets. For widgets which should not be
resizable, but where a QLayout subclass is used to set up the initial
geometry.
As a special case, freeze(0,0) is equivalent to setResizeMode( \c Fixed )
*/
void QLayout::freeze( int w, int h )
{
if ( w <= 0 || h <= 0 ) {
setResizeMode( Fixed );
} else {
setResizeMode( FreeResize ); // layout will not change min/max size
mainWidget()->setFixedSize( w, h );
}
}
/*!
Makes the geometry manager take account of the menu bar \a w. All
child widgets are placed below the bottom edge of the menu bar.
A menu bar does its own geometry managing, never do addWidget()
on a QMenuBar.
*/
void QLayout::setMenuBar( QMenuBar *w )
{
menubar = w;
}
/*!
\fn QSize QLayout::sizeHint()
Implemented in subclasses to return the preferred size of this layout.
Not including what's needed by margin() or menuBar().
*/
/*!
Returns the minimum size of this layout. This is the smallest size
that the layout can have, while still respecting the specifications.
Does not include what's needed by margin() or menuBar().
The default implementation allows unlimited resizing.
*/
QSize QLayout::minimumSize() const
{
return QSize( 0, 0 );
}
/*!
Returns the maximum size of this layout. This is the largest size
that the layout can have, while still respecting the specifications.
Does not include what's needed by margin() or menuBar().
The default implementation allows unlimited resizing.
*/
QSize QLayout::maximumSize() const
{
return QSize( QWIDGETSIZE_MAX, QWIDGETSIZE_MAX );
}
/*!
Returns whether this layout can make use of more space than
sizeHint(). A value of Vertical or Horizontal means that it wants
to grow in only one dimension, while BothDirections means that it wants to
grow in both dimensions.
The default implementation returns BothDirections.
*/
QSizePolicy::ExpandData QLayout::expanding() const
{
return QSizePolicy::BothDirections;
}
static void invalidateRecursive( QLayoutItem *lay )
{
lay->invalidate();
QLayoutIterator it = lay->iterator();
QLayoutItem *child;
while ( (child = it.current() ) ) {
invalidateRecursive( child );
++it;
}
}
/*! Redoes the layout for mainWidget(). You should generally not
need to call this, as it is automatically called at most appropriate
times.
However, if you set up a QLayout for a visible widget without
resizing that widget, you need to call this function in order to lay
it out.
\sa QWidget::updateGeometry()
*/
bool QLayout::activate()
{
// Paul: If adding stuff to a QLayout for a widget causes
// postEvent(thatWidget, QEvent::LayoutHint), activate() becomes
// unnecessary in that case too.
QWidget *mainW = mainWidget();
if ( !mainW ) {
#if defined( CHECK_NULL )
qWarning( "QLayout::activate(): %s \"%s\" does not have a "
"main widget.",
QObject::className(), QObject::name() );
#endif
return FALSE;
}
activated = TRUE;
invalidateRecursive( this );
QSize s = mainWidget()->size();
int mbh = menubar ? menubar->heightForWidth( s.width() ) : 0;
setGeometry( QRect( outsideBorder, mbh + outsideBorder,
s.width() - 2*outsideBorder,
s.height() - mbh - 2*outsideBorder ) );
if ( frozen )
mainWidget()->setFixedSize( totalSizeHint() ); //### will trigger resize
else if ( autoMinimum )
mainWidget()->setMinimumSize( totalMinimumSize() );
//###if ( sizeHint or sizePolicy has changed )
mainWidget()->updateGeometry();
return TRUE;
}
/*!
\class QSizePolicy qsizepolicy.h
\brief A layout attribute describing horizontal and vertical resizing.
Widgets which override QWidget::sizePolicy() return a QSizePolicy
describing the horizontal and vertical resizing policy best used when
laying out the widget.
Only the constructor is of interest in most applications.
*/
/*!
\fn QSizePolicy::QSizePolicy ()
Default constructor, produces a minimally initialized QSizePolicy.
*/
/*!
\fn QSizePolicy::QSizePolicy( SizeType hor, SizeType ver, bool hfw )
This is the constructor normally used to return a value in the overridden
\link QWidget::sizeHint() sizeHint() \endlink function of a QWidget
subclass.
It constructs a QSizePolicy with independent horizontal and vertical
sizing types, \a hor and \a ver respectively. These
\link QSizePolicy::SizeType sizing types\endlink
affect how the widget is treated by the \a link QLayout layout
engine\endlink.
If \a hfw is TRUE, the preferred height of the widget is dependent on the
width of the widget (for example, a QLabel with automatic word-breaking).
*/
/*!
\enum QSizePolicy::SizeType
The sizing types used when constructing a QSizePolicy are:
<ul>
<li> \c Fixed - the sizeHint() is the only acceptable alternative,
so never grow or shrink
(eg. the vertical direction of a pushbutton)
<li> \c Minimum - the sizeHint() is minimal, and sufficient. The widget
can be expanded, but there is no advantage to it being larger.
(eg. the horizontal direction of a pushbutton)
<li> \c Maximum - the sizeHint() is a maximum, the widget can be shrunk
any amount without detriment if other widgets need the space
(eg. a separator line)
<li> \c Preferred - the sizeHint() is best, but the widget can
be shrunk below that and still be useful. The widget
can be expanded, but there is no advantage to it being
larger than sizeHint()
(the default QWidget policy)
<li> \c MinimumExpanding - the sizeHint() is a minimum,
the widget can make use of extra space, so it
should get as much space as possible.
(not currently used by any standard Qt widgets)
<li> \c Expanding - the sizeHint() is a sensible size, but the widget can
be shrunk below that and still be useful.
The widget can make use of extra space, so it should
get as much space as possible.
(eg. the horizontal direction of a slider)
</ul>
*/
/*! \fn QSizePolicy::SizeType QSizePolicy::horData() const
Returns the horizontal component of the size policy.
*/
/*! \fn QSizePolicy::SizeType QSizePolicy::verData() const
Returns the vertical component of the size policy.
*/
/*! \fn bool QSizePolicy::mayShrinkHorizontally() const
Returns TRUE if the widget can sensibly be narrower than its sizeHint().
*/
/*! \fn bool QSizePolicy::mayShrinkVertically() const
Returns TRUE if the widget can sensibly be lower than its sizeHint().
*/
/*! \fn bool QSizePolicy::mayGrowHorizontally() const
Returns TRUE if the widget can sensibly be wider than its sizeHint().
*/
/*! \fn bool QSizePolicy::mayGrowVertically() const
Returns TRUE if the widget can sensibly be taller than its sizeHint().
*/
/*! \fn QSizePolicy::ExpandData QSizePolicy::expanding() const
Returns a value indicating if the widget can make use of extra space
(ie. if it "wants" to grow) horizontally and/or vertically.
*/
/*! \fn void QSizePolicy::setHorData( SizeType d )
Sets the horizontal component of the size policy to \a d.
*/
/*! \fn void QSizePolicy::setVerData( SizeType d )
Sets the vertical component of the size policy to \a d.
*/
/*! \fn bool QSizePolicy::hasHeightForWidth() const
Returns TRUE if the widget's preferred height depends on its width.
*/
/*! \fn void QSizePolicy::setHeightForWidth( bool b )
Sets the hasHeightForWidth() flag to \a b.
*/
/*!
\class QGLayoutIterator qabstractlayout.h
\brief The abstract base class of internal layout iterators.
To be subclassed by custom layout implementors. The functions that
need to be implemented are next(), current() and takeCurrent().
The QGLayoutIterator implements the functionality of
QLayoutIterator. Each subclass of QLayout needs a
QGLayoutIterator subclass.
*/
/*! \fn QLayoutItem *QGLayoutIterator::next()
Implemented in subclasses to move the iterator to the next item and
return that item, or 0 if there is no next item.
*/
/*! \fn QLayoutItem *QGLayoutIterator::current()
Implemented in subclasses to return the current item, or 0 if there
is no current item.
*/
/*! \fn QLayoutItem *QGLayoutIterator::takeCurrent()
Implemented in subclasses to remove the current item from the layout
without deleting it, move the iterator to the next item and return
the removed item, or 0 if no item was removed.
*/
/*!
Destroys the iterator
*/
QGLayoutIterator::~QGLayoutIterator()
{
}
/*!
\class QLayoutIterator qabstractlayout.h
\brief The QLayoutIterator class provides iterators over QLayoutItem
Use QLayoutItem::iterator() to create an iterator over a layout.
QLayoutIterator uses explicit sharing with a reference count. If
an iterator is copied, and one of the copies is modified,
both iterators will be modified.
A QLayoutIterator is not protected against changes in its layout. If
the layout is modified or deleted, the iterator will become invalid.
It is not posible to test for validity. It is safe to delete an
invalid layout. Any other access may lead to an illegal memory
reference, and the abnormal termination of the program.
Calling takeCurrent() or deleteCurrent() leaves the iterator in a
valid state, but may invalidate any other iterators that access the
same layout.
The following code will draw a rectangle for each layout item
in the layout structure of the widget.
\code
static void paintLayout( QPainter *p, QLayoutItem *lay )
{
QLayoutIterator it = lay->iterator();
QLayoutItem *child;
while ( (child = it.current() ) ) {
paintLayout( p, child );
it.next();
}
p->drawRect( lay->geometry() );
}
void ExampleWidget::paintEvent( QPaintEvent * )
{
QPainter p( this );
if ( layout() )
paintLayout( &p, layout() );
}
\endcode
All the functionality of QLayoutIterator is implemented by
subclasses of QGLayoutIterator. Note that there is not much
point in subclassing QLayoutIterator, since none of the functions
are virtual.
*/
/*! \fn QLayoutIterator::QLayoutIterator( QGLayoutIterator *gi )
Constructs an iterator based on \a gi. The constructed iterator takes
ownership of \a gi, and will delete it.
This constructor is provided for layout implementors. Application
programmers should use QLayoutItem::iterator() to create an iterator
over a layout.
*/
/*! \fn QLayoutIterator::QLayoutIterator( const QLayoutIterator &i )
Creates a shallow copy of \a i; if the copy is modified, then the
original will also be modified.
*/
/*! \fn QLayoutIterator::~QLayoutIterator()
Destroys the iterator.
*/
/*! \fn QLayoutIterator &QLayoutIterator::operator=( const QLayoutIterator &i )
Assigns \a i to this iterator and returns a reference to this iterator.
*/
/*! \fn QLayoutItem *QLayoutIterator::operator++()
Moves the iterator to the next child item, and returns that item, or 0
if there is no such item.
*/
/*! \fn QLayoutItem *QLayoutIterator::current()
Returns the current item, or 0 if there is no current item.
*/
/*! \fn QLayoutItem *QLayoutIterator::takeCurrent()
Removes the current child item from the layout without deleting it
and moves the iterator to the next item. Returns the removed item, or
0 if there was no item to be removed. This iterator will still be
valid, but any other iterator over the same layout may become
invalid.
*/
/*! \fn void QLayoutIterator::deleteCurrent()
Removes and deletes the current child item from the layout and moves the
iterator to the next item. This iterator will still be valid, but any
other iterator over the same layout may become invalid.
*/
/*!
\enum QLayout::ResizeMode
The possible values are are:
<ul>
<li> \c Fixed - the main widget's size is set to sizeHint(), it
cannot be resized at all.
<li> \c Minimum - The main widget's minimum size is set to
minimumSize(), it cannot be smaller.
<li> \c FreeResize - the widget is not constrained.
</ul>
*/
/*!
Sets the resize mode to \a mode.
The default mode is \c Minimum for top level widgets, and \c FreeResize
for all others.
\sa QLayout::ResizeMode
*/
void QLayout::setResizeMode( ResizeMode mode )
{
if ( mode == resizeMode() )
return;
switch (mode) {
case Fixed:
frozen = TRUE;
break;
case FreeResize:
frozen = FALSE;
autoMinimum = FALSE;
break;
case Minimum:
frozen = FALSE;
autoMinimum = TRUE;
break;
}
activate();
}
/*!
Returns the resize mode.
*/
QLayout::ResizeMode QLayout::resizeMode() const
{
return frozen ? Fixed : (autoMinimum ? Minimum : FreeResize );
}
/*! \fn bool QLayout::autoAdd() const
Returns TRUE if this layout automatically grabs all new
mainWidget()'s new children and adds them as defined by
addItem(). This only has effect for top-level layouts, ie. layouts
that are direct children of their mainWidget().
autoAdd() is disabled by default.
\sa setAutoAdd()
*/
/*!
Sets autoAdd() if \a b is TRUE.
\sa autoAdd()
*/
void QLayout::setAutoAdd( bool b )
{
autoNewChild = b;
}
|