⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qobjectcleanuphandler.3qt

📁 Linux下的基于X11的图形开发环境。
💻 3QT
字号:
'\" t.TH QObjectCleanupHandler 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 NAMEQObjectCleanupHandler \- Watches the lifetime of multiple QObjects.SH SYNOPSIS\fC#include <qobjectcleanuphandler.h>\fR.PPInherits QObject..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQObjectCleanupHandler\fR ()".br.ti -1c.BI "\fB~QObjectCleanupHandler\fR ()".br.ti -1c.BI "QObject * \fBadd\fR ( QObject * object )".br.ti -1c.BI "void \fBremove\fR ( QObject * object )".br.ti -1c.BI "bool \fBisEmpty\fR () const".br.ti -1c.BI "void \fBclear\fR ()".br.in -1c.SH DESCRIPTIONThe QObjectCleanupHandler class watches the lifetime of multiple QObjects..PPA QObjectCleanupHandler is useful whenever you need to know when a number of QObjects that are owned by someone else have been deleted. This is important, for example, when referencing memory in an application that has been allocated in a shared library..PPExample:.PP.nf.br    class FactoryComponent : public FactoryInterface, public QLibraryInterface.br    {.br    public:.br        ....br.br        QObject *createObject();.br.br        bool init();.br        void cleanup();.br        bool canUnload() const;.br.br    private:.br        QObjectCleanupHandler objects;.br    };.br.br    // allocate a new object, and add it to the cleanup handler.br    QObject *FactoryComponent::createObject().br    {.br        return objects.add( new QObject() );.br    }.br.br    // QLibraryInterface implementation.br    bool FactoryComponent::init().br    {.br        return TRUE;.br    }.br.br    void FactoryComponent::cleanup().br    {.br    }.br.br    // it is only safe to unload the library when all QObject's have been destroyed.br    bool FactoryComponent::canUnload() const.br    {.br        return objects.isEmpty();.br    }.br.fi.PPSee also Object Model..SH MEMBER FUNCTION DOCUMENTATION.SH "QObjectCleanupHandler::QObjectCleanupHandler ()"Constructs an empty QObjectCleanupHandler..SH "QObjectCleanupHandler::~QObjectCleanupHandler ()"Destroys the cleanup handler. All objects in this cleanup handler will be deleted..SH "QObject * QObjectCleanupHandler::add ( QObject * object )"Adds \fIobject\fR to this cleanup handler and returns the pointer to the object..SH "void QObjectCleanupHandler::clear ()"Deletes all objects in this cleanup handler. The cleanup handler becomes empty..SH "bool QObjectCleanupHandler::isEmpty () const"Returns TRUE if this cleanup handler is empty or if all objects in this cleanup handler have been destroyed; otherwise return FALSE..SH "void QObjectCleanupHandler::remove ( QObject * object )"Removes the \fIobject\fR from this cleanup handler. The object willnot be destroyed..SH "SEE ALSO".BR http://doc.trolltech.com/qobjectcleanuphandler.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 (qobjectcleanuphandler.3qt) and the Qtversion (3.1.1).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -