diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-11-12 13:53:14 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-11-12 13:53:14 (GMT) |
commit | 2e5706eeee2fb9ce543466f469ace2d49ed4be64 (patch) | |
tree | 559b42064c06b5de59c053a2e5a99fe3b5e5db68 /src/gui/kernel | |
parent | 5e6a3e2f8f7f0b6b85534fb9cf30a5fd0fbac9ee (diff) | |
parent | 05c1839531008d3cab40fb6fdaa22667c2133d7e (diff) | |
download | Qt-2e5706eeee2fb9ce543466f469ace2d49ed4be64.zip Qt-2e5706eeee2fb9ce543466f469ace2d49ed4be64.tar.gz Qt-2e5706eeee2fb9ce543466f469ace2d49ed4be64.tar.bz2 |
Merge commit 'upstream/4.6' into 4.6
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qwidget.cpp | 11 | ||||
-rw-r--r-- | src/gui/kernel/qwidget.h | 4 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index c776c36..4aa358f 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -11462,6 +11462,17 @@ void QWidget::languageChange() { } // compat \sa QWidget::setMaximumSize() */ +/*! + \fn QWidget::setupUi(QWidget *widget) + + Sets up the user interface for the specified \a widget. + + \note This function is available with widgets that derive from user + interface descriptions created using \l{uic}. + + \sa {Using a Designer UI File in Your Application} +*/ + QRect QWidgetPrivate::frameStrut() const { Q_Q(const QWidget); diff --git a/src/gui/kernel/qwidget.h b/src/gui/kernel/qwidget.h index b7c55f9..5ba1d23 100644 --- a/src/gui/kernel/qwidget.h +++ b/src/gui/kernel/qwidget.h @@ -288,6 +288,10 @@ public: void setMaximumWidth(int maxw); void setMaximumHeight(int maxh); +#ifdef Q_QDOC + void setupUi(QWidget *widget); +#endif + QSize sizeIncrement() const; void setSizeIncrement(const QSize &); void setSizeIncrement(int w, int h); |