Qt:Документация 4.3.2/qapplication-qt3
Материал из Wiki.crossplatform.ru
![]() | Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] Qt 3 Support Members for QApplication
The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.
[править] Открытые типы
- typedef ColorMode
[править] Статические открытые члены
- const int CustomColors
- const int NormalColors
- ColorMode colorMode ()
- void flushX ()
- bool hasGlobalMouseTracking ()
- Qt::Alignment horizontalAlignment ( Qt::Alignment align )
- Qt::MacintoshVersion macVersion ()
- QWidget * mainWidget ()
- bool reverseLayout ()
- void setColorMode ( ColorMode mode )
- void setFont ( const QFont & font, bool b, const char * className = 0 )
- void setGlobalMouseTracking ( bool dummy )
- void setMainWidget ( QWidget * mainWidget )
- void setOverrideCursor ( const QCursor & cursor, bool replace )
- void setPalette ( const QPalette & pal, bool b, const char * className = 0 )
- void setReverseLayout ( bool reverse )
- void setWinStyleHighlightColor ( const QColor & c )
- QWidget * widgetAt ( int x, int y, bool child )
- QWidget * widgetAt ( const QPoint & point, bool child )
- const QColor & winStyleHighlightColor ()
- Qt::WindowsVersion winVersion ()
- 4 статических открытых члена унаследованных от QCoreApplication
[править] Описание типов членов
[править] typedef QApplication::ColorMode
Use ColorSpec instead.
[править] Описание функций-членов
[править] ColorMode QApplication::colorMode () [static]
Use colorSpec() instead, and use ColorSpec as the enum type.
See also setColorMode().
[править] void QApplication::flushX () [static]
Use flush() instead.
[править] bool QApplication::hasGlobalMouseTracking () [static]
This feature does not exist anymore. This function always returns true in Qt 4.
[править] Qt::Alignment QApplication::horizontalAlignment ( Qt::Alignment align ) [static]
Strips out vertical alignment flags and transforms an alignment align of Qt::AlignLeft into Qt::AlignLeft or Qt::AlignRight according to the language used.
[править] Qt::MacintoshVersion QApplication::macVersion () [static]
Use QSysInfo::MacintoshVersion instead.
[править] QWidget * QApplication::mainWidget () [static]
Returns the main application widget, or 0 if there is no main widget.
See also setMainWidget().
[править] bool QApplication::reverseLayout () [static]
Use layoutDirection() instead.
See also setReverseLayout().
[править] void QApplication::setColorMode ( ColorMode mode ) [static]
Use setColorSpec() instead, and pass a ColorSpec value instead.
See also colorMode().
[править] void QApplication::setFont ( const QFont & font, bool b, const char * className = 0 ) [static]
This is an overloaded member function, provided for convenience.
Use the two-argument overload instead.
[править] void QApplication::setGlobalMouseTracking ( bool dummy ) [static]
This function does nothing in Qt 4. The dummy parameter is ignored.
See also hasGlobalMouseTracking().
[править] void QApplication::setMainWidget ( QWidget * mainWidget ) [static]
Sets the application's main widget to mainWidget.
In most respects the main widget is like any other widget, except that if it is closed, the application exits. Note that QApplication does not take ownership of the mainWidget, so if you create your main widget on the heap you must delete it yourself.
You need not have a main widget; connecting lastWindowClosed() to quit() is an alternative.
For X11, this function also resizes and moves the main widget according to the -geometry command-line option, so you should set the default geometry (using QWidget::setGeometry()) before calling setMainWidget().
See also mainWidget(), exec(), and quit().
[править] void QApplication::setOverrideCursor ( const QCursor & cursor, bool replace ) [static]
This is an overloaded member function, provided for convenience.
Use changeOverrideCursor(cursor) (if replace is true) or setOverrideCursor(cursor) (if replace is false).
[править] void QApplication::setPalette ( const QPalette & pal, bool b, const char * className = 0 ) [static]
This is an overloaded member function, provided for convenience.
Use the two-argument overload instead.
[править] void QApplication::setReverseLayout ( bool reverse ) [static]
Use setLayoutDirection() instead.
See also reverseLayout().
[править] void QApplication::setWinStyleHighlightColor ( const QColor & c ) [static]
Use the palette instead.
For example, if you have code like
app.setWinStyleHighlightColor(color);
you can rewrite it as
QPalette palette(qApp->palette()); palette.setColor(QPalette::Highlight, color); qApp->setPalette(palette);
See also winStyleHighlightColor().
[править] QWidget * QApplication::widgetAt ( int x, int y, bool child ) [static]
This is an overloaded member function, provided for convenience.
Use the two-argument widgetAt() overload to get the child widget. To get the top-level widget do this:
QWidget *widget = qApp->widgetAt(x, y); if (widget) widget = widget->window();
[править] QWidget * QApplication::widgetAt ( const QPoint & point, bool child ) [static]
This is an overloaded member function, provided for convenience.
Use the single-argument widgetAt() overload to get the child widget. To get the top-level widget do this:
QWidget *widget = qApp->widgetAt(point); if (widget) widget = widget->window();
[править] const QColor & QApplication::winStyleHighlightColor () [static]
Use qApp-> palette().color( QPalette::Active, QPalette::Highlight) instead.
See also setWinStyleHighlightColor().
[править] Qt::WindowsVersion QApplication::winVersion () [static]
Use QSysInfo::WindowsVersion instead.
[править] Member Variable Documentation
[править] const int QApplication::CustomColors
Use CustomColor instead.
[править] const int QApplication::NormalColors
Use NormalColor instead.
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|