📄 qcloseevent.3qt
字号:
'\" t.TH QCloseEvent 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQCloseEvent \- Parameters that describe a close event.SH SYNOPSIS\fC#include <qevent.h>\fR.PPInherits QEvent..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQCloseEvent\fR ()".br.ti -1c.BI "bool \fBisAccepted\fR () const".br.ti -1c.BI "void \fBaccept\fR ()".br.ti -1c.BI "void \fBignore\fR ()".br.in -1c.SH DESCRIPTIONThe QCloseEvent class contains parameters that describe a close event..PPClose 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 QWidget::close() to close a widget programmatically..PPClose 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 the WDestructiveClose flag). If it refuses to accept the close event nothing happens. (Under X11 it is possible that the window manager will forcibly close the window; but at the time of writing we are not aware of any window manager that does this.).PPThe application's main widget -- QApplication::mainWidget() -- is a special case. When it accepts the close event, Qt leaves the main event loop and the application is immediately terminated (i.e. it returns from the call to QApplication::exec() in the main() function)..PPThe event handler QWidget::closeEvent() 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..PPThe closeEvent() in the Application Walkthrough shows a close event handler that asks whether to save a document before closing..PPIf you want the widget to be deleted when it is closed, create it with the WDestructiveClose widget flag. This is very useful for independent top-level windows in a multi-window application..PPQObjects emits the destroyed() signal when they are deleted..PPIf the last top-level window is closed, the QApplication::lastWindowClosed() signal is emitted..PPThe isAccepted() function returns TRUE if the event's receiver has agreed to close the widget; call accept() to agree to close the widget and call ignore() if the receiver of this event does not want the widget to be closed..PPSee also QWidget::close(), QWidget::hide(), QObject::destroyed(), QApplication::setMainWidget(), QApplication::lastWindowClosed(), QApplication::exec(), QApplication::quit(), and Event Classes..SH MEMBER FUNCTION DOCUMENTATION.SH "QCloseEvent::QCloseEvent ()"Constructs a close event object with the accept parameter flag set to FALSE..PPSee also accept()..SH "void QCloseEvent::accept ()"Sets the accept flag of the close event object..PPSetting the accept flag indicates that the receiver of this event agrees to close the widget..PPThe accept flag is \fInot\fR set by default..PPIf you choose to accept in QWidget::closeEvent(), the widget will be hidden. If the widget's WDestructiveClose flag is set, it will also be destroyed..PPSee also ignore() and QWidget::hide()..PPExamples:.)l action/application.cpp, application/application.cpp, popup/popup.cpp, and qwerty/qwerty.cpp..SH "void QCloseEvent::ignore ()"Clears the accept flag of the close event object..PPClearing the accept flag indicates that the receiver of this event does not want the widget to be closed..PPThe close event is constructed with the accept flag cleared..PPSee also accept()..PPExamples:.)l action/application.cpp, application/application.cpp, and qwerty/qwerty.cpp..SH "bool QCloseEvent::isAccepted () const"Returns TRUE if the receiver of the event has agreed to close the widget; otherwise returns FALSE..PPSee also accept() and ignore()..SH "SEE ALSO".BR http://doc.trolltech.com/qcloseevent.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qcloseevent.3qt) and the Qtversion (3.1.1).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -