diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qcloseevent.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qcloseevent.html')
-rw-r--r-- | doc/html/qcloseevent.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qcloseevent.html b/doc/html/qcloseevent.html index 76034284b..89a8ab7cc 100644 --- a/doc/html/qcloseevent.html +++ b/doc/html/qcloseevent.html @@ -51,7 +51,7 @@ The TQCloseEvent class contains parameters that describe a close event. <p> Close events are sent to widgets that the user wants to close, usually by choosing "Close" from the window menu, or by clicking the `X' titlebar button. They are also sent when you call -<a href="ntqwidget.html#close">TQWidget::close</a>() to close a widget programmatically. +<a href="tqwidget.html#close">TQWidget::close</a>() to close a widget programmatically. <p> Close events contain a flag that indicates whether the receiver wants the widget to be closed or not. When a widget accepts the close event, it is hidden (and destroyed if it was created with @@ -64,7 +64,7 @@ is a special case. When it accepts the close event, TQt leaves the main event loop and the application is immediately terminated (i.e. it returns from the call to <a href="ntqapplication.html#exec">TQApplication::exec</a>() in the main() function). -<p> The event handler <a href="ntqwidget.html#closeEvent">TQWidget::closeEvent</a>() receives close events. The +<p> The event handler <a href="tqwidget.html#closeEvent">TQWidget::closeEvent</a>() receives close events. The default implementation of this event handler accepts the close event. If you do not want your widget to be hidden, or want some special handing, you should reimplement the event handler. @@ -81,7 +81,7 @@ independent top-level windows in a multi-window application. agreed to close the widget; call <a href="#accept">accept</a>() to agree to close the widget and call <a href="#ignore">ignore</a>() if the receiver of this event does not want the widget to be closed. -<p> <p>See also <a href="ntqwidget.html#close">TQWidget::close</a>(), <a href="ntqwidget.html#hide">TQWidget::hide</a>(), <a href="tqobject.html#destroyed">TQObject::destroyed</a>(), <a href="ntqapplication.html#setMainWidget">TQApplication::setMainWidget</a>(), <a href="ntqapplication.html#lastWindowClosed">TQApplication::lastWindowClosed</a>(), <a href="ntqapplication.html#exec">TQApplication::exec</a>(), <a href="ntqapplication.html#quit">TQApplication::quit</a>(), and <a href="events.html">Event Classes</a>. +<p> <p>See also <a href="tqwidget.html#close">TQWidget::close</a>(), <a href="tqwidget.html#hide">TQWidget::hide</a>(), <a href="tqobject.html#destroyed">TQObject::destroyed</a>(), <a href="ntqapplication.html#setMainWidget">TQApplication::setMainWidget</a>(), <a href="ntqapplication.html#lastWindowClosed">TQApplication::lastWindowClosed</a>(), <a href="ntqapplication.html#exec">TQApplication::exec</a>(), <a href="ntqapplication.html#quit">TQApplication::quit</a>(), and <a href="events.html">Event Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQCloseEvent"></a>TQCloseEvent::TQCloseEvent () @@ -98,10 +98,10 @@ to FALSE. <p> Setting the accept flag indicates that the receiver of this event agrees to close the widget. <p> The accept flag is <em>not</em> set by default. -<p> If you choose to accept in <a href="ntqwidget.html#closeEvent">TQWidget::closeEvent</a>(), the widget will +<p> If you choose to accept in <a href="tqwidget.html#closeEvent">TQWidget::closeEvent</a>(), the widget will be hidden. If the widget's <a href="ntqt.html#WidgetFlags-enum">WDestructiveClose</a> flag is set, it will also be destroyed. -<p> <p>See also <a href="#ignore">ignore</a>() and <a href="ntqwidget.html#hide">TQWidget::hide</a>(). +<p> <p>See also <a href="#ignore">ignore</a>() and <a href="tqwidget.html#hide">TQWidget::hide</a>(). <p>Examples: <a href="qaction-application-example.html#x1128">action/application.cpp</a>, <a href="simple-application-example.html#x1545">application/application.cpp</a>, <a href="mdi-example.html#x2021">mdi/application.cpp</a>, <a href="popup-example.html#x1607">popup/popup.cpp</a>, and <a href="qwerty-example.html#x360">qwerty/qwerty.cpp</a>. <h3 class=fn>void <a name="ignore"></a>TQCloseEvent::ignore () |