diff options
Diffstat (limited to 'doc/man/man3/tqwidget.3qt')
-rw-r--r-- | doc/man/man3/tqwidget.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt index f0c3070ce..34ffa8c7e 100644 --- a/doc/man/man3/tqwidget.3qt +++ b/doc/man/man3/tqwidget.3qt @@ -13,7 +13,7 @@ TQWidget \- The base class of all user interface objects .PP Inherits TQObject and TQPaintDevice. .PP -Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, QDockArea, TQGLWidget, TQHeader, TQMainWindow, TQMotifWidget, QNPWidget, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, QSplashScreen, TQStatusBar, TQTabBar, TQTabWidget, TQWorkspace, and QXtWidget. +Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, TQDockArea, TQGLWidget, TQHeader, TQMainWindow, TQMotifWidget, QNPWidget, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, QSplashScreen, TQStatusBar, TQTabBar, TQTabWidget, TQWorkspace, and QXtWidget. .PP .SS "Public Members" .in +1c @@ -876,10 +876,10 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, .BI "virtual void \fBkeyReleaseEvent\fR ( QKeyEvent * e )" .br .ti -1c -.BI "virtual void \fBfocusInEvent\fR ( QFocusEvent * )" +.BI "virtual void \fBfocusInEvent\fR ( TQFocusEvent * )" .br .ti -1c -.BI "virtual void \fBfocusOutEvent\fR ( QFocusEvent * )" +.BI "virtual void \fBfocusOutEvent\fR ( TQFocusEvent * )" .br .ti -1c .BI "virtual void \fBenterEvent\fR ( TQEvent * )" @@ -930,7 +930,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, .BI "virtual void \fBshowEvent\fR ( QShowEvent * )" .br .ti -1c -.BI "virtual void \fBhideEvent\fR ( QHideEvent * )" +.BI "virtual void \fBhideEvent\fR ( TQHideEvent * )" .br .ti -1c .BI "virtual bool \fBmacEvent\fR ( MSG * )" @@ -984,7 +984,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, .BI "virtual bool \fBfocusNextPrevChild\fR ( bool next )" .br .ti -1c -.BI "QFocusData * \fBfocusData\fR ()" +.BI "TQFocusData * \fBfocusData\fR ()" .br .ti -1c .BI "virtual void \fBsetKeyCompression\fR ( bool compress )" @@ -1390,20 +1390,20 @@ Reimplemented from TQObject. Returns a pointer to the widget with window identifer/handle \fIid\fR. .PP The window identifier type depends on the underlying window system, see ntqwindowdefs.h for the actual definition. If there is no widget with this identifier, 0 is returned. -.SH "QFocusData * TQWidget::focusData ()\fC [protected]\fR" +.SH "TQFocusData * TQWidget::focusData ()\fC [protected]\fR" Returns the focus data for this widget's top-level widget. .PP Focus data always belongs to the top-level widget. The focus data list contains all the widgets in this top-level widget that can accept focus, in tab order. An iterator points to the current focus widget (focusWidget() returns a pointer to this widget). .PP This information is useful for implementing advanced versions of focusNextPrevChild(). -.SH "void TQWidget::focusInEvent ( QFocusEvent * )\fC [virtual protected]\fR" +.SH "void TQWidget::focusInEvent ( TQFocusEvent * )\fC [virtual protected]\fR" This event handler can be reimplemented in a subclass to receive keyboard focus events (focus received) for the widget. .PP A widget normally must setFocusPolicy() to something other than NoFocus in order to receive focus events. (Note that the application programmer can call setFocus() on any widget, even those that do not normally accept focus.) .PP The default implementation updates the widget (except for toplevel widgets that do not specify a focusPolicy() ). It also calls setMicroFocusHint(), hinting any system-specific input tools about the focus of the user's attention. .PP -See also focusOutEvent(), focusPolicy, keyPressEvent(), keyReleaseEvent(), event(), and QFocusEvent. +See also focusOutEvent(), focusPolicy, keyPressEvent(), keyReleaseEvent(), event(), and TQFocusEvent. .SH "bool TQWidget::focusNextPrevChild ( bool next )\fC [virtual protected]\fR" Finds a new widget to give the keyboard focus to, as appropriate for Tab and Shift+Tab, and returns TRUE if is can find a new widget and FALSE if it can't, .PP @@ -1416,14 +1416,14 @@ Child widgets call focusNextPrevChild() on their parent widgets, but only the to \fBWarning:\fR TQScrollView uses it own logic for this function, which does the right thing in most cases. But if you are using a TQScrollView and want complete control of the focus chain you'll need to override TQScrollView::focusNextPrevChild() and your top-level widgets' focusNextPrevChild() functions. .PP See also focusData(). -.SH "void TQWidget::focusOutEvent ( QFocusEvent * )\fC [virtual protected]\fR" +.SH "void TQWidget::focusOutEvent ( TQFocusEvent * )\fC [virtual protected]\fR" This event handler can be reimplemented in a subclass to receive keyboard focus events (focus lost) for the widget. .PP A widget normally must setFocusPolicy() to something other than NoFocus in order to receive focus events. (Note that the application programmer can call setFocus() on any widget, even those that do not normally accept focus.) .PP The default implementation updates the widget (except for toplevel widgets that do not specify a focusPolicy() ). It also calls setMicroFocusHint(), hinting any system-specific input tools about the focus of the user's attention. .PP -See also focusInEvent(), focusPolicy, keyPressEvent(), keyReleaseEvent(), event(), and QFocusEvent. +See also focusInEvent(), focusPolicy, keyPressEvent(), keyReleaseEvent(), event(), and TQFocusEvent. .PP Example: qmag/qmag.cpp. .SH "FocusPolicy TQWidget::focusPolicy () const" @@ -1526,12 +1526,12 @@ Examples: .)l mdi/application.cpp, popup/popup.cpp, progress/progress.cpp, scrollview/scrollview.cpp, webbrowser/mainwindow.ui.h, and xform/xform.cpp. .PP Reimplemented in TQMenuBar. -.SH "void TQWidget::hideEvent ( QHideEvent * )\fC [virtual protected]\fR" +.SH "void TQWidget::hideEvent ( TQHideEvent * )\fC [virtual protected]\fR" This event handler can be reimplemented in a subclass to receive widget hide events. .PP Hide events are sent to widgets immediately after they have been hidden. .PP -See also event() and QHideEvent. +See also event() and TQHideEvent. .PP Reimplemented in TQScrollBar. .SH "const TQPixmap * TQWidget::icon () const" |