![]() |
Qt 6.x
The Qt SDK
|
\inmodule QtCore More...
#include <qcoreapplication.h>
Public Types | |
enum | { ApplicationFlags = QT_VERSION } |
Public Slots | |
static void | quit () |
\threadsafe | |
static void | exit (int retcode=0) |
Tells the application to exit with a return code. | |
![]() | |
void | deleteLater () |
\threadsafe | |
Signals | |
void | aboutToQuit (QPrivateSignal) |
This signal is emitted when the application is about to quit the main event loop, e.g. | |
void | organizationNameChanged () |
void | organizationDomainChanged () |
void | applicationNameChanged () |
void | applicationVersionChanged () |
![]() | |
void | destroyed (QObject *=nullptr) |
This signal is emitted immediately before the object obj is destroyed, after any instances of QPointer have been notified, and cannot be blocked. | |
void | objectNameChanged (const QString &objectName, QPrivateSignal) |
This signal is emitted after the object's name has been changed. | |
Public Member Functions | |
QCoreApplication (int &argc, char **argv, int=ApplicationFlags) | |
Constructs a Qt core application. | |
~QCoreApplication () | |
Destroys the QCoreApplication object. | |
virtual bool | notify (QObject *, QEvent *) |
Sends event to receiver: {receiver}->event(event). | |
void | installNativeEventFilter (QAbstractNativeEventFilter *filterObj) |
Installs an event filter filterObj for all native events received by the application in the main thread. | |
void | removeNativeEventFilter (QAbstractNativeEventFilter *filterObj) |
Removes an event filterObject from this object. | |
![]() | |
Q_INVOKABLE | QObject (QObject *parent=nullptr) |
Constructs an object with parent object parent. | |
virtual | ~QObject () |
Destroys the object, deleting all its child objects. | |
virtual bool | event (QEvent *event) |
This virtual function receives events to an object and should return true if the event e was recognized and processed. | |
virtual bool | eventFilter (QObject *watched, QEvent *event) |
Filters events if this object has been installed as an event filter for the watched object. | |
QString | objectName () const |
Q_WEAK_OVERLOAD void | setObjectName (const QString &name) |
Sets the object's name to name. | |
void | setObjectName (QAnyStringView name) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
QBindable< QString > | bindableObjectName () |
bool | isWidgetType () const |
Returns true if the object is a widget; otherwise returns false . | |
bool | isWindowType () const |
Returns true if the object is a window; otherwise returns false . | |
bool | isQuickItemType () const |
Returns true if the object is a QQuickItem; otherwise returns false . | |
bool | signalsBlocked () const noexcept |
Returns true if signals are blocked; otherwise returns false . | |
bool | blockSignals (bool b) noexcept |
If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it). | |
QThread * | thread () const |
Returns the thread in which the object lives. | |
void | moveToThread (QThread *thread) |
Changes the thread affinity for this object and its children. | |
int | startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer) |
This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds. | |
int | startTimer (std::chrono::milliseconds time, Qt::TimerType timerType=Qt::CoarseTimer) |
void | killTimer (int id) |
Kills the timer with timer identifier, id. | |
template<typename T > | |
T | findChild (const QString &aName=QString(), Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object. | |
template<typename T > | |
QList< T > | findChildren (const QString &aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects. | |
template<typename T > | |
QList< T > | findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const QObjectList & | children () const |
Returns a list of child objects. | |
void | setParent (QObject *parent) |
Makes the object a child of parent. | |
void | installEventFilter (QObject *filterObj) |
Installs an event filter filterObj on this object. | |
void | removeEventFilter (QObject *obj) |
Removes an event filter object obj from this object. | |
QMetaObject::Connection | connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const |
bool | disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const |
bool | disconnect (const QObject *receiver, const char *member=nullptr) const |
void | dumpObjectTree () const |
Dumps a tree of children to the debug output. | |
void | dumpObjectInfo () const |
Dumps information about signal connections, etc. | |
bool | setProperty (const char *name, const QVariant &value) |
Sets the value of the object's name property to value. | |
bool | setProperty (const char *name, QVariant &&value) |
QVariant | property (const char *name) const |
Returns the value of the object's name property. | |
QList< QByteArray > | dynamicPropertyNames () const |
QBindingStorage * | bindingStorage () |
const QBindingStorage * | bindingStorage () const |
QObject * | parent () const |
Returns a pointer to the parent object. | |
bool | inherits (const char *classname) const |
Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false . | |
Static Public Member Functions | |
static QStringList | arguments () |
static void | setAttribute (Qt::ApplicationAttribute attribute, bool on=true) |
Sets the attribute attribute if on is true; otherwise clears the attribute. | |
static bool | testAttribute (Qt::ApplicationAttribute attribute) |
Returns true if attribute attribute is set; otherwise returns false . | |
static void | setOrganizationDomain (const QString &orgDomain) |
static QString | organizationDomain () |
static void | setOrganizationName (const QString &orgName) |
[11] | |
static QString | organizationName () |
static void | setApplicationName (const QString &application) |
static QString | applicationName () |
static void | setApplicationVersion (const QString &version) |
static QString | applicationVersion () |
static void | setSetuidAllowed (bool allow) |
static bool | isSetuidAllowed () |
static QCoreApplication * | instance () noexcept |
Returns a pointer to the application's QCoreApplication (or QGuiApplication/QApplication) instance. | |
static int | exec () |
Enters the main event loop and waits until exit() is called. | |
static void | processEvents (QEventLoop::ProcessEventsFlags flags=QEventLoop::AllEvents) |
Processes some pending events for the calling thread according to the specified flags. | |
static void | processEvents (QEventLoop::ProcessEventsFlags flags, int maxtime) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Processes pending events for the calling thread for ms milliseconds or until there are no more events to process, whichever is shorter. | |
static void | processEvents (QEventLoop::ProcessEventsFlags flags, QDeadlineTimer deadline) |
static bool | sendEvent (QObject *receiver, QEvent *event) |
Sends event event directly to receiver receiver, using the notify() function. | |
static void | postEvent (QObject *receiver, QEvent *event, int priority=Qt::NormalEventPriority) |
static void | sendPostedEvents (QObject *receiver=nullptr, int event_type=0) |
Immediately dispatches all events which have been previously queued with QCoreApplication::postEvent() and which are for the object receiver and have the event type event_type. | |
static void | removePostedEvents (QObject *receiver, int eventType=0) |
static QAbstractEventDispatcher * | eventDispatcher () |
Returns a pointer to the event dispatcher object for the main thread. | |
static void | setEventDispatcher (QAbstractEventDispatcher *eventDispatcher) |
Sets the event dispatcher for the main thread to eventDispatcher. | |
static bool | startingUp () |
Returns true if an application object has not been created yet; otherwise returns false . | |
static bool | closingDown () |
Returns true if the application objects are being destroyed; otherwise returns false . | |
static QString | applicationDirPath () |
Returns the directory that contains the application executable. | |
static QString | applicationFilePath () |
Returns the file path of the application executable. | |
static qint64 | applicationPid () Q_DECL_CONST_FUNCTION |
static bool | installTranslator (QTranslator *messageFile) |
Adds the translation file translationFile to the list of translation files to be used for translations. | |
static bool | removeTranslator (QTranslator *messageFile) |
Removes the translation file translationFile from the list of translation files used by this application. | |
static QString | translate (const char *context, const char *key, const char *disambiguation=nullptr, int n=-1) |
\threadsafe | |
static bool | isQuitLockEnabled () |
static void | setQuitLockEnabled (bool enabled) |
![]() | |
static QMetaObject::Connection | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection) |
\threadsafe | |
static QMetaObject::Connection | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1 , typename Func2 > | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1 , typename Func2 > | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot) |
static bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member) |
\threadsafe | |
static bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member) |
static bool | disconnect (const QMetaObject::Connection &) |
Disconnect a connection. | |
template<typename Func1 , typename Func2 > | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot) |
template<typename Func1 > | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero) |
Protected Member Functions | |
bool | event (QEvent *) override |
\reimp | |
virtual bool | compressEvent (QEvent *, QObject *receiver, QPostEventList *) |
QCoreApplication (QCoreApplicationPrivate &p) | |
![]() | |
QObject * | sender () const |
Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr. | |
int | senderSignalIndex () const |
int | receivers (const char *signal) const |
Returns the number of receivers connected to the signal. | |
bool | isSignalConnected (const QMetaMethod &signal) const |
virtual void | timerEvent (QTimerEvent *event) |
This event handler can be reimplemented in a subclass to receive timer events for the object. | |
virtual void | childEvent (QChildEvent *event) |
This event handler can be reimplemented in a subclass to receive child events. | |
virtual void | customEvent (QEvent *event) |
This event handler can be reimplemented in a subclass to receive custom events. | |
virtual void | connectNotify (const QMetaMethod &signal) |
virtual void | disconnectNotify (const QMetaMethod &signal) |
QObject (QObjectPrivate &dd, QObject *parent=nullptr) | |
Properties | |
QString | applicationName |
the name of this application | |
QString | applicationVersion |
the version of this application | |
QString | organizationName |
the name of the organization that wrote this application | |
QString | organizationDomain |
the Internet domain of the organization that wrote this application | |
bool | quitLockEnabled |
Whether the use of the QEventLoopLocker feature can cause the application to quit. | |
![]() | |
QString | objectName |
the name of this object | |
Friends | |
class | QEventLoopLocker |
class | QApplication |
class | QApplicationPrivate |
class | QGuiApplication |
class | QGuiApplicationPrivate |
class | QWidget |
class | QWidgetWindow |
class | QWidgetPrivate |
class | QEventDispatcherUNIXPrivate |
class | QCocoaEventDispatcherPrivate |
class | QCommandLineParserPrivate |
bool | qt_sendSpontaneousEvent (QObject *, QEvent *) |
Q_CORE_EXPORT QString | qAppName () |
Related Symbols | |
(Note that these are not member symbols.) | |
void | qAddPostRoutine (QtCleanUpFunction ptr) |
\macro Q_COREAPP_STARTUP_FUNCTION(QtStartUpFunction ptr) | |
void | qRemovePostRoutine (QtCleanUpFunction ptr) |
\threadsafe | |
void * | resolveInterface (const char *name, int revision) const |
\macro Q_DECLARE_TR_FUNCTIONS(context) | |
![]() | |
template< class T > T | qobject_cast (const QObject *object) |
Returns the given object cast to type T if the object is of type T (or of a subclass); otherwise returns \nullptr. | |
template< typename T > T | qFindChildqFindChildren (const QObject *obj, const QString &name)() |
template< typename T > QList< T > | qFindChildrenqFindChildren (const QObject *obj, const QString &name)() |
QObjectList | |
\macro Q_CLASSINFO(Name, Value) | |
Additional Inherited Members | |
![]() | |
QScopedPointer< QObjectData > | d_ptr |
\inmodule QtCore
The QCoreApplication class provides an event loop for Qt applications without UI.
This class is used by non-GUI applications to provide their event loop. For non-GUI application that uses Qt, there should be exactly one QCoreApplication object. For GUI applications, see QGuiApplication. For applications that use the Qt Widgets module, see QApplication.
QCoreApplication contains the main event loop, where all events from the operating system (e.g., timer and network events) and other sources are processed and dispatched. It also handles the application's initialization and finalization, as well as system-wide and application-wide settings.
Definition at line 44 of file qcoreapplication.h.
anonymous enum |
Enumerator | |
---|---|
ApplicationFlags |
Definition at line 65 of file qcoreapplication.h.
QCoreApplication::QCoreApplication | ( | int & | argc, |
char ** | argv, | ||
int | = ApplicationFlags |
||
) |
Constructs a Qt core application.
Core applications are applications without a graphical user interface. Such applications are used at the console or as server processes.
The argc and argv arguments are processed by the application, and made available in a more convenient form by the arguments() function.
Definition at line 792 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::eventDispatcher, and QAbstractEventDispatcher::startingUp().
QCoreApplication::~QCoreApplication | ( | ) |
Destroys the QCoreApplication object.
Definition at line 927 of file qcoreapplication.cpp.
References QAbstractEventDispatcher::closingDown(), QCoreApplicationPrivate::eventDispatcher, QThreadPool::globalInstance(), QCoreApplicationPrivate::is_app_closing, QCoreApplicationPrivate::is_app_running, preRoutinesCalled, qt_call_post_routines(), QT_CATCH, QT_TRY, QThreadPoolPrivate::qtGuiInstance(), and QThreadPool::waitForDone().
|
protected |
Definition at line 766 of file qcoreapplication.cpp.
|
signal |
This signal is emitted when the application is about to quit the main event loop, e.g.
when the event loop level drops to zero. This may happen either after a call to quit() from inside the application or when the user shuts down the entire desktop session.
The signal is particularly useful if your application has to do some last-second cleanup. Note that no user interaction is possible in this state.
Referenced by exit(), and QSingleShotTimer::startTimerForReceiver().
|
static |
Returns the directory that contains the application executable.
For example, if you have installed Qt in the {C:\Qt} directory, and you run the
{regexp} example, this function will return "C:/Qt/examples/tools/regexp".
On \macos and iOS this will point to the directory actually containing the executable, which may be inside an application bundle (if the application is bundled).
{/proc}
file system. If that fails, it assumes that {argv
[0]} contains the absolute file name of the executable. The function also assumes that the current directory has not been changed by the application.Definition at line 2407 of file qcoreapplication.cpp.
References applicationFilePath(), d, QFileInfo::path(), and qWarning.
Referenced by QQmlImportDatabase::QQmlImportDatabase(), deployQmlImports(), iconThemeSearchPaths(), main(), prefixFromAppDirHelper(), and QTest::qFindTestData().
|
static |
Returns the file path of the application executable.
For example, if you have installed Qt in the {/usr/local/qt} directory, and you run the
{regexp} example, this function will return "/usr/local/qt/examples/tools/regexp/regexp".
{/proc}
file system. If that fails, it assumes that {argv
[0]} contains the absolute file name of the executable. The function also assumes that the current directory has not been changed by the application.Definition at line 2459 of file qcoreapplication.cpp.
References QDir::absoluteFilePath(), arguments(), QString::at(), at, QCoreApplicationPrivate::cachedApplicationFilePath, QFileInfo::canonicalFilePath(), QCoreApplicationPrivate::clearApplicationFilePath(), QString::contains(), QDir::current(), d, QFile::decodeName(), QStandardPaths::findExecutable(), QString::isEmpty(), qAppFileName(), qWarning, QCoreApplicationPrivate::setApplicationFilePath(), and toLocal8Bit().
Referenced by QHaikuIntegration::QHaikuIntegration(), QCoreApplicationPrivate::appendApplicationPathToLibraryPaths(), applicationDirPath(), sm_performSaveYourself(), and QV4::ExecutableCompilationUnit::verifyHeader().
|
static |
|
signal |
Primarily for QML, see organizationNameChanged.
Referenced by Q_TRACE_INSTRUMENT(), QGuiApplication::setApplicationDisplayName(), and setApplicationName().
|
static |
Returns the current process ID for the application.
Definition at line 2518 of file qcoreapplication.cpp.
Referenced by QBluetoothSocketPrivateBluezDBus::connectToServiceHelper(), QLockFilePrivate::lockFileContents(), and QBenchmarkValgrindUtils::outFileBase().
|
static |
|
signal |
Primarily for QML, see organizationNameChanged.
Referenced by setApplicationVersion().
|
static |
Returns the list of command-line arguments.
Usually arguments().at(0) is the program name, arguments().at(1) is the first argument, and arguments().last() is the last argument. See the note below about Windows.
Calling this function is slow - you should store the result in a variable when parsing the command line.
On Windows, the list is built from the argc and argv parameters only if modified argv/argc parameters are passed to the constructor. In that case, encoding problems might occur.
Otherwise, the arguments() are constructed from the return value of \l{https://docs.microsoft.com/en-us/windows/win32/api/processenv/nf-processenv-getcommandlinea}{GetCommandLine()}. As a result of this, the string given by arguments().at(0) might not be the program name on Windows, depending on how the application was started.
Definition at line 2560 of file qcoreapplication.cpp.
References contains(), d, QString::fromLocal8Bit(), QString::fromWCharArray(), i, list, qWarning, and QList< T >::reserve().
Referenced by applicationFilePath(), QQmlApplication::args(), argv0BaseName(), contextFactory(), QCommandLineParserPrivate::helpText(), QWaylandCompositorPrivate::init(), QDirectFbIntegration::initializeDirectFB(), main(), main(), QSSGLayerRenderData::maybeBakeLightmap(), parseOptions(), parseOptions(), printHelp(), QCommandLineParser::process(), QTest::qRun(), QDBusXmlToCpp::run(), runMoc(), and sm_performSaveYourself().
|
static |
Returns true
if the application objects are being destroyed; otherwise returns false
.
Definition at line 1311 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::is_app_closing.
Referenced by SharedTextureFactory::~SharedTextureFactory(), QtWaylandClient::VulkanServerBuffer::~VulkanServerBuffer(), QFontComboBoxPrivate::_q_updateModel(), QWidget::changeEvent(), QPixmapCache::clear(), QThreadPool::globalInstance(), QWindowSystemInterface::handleScreenRemoved(), QtWaylandClient::QWaylandDisplay::handleWindowDeactivated(), QWidgetPrivate::invalidateBackingStore(), QThreadPoolPrivate::qtGuiInstance(), QEventDispatcherWin32::registerSocketNotifier(), removeTranslator(), QDragManager::self(), QQmlThread::shutdown(), QQuickPixmapStore::unreferencePixmap(), and QMacMimeRegistry::unregisterMimeConverter().
|
protectedvirtual |
Returns true
if event was compressed away (possibly deleted) and should not be added to the list.
Reimplemented in QGuiApplication, and QApplication.
Definition at line 1708 of file qcoreapplication.cpp.
References QObject::d_ptr, QEvent::DeferredDelete, QObjectData::deleteLaterCalled, e, QObject::event(), Q_ASSERT, QEvent::Quit, and QEvent::Timer.
Referenced by QGuiApplication::compressEvent(), and postEvent().
|
overrideprotectedvirtual |
\reimp
Reimplemented from QObject.
Reimplemented in QGuiApplication.
Definition at line 2047 of file qcoreapplication.cpp.
References e, QObject::event(), exit(), and QEvent::Quit.
Referenced by QGuiApplication::event(), and QApplication::event().
|
static |
Returns a pointer to the event dispatcher object for the main thread.
If no event dispatcher exists for the thread, this function returns \nullptr.
Definition at line 3249 of file qcoreapplication.cpp.
References QThread::eventDispatcher(), QBasicAtomicPointer< X >::loadRelaxed(), and QCoreApplicationPrivate::theMainThread.
Referenced by QGstPipelinePrivate::QGstPipelinePrivate(), QQnxWindowGrabber::QQnxWindowGrabber(), QQnxWindowGrabber::~QQnxWindowGrabber(), installNativeEventFilter(), QGuiApplicationPrivate::qt_qpa_core_dispatcher(), removeNativeEventFilter(), setEventDispatcher(), and QXcbEventQueue::wakeUpDispatcher().
|
static |
Enters the main event loop and waits until exit() is called.
Returns the value that was passed to exit() (which is 0 if exit() is called via quit()).
It is necessary to call this function to start event handling. The main event loop receives events from the window system and dispatches these to the application widgets.
To make your application perform idle processing (by executing a special function whenever there are no pending events), use a QTimer with 0 timeout. More advanced idle processing schemes can be achieved using processEvents().
We recommend that you connect clean-up code to the \l{QCoreApplication::}{aboutToQuit()} signal, instead of putting it in your application's {main()} function because on some platforms the exec() call may not return. For example, on Windows when the user logs off, the system terminates the process after Qt closes all top-level windows. Hence, there is no guarantee that the application will have time to exit its event loop and execute code at the end of the
{main()} function after the exec() call.
Definition at line 1439 of file qcoreapplication.cpp.
References QEventLoop::ApplicationExec, QCoreApplicationPrivate::checkInstance(), QThreadData::current(), QThreadData::eventLoops, QEventLoop::exec(), QList< T >::isEmpty(), QThreadData::quitNow, and qWarning.
Referenced by QGuiApplication::exec().
|
staticslot |
Tells the application to exit with a return code.
After this function has been called, the application leaves the main event loop and returns from the call to exec(). The exec() function returns returnCode. If the event loop is not running, this function does nothing.
By convention, a returnCode of 0 means success, and any non-zero value indicates an error.
It's good practice to always connect signals to this slot using a \l{Qt::}{QueuedConnection}. If a signal connected (non-queued) to this slot is emitted before control enters the main event loop (such as before "int main" calls \l{QCoreApplication::}{exec()}), the slot has no effect and the application never exits. Using a queued connection ensures that the slot will not be invoked until after control enters the main event loop.
Note that unlike the C library function of the same name, this function does return to the caller – it is event processing that stops.
Note also that this function is not thread-safe. It should be called only from the main thread (the thread that the QCoreApplication object is processing events on). To ask the application to exit from another thread, either use QCoreApplication::quit() or instead call this function from the main thread with QMetaMethod::invokeMethod().
Definition at line 1511 of file qcoreapplication.cpp.
References aboutToQuit(), d, emit, QEventLoop::exit(), and i.
Referenced by event(), and QQmlApplicationEnginePrivate::init().
void QCoreApplication::installNativeEventFilter | ( | QAbstractNativeEventFilter * | filterObj | ) |
Installs an event filter filterObj for all native events received by the application in the main thread.
The event filter filterObj receives events via its \l {QAbstractNativeEventFilter::}{nativeEventFilter()} function, which is called for all native events received in the main thread.
The QAbstractNativeEventFilter::nativeEventFilter() function should return true if the event should be filtered, i.e. stopped. It should return false to allow normal Qt processing to continue: the native event can then be translated into a QEvent and handled by the standard Qt \l{QEvent} {event} filtering, e.g. QObject::installEventFilter().
If multiple event filters are installed, the filter that was installed last is activated first.
For maximum portability, you should always try to use QEvent and QObject::installEventFilter() whenever possible.
Definition at line 3211 of file qcoreapplication.cpp.
References Qt::AA_PluginApplication, eventDispatcher(), QAbstractEventDispatcher::installNativeEventFilter(), QAbstractEventDispatcher::instance(), qWarning, testAttribute(), and QCoreApplicationPrivate::theMainThread.
|
static |
Adds the translation file translationFile to the list of translation files to be used for translations.
Multiple translation files can be installed. Translations are searched for in the reverse order in which they were installed, so the most recently installed translation file is searched first and the first translation file installed is searched last. The search stops as soon as a translation containing a matching string is found.
Installing or removing a QTranslator, or changing an installed QTranslator generates a \l{QEvent::LanguageChange}{LanguageChange} event for the QCoreApplication instance. A QApplication instance will propagate the event to all toplevel widgets, where a reimplementation of changeEvent can re-translate the user interface by passing user-visible strings via the tr() function to the respective property setters. User-interface classes generated by Qt Designer provide a retranslateUi()
function that can be called.
The function returns true
on success and false on failure.
Definition at line 2196 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::checkInstance(), d, QTranslator::isEmpty(), QEvent::LanguageChange, and sendEvent().
Referenced by QQmlApplicationEnginePrivate::_q_loadTranslations(), QQmlApplicationEnginePrivate::init(), main(), quick_test_main_with_setup(), and ProxyTranslator::setLanguage().
|
inlinestaticnoexcept |
Returns a pointer to the application's QCoreApplication (or QGuiApplication/QApplication) instance.
If no instance has been allocated, \nullptr is returned.
Definition at line 93 of file qcoreapplication.h.
Referenced by QCupsPrinterSupport::QCupsPrinterSupport(), QEventDispatcherGlibPrivate::QEventDispatcherGlibPrivate(), QEventLoop::QEventLoop(), QEventLoopLocker::QEventLoopLocker(), QHostInfoLookupManager::QHostInfoLookupManager(), QMdiArea::QMdiArea(), QQmlApplication::QQmlApplication(), QQmlApplication::QQmlApplication(), QQmlPreviewHandler::QQmlPreviewHandler(), QQuickApplication::QQuickApplication(), QQuickGraphicsConfigurationPrivate::QQuickGraphicsConfigurationPrivate(), QSocks5BindStore::QSocks5BindStore(), QTlsBackend::QTlsBackend(), QWindowContainer::QWindowContainer(), QWindowsKeyMapper::QWindowsKeyMapper(), QEvent::~QEvent(), QTranslator::~QTranslator(), QJSEnginePrivate::addToDebugServer(), animationTimerCallback(), QTextHtmlParserNode::applyBackgroundImage(), QTextHtmlParserNode::applyForegroundImage(), checkForApplicationInstance(), QQuickWindowQmlImpl::classBegin(), QTranslatorPrivate::clear(), QPaintEngine::createPixmap(), QPaintEngine::createPixmapFromImage(), QWindowSystemInterface::deferredFlushWindowSystemEvents(), QQmlDelegateModelItem::destroyObject(), QQmlApplication::domain(), doUseNativeMenus(), QTextImageHandler::drawObject(), QScrollArea::event(), QEventLoop::exec(), QWindowSystemInterface::flushWindowSystemEvents(), QPixmap::fromImage(), QPixmap::fromImageInPlace(), QPixmap::fromImageReader(), QWindowSystemHelper< Delivery >::handleEvent(), QQmlApplicationEnginePrivate::init(), QWaylandCompositorPrivate::init(), QPrinterPrivate::init(), QSqlDatabasePrivate::init(), QQuickWindowPrivate::init(), QWidgetPrivate::init(), QGuiApplicationPrivate::inputDeviceManager(), QTestEventLoop::instance(), PressDelayHandler::instance(), QTextImageHandler::intrinsicSize(), keywords(), QDnsLookup::lookup(), mainThreadCoInit(), mainThreadCoUninit(), QQmlApplication::name(), QDesktopServices::openUrl(), QQmlApplication::organization(), QSvgIconEngine::pixmap(), QtGlobalStatic::ApplicationHolder< QAS >::pointer(), prefixFromAppDirHelper(), preRoutineMyDebugTool(), QInputDevice::primaryKeyboard(), QPointingDevice::primaryPointingDevice(), QGuiApplicationPrivate::processApplicationTermination(), QEventDispatcherWin32::processEvents(), QGuiApplicationPrivate::processScreenOrientationChange(), qAddPreRoutine(), qDBusInterfaceFromMetaObject(), qt_defaultDpiX(), qt_defaultDpiY(), qt_pixmap_thread_test(), qt_pixmapcache_thread_test(), QGuiApplicationPrivate::qt_qpa_core_dispatcher(), quick_test_main_with_setup(), QTest::qWait(), QHaikuApplication::RefsReceived(), QMainNfcNewIntentListener::registerListener(), requestFullUpdate(), QCoreApplicationPrivate::sendThroughObjectEventFilters(), QQmlApplication::setDomain(), QQmlApplication::setName(), QQmlApplication::setOrganization(), QOffscreenSurface::setScreen(), QQmlApplication::setVersion(), showParserMessage(), QSingleShotTimer::startTimerForReceiver(), QApplication::style(), QPointingDevicePrivate::tabletDevice(), themeableHint(), themeableHint(), updateWindow(), QWindowsVistaStylePrivate::useVista(), QQC2::QWindowsXPStylePrivate::useXP(), and QQmlApplication::version().
|
static |
Definition at line 1079 of file qcoreapplication.cpp.
References quitLockEnabled.
|
static |
Returns true if the application is allowed to run setuid on UNIX platforms.
Definition at line 1008 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::setuidAllowed.
Sends event to receiver: {receiver}->event(event).
Returns the value that is returned from the receiver's event handler. Note that this function is called for all events sent to any object in any thread.
For certain types of events (e.g. mouse and key events), the event will be propagated to the receiver's parent and so on up to the top-level object if the receiver is not interested in the event (i.e., it returns false
).
There are five different ways that events can be processed; reimplementing this virtual function is just one of them. All five approaches are listed below: \list 1
{Future direction:} This function will not be called for objects that live outside the main thread in Qt 6. Applications that need that functionality should find other solutions for their event inspection needs in the meantime. The change may be extended to the main thread, causing this function to be deprecated.
Reimplemented in QGuiApplication, and QApplication.
Definition at line 1192 of file qcoreapplication.cpp.
References doNotify(), QCoreApplicationPrivate::is_app_closing, and Q_ASSERT.
Referenced by QGuiApplication::notify().
|
static |
|
signal |
Primarily for QML, see organizationNameChanged.
Referenced by setOrganizationDomain().
|
static |
|
signal |
While not useful from C++ due to how organizationName is normally set once on startup, this is still needed for QML so that bindings are reevaluated after that initial change.
Referenced by setOrganizationName().
|
static |
Adds the event event, with the object receiver as the receiver of the event, to an event queue and returns immediately.
The event must be allocated on the heap since the post event queue will take ownership of the event and delete it once it has been posted. It is {not safe} to access the event after it has been posted.
When control returns to the main event loop, all events that are stored in the queue will be sent using the notify() function.
Events are sorted in descending priority order, i.e. events with a high priority are queued before events with a lower priority. The priority can be any integer value, i.e. between INT_MAX and INT_MIN, inclusive; see Qt::EventPriority for more details. Events with equal priority will be processed in the order posted.
\threadsafe
Definition at line 1631 of file qcoreapplication.cpp.
References compressEvent(), QThreadData::current(), QObject::d_ptr, QEvent::DeferredDelete, QObjectData::deleteLaterCalled, QCoreApplicationPrivate::lockThreadPostEventList(), Q_ASSERT_X, Q_TRACE, Q_TRACE_SCOPE, Q_UNUSED, qWarning, and QAbstractEventDispatcher::wakeUp().
Referenced by QAndroidPlatformIntegration::QAndroidPlatformIntegration(), QWaylandCompositorExtension::QWaylandCompositorExtension(), QWaylandCompositorExtension::QWaylandCompositorExtension(), QQuickWorkerScriptEngine::~QQuickWorkerScriptEngine(), QWaylandCompositorPrivate::addPolishObject(), QV4::Promise::ReactionHandler::addReaction(), QV4::Promise::ReactionHandler::addResolveThenable(), QQmlTimerPrivate::animationFinished(), QNetworkReplyImplPrivate::backendNotify(), MFStream::BeginRead(), QTranslatorPrivate::clear(), QObject::deleteLater(), QDBusAbstractInterface::disconnectNotify(), doActivate(), QGuiApplication::event(), QApplication::event(), QEventDispatcherWin32::event(), QBasicDrag::eventFilter(), QGraphicsScene::eventFilter(), QQuickWorkerScriptEngine::executeUrl(), QEglFSKmsVsp2Screen::flip(), QQuickContext2D::flush(), QDBusConnectionPrivate::handleMessage(), QWidgetWindow::handleMouseEvent(), QWidgetPrivate::init(), QGraphicsLayout::invalidate(), QMetaMethodInvoker::invokeImpl(), QQmlTimerPrivate::maybeTick(), QQuickWorkerScriptEnginePrivate::method_sendMessage(), QFutureWatcherBasePrivate::postCallOutEvent(), QtPrivate::QBasicFutureWatcherPrivate::postCallOutEvent(), QQuickPixmapReply::postReply(), QXcbWindow::postSyncWindowRequest(), QQuickContext2D::prepare(), EVRCustomPresenter::presentSample(), ReaderThreadExecutionEnforcer::processJobsOnReaderThreadLater(), qt_fast_timer_proc(), queued_activate(), QCoreApplicationPrivate::quit(), QCoreApplicationPrivate::quitAutomatically(), QHaikuApplication::RefsReceived(), QEventDispatcherWin32Private::registerTimer(), QQmlDelegateModelPrivate::releaseIncubator(), QQuickWorkerScriptEngine::removeWorkerScript(), QQuickWindowPrivate::renderSceneGraph(), requestFullUpdate(), QQmlDelegateModelPrivate::requestMoreIfNecessary(), QSettingsPrivate::requestUpdate(), QQuickDragAttachedPrivate::restartDrag(), QNetworkReplyImplPrivate::resumeNotificationHandling(), QSGRenderThread::run(), QFbScreen::scheduleUpdate(), QAndroidPlatformScreen::scheduleUpdate(), QQuickWorkerScriptEngine::sendMessage(), QEglFSKmsVsp2Screen::setLayerBuffer(), QWidgetPrivate::setVisible(), QtWaylandClient::QWaylandWlShellSurface::shell_surface_popup_done(), QWidgetPrivate::show_sys(), QQmlData::signalEmitted(), EVRCustomPresenter::startSurface(), QEglFSKmsEventReader::startWaitFlip(), EVRCustomPresenter::stopSurface(), QQmlListModelWorkerAgent::sync(), QSGRenderThread::syncAndRender(), QQuickContext2D::toImage(), QQmlThreadPrivate::triggerMainEvent(), QQmlThreadPrivate::triggerThreadEvent(), QLayout::update(), QWidgetPrivate::update(), QGraphicsWidget::updateGeometry(), QWidgetPrivate::updateGeometry_helper(), QQuickDragAttachedPrivate::updatePosition(), and QWinEventNotifierPrivate::waitCallback().
|
static |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Processes pending events for the calling thread for ms milliseconds or until there are no more events to process, whichever is shorter.
This is equivalent to calling:
Definition at line 1365 of file qcoreapplication.cpp.
References processEvents().
|
static |
Processes pending events for the calling thread untile deadline has expired, or until there are no more events to process, whichever happens first.
Use of this function is discouraged. Instead, prefer to move long operations out of the GUI thread into an auxiliary one and to completely avoid nested event loop processing. If event processing is really necessary, consider using \l QEventLoop instead.
Calling this function processes events only for the calling thread.
\threadsafe
Definition at line 1394 of file qcoreapplication.cpp.
References QThreadData::current(), deadline, QDeadlineTimer::hasExpired(), and QEventLoop::WaitForMoreEvents.
|
static |
Processes some pending events for the calling thread according to the specified flags.
Use of this function is discouraged. Instead, prefer to move long operations out of the GUI thread into an auxiliary one and to completely avoid nested event loop processing. If event processing is really necessary, consider using \l QEventLoop instead.
In the event that you are running a local loop which calls this function continuously, without an event loop, the \l{QEvent::DeferredDelete}{DeferredDelete} events will not be processed. This can affect the behaviour of widgets, e.g. QToolTip, that rely on \l{QEvent::DeferredDelete}{DeferredDelete} events to function properly. An alternative would be to call \l{QCoreApplication::sendPostedEvents()}{sendPostedEvents()} from within that local loop.
Calling this function processes events only for the calling thread, and returns after all available events have been processed. Available events are events queued before the function call. This means that events that are posted while the function runs will be queued until a later round of event processing.
\threadsafe
Definition at line 1345 of file qcoreapplication.cpp.
References QThreadData::current().
Referenced by QAlsaAudioSink::~QAlsaAudioSink(), QAlsaAudioSource::~QAlsaAudioSource(), QPulseAudioSink::~QPulseAudioSink(), QPulseAudioSource::~QPulseAudioSource(), QQuickWorkerScriptEngine::~QQuickWorkerScriptEngine(), await(), QTest::QTouchEventSequence::commit(), QTest::QTouchEventWidgetSequence::commit(), QSGSoftwareRenderThread::event(), QSGRenderThread::invalidateGraphics(), main(), processEvents(), QWindowsOleDropSource::QueryContinueDrag(), QTest::qWait(), qWaitForSignal(), QSplashScreen::repaint(), QSGSoftwareRenderThread::run(), QSGRenderThread::run(), QProgressDialog::setValue(), QWidgetPrivate::show_helper(), QGuiApplication::sync(), QNearFieldTargetPrivate::waitForRequestCompleted(), and waitForWindowExposed().
|
staticslot |
\threadsafe
Asks the application to quit.
The request may be ignored if the application prevents the quit, for example if one of its windows can't be closed. The application can affect this by handling the QEvent::Quit event on the application level, or QEvent::Close events for the individual windows.
If the quit is not interrupted the application will exit with return code 0 (success).
To exit the application without a chance of being interrupted, call exit() directly. Note that method is not thread-safe.
It's good practice to always connect signals to this slot using a \l{Qt::}{QueuedConnection}. If a signal connected (non-queued) to this slot is emitted before control enters the main event loop (such as before "int main" calls \l{QCoreApplication::}{exec()}), the slot has no effect and the application never exits. Using a queued connection ensures that the slot will not be invoked until after control enters the main event loop.
Example:
{Thread-safety note}: this function may be called from any thread to thread-safely cause the currently-running main application loop to exit. However, thread-safety is not guaranteed if the QCoreApplication object is being destroyed at the same time.
Definition at line 2127 of file qcoreapplication.cpp.
References quit().
Referenced by TextureSharingExtension::TextureSharingExtension(), QQnxNavigatorEventHandler::handleExit(), QQmlApplicationEnginePrivate::init(), main(), QEventDispatcherWin32::processEvents(), quit(), quitQtCoreApplication(), QGuiApplication::setQuitOnLastWindowClosed(), terminateQt(), QtWaylandClient::QWaylandWindowManagerIntegration::windowmanager_quit(), and QWindowsContext::windowsProc().
void QCoreApplication::removeNativeEventFilter | ( | QAbstractNativeEventFilter * | filterObject | ) |
Removes an event filterObject from this object.
The request is ignored if such an event filter has not been installed.
All event filters for this object are automatically removed when this object is destroyed.
It is always safe to remove an event filter, even during event filter activation (i.e. from the nativeEventFilter() function).
Definition at line 3237 of file qcoreapplication.cpp.
References eventDispatcher(), QAbstractEventDispatcher::instance(), and QAbstractEventDispatcher::removeNativeEventFilter().
Removes all events of the given eventType that were posted using postEvent() for receiver.
The events are not dispatched, instead they are removed from the queue. You should never need to call this function. If you do call it, be aware that killing events may cause receiver to break one or more invariants.
If receiver is \nullptr, the events of eventType are removed for all objects. If eventType is 0, all the events are removed for receiver. You should never call this function with eventType of 0.
\threadsafe
Definition at line 1951 of file qcoreapplication.cpp.
References QVarLengthArray< T, Prealloc >::append(), QPostEvent::event, i, j, QCoreApplicationPrivate::lockThreadPostEventList(), Q_ASSERT, qDeleteAll(), qSwap(), QPostEvent::receiver, QVLABaseBase::size(), and QEvent::type().
Referenced by QObjectPrivate::~QObjectPrivate(), QWidget::~QWidget(), QtPrivate::QBasicFutureWatcherPrivate::callOutInterfaceDisconnected(), QFutureWatcherBasePrivate::callOutInterfaceDisconnected(), QEventLoop::exec(), QWindowPrivate::setVisible(), and QMessageBoxPrivate::updateSize().
|
static |
Removes the translation file translationFile from the list of translation files used by this application.
(It does not delete the translation file from the file system.)
The function returns true
on success and false on failure.
Definition at line 2232 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::checkInstance(), closingDown(), d, QEvent::LanguageChange, and sendEvent().
Referenced by QTranslator::~QTranslator(), QQmlApplicationEnginePrivate::_q_loadTranslations(), and ProxyTranslator::setLanguage().
Sends event event directly to receiver receiver, using the notify() function.
Returns the value that was returned from the event handler.
The event is not deleted when the event has been sent. The normal approach is to create the event on the stack, for example:
Definition at line 1547 of file qcoreapplication.cpp.
References Q_ASSERT_X, and Q_TRACE.
Referenced by QMacStyle::QMacStyle(), QQC2_NAMESPACE::QMacStyle::QMacStyle(), QWhatsThisPrivate::QWhatsThisPrivate(), QWidget::~QWidget(), QGraphicsScenePrivate::_q_polishItems(), QEventDispatcherUNIXPrivate::activateSocketNotifiers(), QTimerInfoList::activateTimers(), QWidget::changeEvent(), QAbstractItemViewPrivate::checkMouseMove(), QWidget::clearFocus(), QQuickDeliveryAgentPrivate::clearFocusInScope(), QGraphicsWidget::close(), QMdiSubWindow::closeEvent(), QApplicationPrivate::closePopup(), QIBusPlatformInputContext::commit(), QtWaylandClient::QWaylandTextInputv1::commit(), QtWaylandClient::QWaylandTextInputv2::commit(), QIBusPlatformInputContext::commitText(), QWindowsInputContext::composition(), QDialog::contextMenuEvent(), QGraphicsView::contextMenuEvent(), QGraphicsProxyWidget::contextMenuEvent(), QOffscreenSurface::create(), QWindowPrivate::create(), QIBusPlatformInputContext::deleteSurroundingText(), QAndroidInputContext::deleteSurroundingText(), QQuickDeliveryAgentPrivate::deliverHoverEventToItem(), QQuickDeliveryAgentPrivate::deliverKeyEvent(), QQuickDeliveryAgentPrivate::deliverMatchingPointsToItem(), QQuickDeliveryAgentPrivate::deliverSinglePointEventUntilAccepted(), QQuickDeliveryAgentPrivate::deliverToPassiveGrabbers(), QQuickDeliveryAgentPrivate::deliverTouchAsMouse(), QPlatformWindow::deliverUpdateRequest(), QOffscreenSurface::destroy(), QWindowPrivate::destroy(), QApplicationPrivate::dispatchEnterLeave(), QAbstractItemView::doAutoScroll(), QQuickTableViewPrivate::editFromKeyEvent(), QWindowsInputContext::endComposition(), QWidget::ensurePolished(), QAction::event(), QWindow::event(), QApplication::event(), QSystemTrayIconSys::event(), QQuickItem::event(), QQuickWindow::event(), QQuickWidget::event(), QEventDispatcherWin32::event(), QProxyStyle::event(), QWindowContainer::event(), QQuickDeliveryAgent::event(), QGraphicsProxyWidget::event(), QGraphicsView::event(), QWidget::event(), QMdiArea::event(), QWhatsThisPrivate::eventFilter(), QCompleter::eventFilter(), QFontDialog::eventFilter(), QComposeInputContext::filterEvent(), QGraphicsView::focusInEvent(), QQuickWidget::focusNextPrevChild(), QGraphicsView::focusOutEvent(), QIBusPlatformInputContext::forwardKeyEvent(), QQuickSwipeDelegatePrivate::forwardMouseEvent(), QWidgetPrivate::handleClose(), QAndroidInputContext::handleLocationChanged(), QGuiApplicationPrivate::handlePaletteChanged(), QApplicationPrivate::handlePaletteChanged(), QWidgetPrivate::hide_helper(), QWidgetPrivate::hideChildren(), QIBusPlatformInputContext::hidePreeditText(), QWaylandCompositorPrivate::init(), QWidgetPrivate::init(), QGraphicsProxyWidget::inputMethodEvent(), QGraphicsView::inputMethodEvent(), QAbstractItemView::inputMethodEvent(), inputMethodQueryRectangle_helper(), QGraphicsWidget::insertAction(), QWidget::insertAction(), installTranslator(), QGraphicsWidget::itemChange(), QQuickKeysAttached::keyPressed(), QMenu::keyPressEvent(), QQuickWidget::keyPressEvent(), QGraphicsView::keyPressEvent(), QQuickKeysAttached::keyReleased(), QQuickWidget::keyReleaseEvent(), QGraphicsView::keyReleaseEvent(), QAndroidInputContext::longPress(), QWidget::lower(), QQuickWidget::mouseDoubleClickEvent(), QGraphicsView::mouseDoubleClickEvent(), QMenuPrivate::mouseEventTaken(), QQuickWidget::mouseMoveEvent(), QHeaderView::mouseMoveEvent(), QGraphicsViewPrivate::mouseMoveEventHandler(), QQuickWidget::mousePressEvent(), QGraphicsView::mousePressEvent(), QWhatsThat::mouseReleaseEvent(), QQuickWidget::mouseReleaseEvent(), QGraphicsView::mouseReleaseEvent(), QQuickFlickable::mouseReleaseEvent(), QQuickVisualTestUtils::moveMouseAway(), QObjectPrivate::moveToThread_helper(), QApplicationPrivate::notifyActiveWindowChange(), QGuiApplicationPrivate::notifyActiveWindowChange(), QGuiApplicationPrivate::notifyLayoutDirectionChange(), QApplicationPrivate::notifyLayoutDirectionChange(), QWhatsThisPrivate::notifyToplevels(), QGuiApplicationPrivate::notifyWindowIconChanged(), QApplicationPrivate::notifyWindowIconChanged(), QInputMethodPrivate::objectAcceptsInputMethod(), QAbstractItemViewPrivate::openEditor(), QApplicationPrivate::openPopup(), QWidget::overrideWindowState(), QtPrivate::QBasicFutureWatcherPrivate::postCallOutEvent(), QGuiApplicationPrivate::processScreenOrientationChange(), QQuickMenuPrivate::propagateKeyEvent(), QWidgetPrivate::propagatePaletteChange(), qSendWindowChangeToTextureChildrenRecursively(), qt_sendShortcutOverrideEvent(), QInputMethod::queryFocusObject(), queryInputMethod(), querySelection(), QCoreApplicationPrivate::quit(), QWidget::raise(), QWindowsInputContext::reconvertString(), QGraphicsWidget::removeAction(), QWidget::removeAction(), QGraphicsProxyWidgetPrivate::removeSubFocusHelper(), removeTranslator(), QQuickFlickablePrivate::replayDelayedPress(), QWindowsInputContext::reset(), QWidgetPrivate::scrollChildren(), sendChangeRecursively(), QActionPrivate::sendDataChanged(), QGraphicsScenePrivate::sendEvent(), QQuickDeliveryAgentPrivate::sendHoverEvent(), QApplicationPrivate::sendMouseEvent(), QWidgetPrivate::sendPendingMoveAndResizeEvents(), QCoreApplicationPrivate::sendPostedEvents(), sendResizeEvents(), QAndroidInputContext::sendShortcut(), QEventDispatcherWin32Private::sendTimerEvent(), QPointingDevicePrivate::sendTouchCancelEvent(), QGraphicsProxyWidgetPrivate::sendWidgetKeyEvent(), QGraphicsScenePrivate::setActivePanelHelper(), QApplicationPrivate::setActiveWindow(), QWidget::setAttribute(), QAndroidInputContext::setComposingText(), QGraphicsWidget::setContentsMargins(), QMenuBarPrivate::setCurrentAction(), QWidget::setCursor(), QWindowPrivate::setCursor(), QWidgetPrivate::setEnabled_helper(), QGraphicsScene::setFocus(), QWidget::setFocus(), QQuickDeliveryAgentPrivate::setFocusInScope(), QQnxInputContext::setFocusObject(), QApplicationPrivate::setFocusWidget(), QGuiApplication::setFont(), QApplication::setFont(), QWidgetPrivate::setGeometry_sys(), QGraphicsWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QWidget::setParent(), QObjectPrivate::setParent_helper(), QAbstractSpinBox::setReadOnly(), QPlainTextEdit::setReadOnly(), QTextEdit::setReadOnly(), QLineEdit::setReadOnly(), QGraphicsView::setScene(), QAndroidInputContext::setSelection(), QPlatformInputContext::setSelectionOnFocusObject(), QApplication::setStyle(), QGraphicsScene::setStyle(), QGraphicsWidget::setStyle(), QWidgetPrivate::setStyle_helper(), QWindowPrivate::setVisible(), QDialogPrivate::setVisible(), QWidgetPrivate::setVisible(), QWidgetPrivate::setWindowIcon_helper(), QWidget::setWindowIconText(), QWidget::setWindowModified(), QWidget::setWindowState(), QWidget::setWindowTitle(), QWidgetPrivate::setWinId(), QWizard::setWizardStyle(), QWidgetPrivate::show_helper(), QGuiApplicationPrivate::showModalWindow(), QIBusPlatformInputContext::showPreeditText(), QActionPrivate::showStatusText(), socketNotifierSourceDispatch(), QWidget::stackUnder(), QtWaylandClient::QWaylandTextInputMethod::text_input_method_v1_end_input_method_event(), QtWaylandClient::QWaylandTextInputMethod::text_input_method_v1_key(), QMacPanGestureRecognizer::timerEvent(), QQuickFlickable::touchEvent(), QApplicationPrivate::translateRawTouchEvent(), QWidget::unsetCursor(), ImeState::update(), QIBusPlatformInputContext::update(), QtWaylandClient::QWaylandInputMethodContext::update(), updateBlockedStatusRecursion(), QWidgetPrivate::updateContentsRect(), QWindowPrivate::updateDevicePixelRatio(), QWidgetPrivate::updateFont(), QGraphicsScenePrivate::updateFont(), QGraphicsWidgetPrivate::updateFont(), QGraphicsScenePrivate::updatePalette(), QGraphicsWidgetPrivate::updatePalette(), QIBusPlatformInputContext::updatePreeditText(), QAndroidInputContext::updateSelectionHandles(), QtWaylandClient::QWaylandTextInputv1::updateState(), QtWaylandClient::QWaylandTextInputv2::updateState(), QtWaylandClient::QWaylandTextInputv4::updateState(), QStyleAnimation::updateTarget(), QHeaderView::viewportEvent(), QGraphicsView::viewportEvent(), QAbstractItemView::viewportEvent(), QtWaylandClient::QWaylandTextInputv1::zwp_text_input_v1_commit_string(), QtWaylandClient::QWaylandTextInputv1::zwp_text_input_v1_preedit_string(), QtWaylandClient::QWaylandTextInputv2::zwp_text_input_v2_commit_string(), QtWaylandClient::QWaylandTextInputv2::zwp_text_input_v2_preedit_string(), and QtWaylandClient::QWaylandTextInputv4::zwp_text_input_v4_done().
Immediately dispatches all events which have been previously queued with QCoreApplication::postEvent() and which are for the object receiver and have the event type event_type.
Events from the window system are not dispatched by this function, but by processEvents().
If receiver is \nullptr, the events of event_type are sent for all objects. If event_type is 0, all the events are sent for receiver.
Definition at line 1772 of file qcoreapplication.cpp.
References QThreadData::current(), and QCoreApplicationPrivate::sendPostedEvents().
Referenced by QAbstractItemView::closeEditor(), QGraphicsViewPrivate::dispatchPendingUpdateRequests(), QSGSoftwareRenderThread::event(), QCoreApplicationPrivate::execCleanup(), QSGRenderThread::invalidateGraphics(), postEventSourceDispatch(), QEventDispatcherWasm::processPostedEvents(), QCocoaEventDispatcherPrivate::processPostedEvents(), qFadeEffect(), qScrollEffect(), QTest::qWait(), qWaitForSignal(), QSGSoftwareRenderThread::sync(), QSGRenderThread::sync(), QDBusPendingCallWatcher::waitForFinished(), and waitForWindowExposed().
Definition at line 2711 of file qcoreapplication.cpp.
References applicationNameChanged(), emit, and QString::isEmpty().
Referenced by main(), main(), QQmlApplication::setName(), and snippet_ctor2().
Definition at line 2764 of file qcoreapplication.cpp.
References applicationVersion, applicationVersionChanged(), emit, and QString::isEmpty().
Referenced by main(), main(), runMoc(), runRcc(), runUic(), and QQmlApplication::setVersion().
|
static |
Sets the attribute attribute if on is true; otherwise clears the attribute.
[95]
[96]
Definition at line 1024 of file qcoreapplication.cpp.
References Qt::AA_PluginApplication, Qt::AA_ShareOpenGLContexts, Qt::AA_UseDesktopOpenGL, Qt::AA_UseOpenGLES, Qt::AA_UseSoftwareOpenGL, QCoreApplicationPrivate::attribs, QCoreApplicationPrivate::is_app_running, Q_UNLIKELY, qApp, and qWarning.
Referenced by init_platform(), QApplicationPrivate::initialize(), QWindowsIntegrationPrivate::parseOptions(), and QGuiApplicationPrivate::setPalette().
|
static |
Sets the event dispatcher for the main thread to eventDispatcher.
This is only possible as long as there is no event dispatcher installed yet. That is, before QCoreApplication has been instantiated. This method takes ownership of the object.
Definition at line 3262 of file qcoreapplication.cpp.
References QThread::currentThread(), eventDispatcher(), QBasicAtomicPointer< X >::loadAcquire(), QThread::setEventDispatcher(), and QCoreApplicationPrivate::theMainThread.
Definition at line 2673 of file qcoreapplication.cpp.
References emit, and organizationDomainChanged().
Referenced by QQmlApplication::setDomain(), and snippet_ctor2().
[11]
[12]
Definition at line 2636 of file qcoreapplication.cpp.
References emit, and organizationNameChanged().
Referenced by QQmlApplication::setOrganization(), and snippet_ctor2().
|
static |
Definition at line 1086 of file qcoreapplication.cpp.
References enabled, and quitLockEnabled.
Referenced by QuitLockDisabler::QuitLockDisabler(), and QuitLockDisabler::~QuitLockDisabler().
|
static |
Allows the application to run setuid on UNIX platforms if allow is true.
If allow is false (the default) and Qt detects the application is running with an effective user id different than the real user id, the application will be aborted when a QCoreApplication instance is created.
Qt is not an appropriate solution for setuid programs due to its large attack surface. However some applications may be required to run in this manner for historical reasons. This flag will prevent Qt from aborting the application when this is detected, and must be set before a QCoreApplication instance is created.
{setuid(2)} for itself, or at the latest by using the QProcess::UnixProcessParameters::ResetIds flag. Definition at line 995 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::setuidAllowed.
|
static |
Returns true
if an application object has not been created yet; otherwise returns false
.
Definition at line 1299 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::is_app_running.
Referenced by QCursor::QCursor(), QGuiApplicationPrivate::processScreenGeometryChange(), QGuiApplicationPrivate::processScreenLogicalDotsPerInchChange(), QGuiApplicationPrivate::processScreenOrientationChange(), and QGuiApplicationPrivate::processScreenRefreshRateChange().
|
static |
Returns true
if attribute attribute is set; otherwise returns false
.
Definition at line 1061 of file qcoreapplication.cpp.
References QCoreApplicationPrivate::testAttribute().
Referenced by QCocoaIntegration::QCocoaIntegration(), QOpenGLProgramBinarySupportCheck::QOpenGLProgramBinarySupportCheck(), QQuickGraphicsConfigurationPrivate::QQuickGraphicsConfigurationPrivate(), QWidgetWindow::QWidgetWindow(), QCocoaIntegration::~QCocoaIntegration(), QDialogPrivate::canBeNativeDialog(), QColorDialogPrivate::canBeNativeDialog(), QFileDialogPrivate::canBeNativeDialog(), QFontDialogPrivate::canBeNativeDialog(), QMessageBoxPrivate::canBeNativeDialog(), QQuickDeliveryAgentPrivate::deliverMatchingPointsToItem(), QQuickDeliveryAgentPrivate::deliverTouchAsMouse(), QStyleHelper::dpi(), QQC2::QStyleHelper::dpi(), QOpenGLWidget::event(), QQuickDeliveryAgent::event(), QMenuBarPrivate::init(), initializeRHI(), installNativeEventFilter(), QAction::isIconVisibleInMenu(), QAction::isShortcutVisibleInContextMenu(), QWidgetPrivate::naturalWidgetFont(), QWidgetPrivate::naturalWidgetPalette(), QWindowsIntegrationPrivate::parseOptions(), platformSurfaceType(), QWidgetPrivate::propagatePaletteChange(), qt_redirectNSApplicationSendEvent(), qt_resetNSApplicationSendEvent(), QWindowsOpenGLTester::requestedRenderer(), QQuickDeliveryAgentPrivate::sendFilteredPointerEventImpl(), QWidget::setAttribute(), QWidgetPrivate::setFocus_sys(), QAction::setIconVisibleInMenu(), QWidget::setParent(), QAction::setShortcutVisibleInContextMenu(), swapModifiersIfNeeded(), QQuickDeliveryAgentPrivate::touchToMouseEvent(), QWindowsPointerHandler::translatePointerEvent(), QWidgetPrivate::updateFont(), QQuickLabsPlatformDialog::useNativeDialog(), and QQuickAbstractDialog::useNativeDialog().
|
static |
\threadsafe
Returns the translation text for sourceText, by querying the installed translation files. The translation files are searched from the most recently installed file back to the first installed file.
QObject::tr() provides this functionality more conveniently.
context is typically a class name (e.g., "MyDialog") and sourceText is either English text or a short identifying text.
disambiguation is an identifying string, for when the same sourceText is used in different roles within the same context. By default, it is \nullptr.
See the \l QTranslator and \l QObject::tr() documentation for more information about contexts, disambiguations and comments.
n is used in conjunction with n
to support plural forms. See QObject::tr() for details.
If none of the translation files contain a translation for sourceText in context, this function returns a QString equivalent of sourceText.
This function is not virtual. You can use alternative translation techniques by subclassing \l QTranslator.
Definition at line 2314 of file qcoreapplication.cpp.
References context, d, QString::fromUtf8(), it, replacePercentN(), and QTranslator::translate().
Referenced by QtFontStyle::Key::Key(), QAbstractPrintDialog::QAbstractPrintDialog(), QAbstractPrintDialog::QAbstractPrintDialog(), QNetworkReplyDataImpl::QNetworkReplyDataImpl(), QNetworkReplyFileImpl::QNetworkReplyFileImpl(), QPageSetupDialog::QPageSetupDialog(), QPageSetupDialog::QPageSetupDialog(), QPrintPreviewDialogPrivate::_q_print(), QNetworkReplyImplPrivate::_q_startOperation(), addKey(), QMimerSQLDriver::beginTransaction(), QOCIDriver::beginTransaction(), checkRegistration(), QT_BEGIN_NAMESPACE::checkUsageTerms(), QMimerSQLDriver::commitTransaction(), QOCIDriver::commitTransaction(), QWindowsDirect2DIntegration::create(), QMimerSQLResult::data(), QKeySequencePrivate::decodeString(), QPlatformPrintDevice::defaultInputSlot(), QFileDialogOptions::defaultNameFilterString(), QPlatformPrintDevice::defaultOutputBin(), QPlatformTheme::defaultStandardButtonText(), detectMenuRole(), QStandardPaths::displayName(), QKeySequencePrivate::encodeString(), QHttpNetworkConnectionPrivate::errorDetail(), QJsonParseError::errorString(), QRegularExpression::errorString(), QSslDiffieHellmanParameters::errorString(), QDB2Result::exec(), QIBaseResult::exec(), QMimerSQLResult::exec(), QMYSQLResult::exec(), QOCIResult::exec(), QODBCResult::exec(), QPSQLResult::exec(), QSQLiteResult::exec(), QMimerSQLResult::execBatch(), QOCICols::execBatch(), f(), QDB2Result::fetch(), QMimerSQLResult::fetch(), QMYSQLResult::fetch(), QODBCResult::fetch(), QDB2Result::fetchFirst(), QMimerSQLResult::fetchFirst(), QODBCResult::fetchFirst(), QMimerSQLResult::fetchLast(), QODBCResult::fetchLast(), QDB2Result::fetchNext(), QMimerSQLResult::fetchNext(), QMYSQLResult::fetchNext(), QODBCResult::fetchNext(), QPSQLResult::fetchNext(), QSQLiteResultPrivate::fetchNext(), QODBCResult::fetchPrevious(), QQmlJS::Dom::fileTypeForPath(), QmlIR::IRBuilder::generateFromQml(), getFontWeight(), QOCIResult::gotoNext(), QHttp2ProtocolHandler::handleConnectionClosure(), QPrintPreviewDialogPrivate::init(), QIBaseDriverPrivate::isError(), QIBaseResultPrivate::isError(), QMimerSQLResult::isNull(), QKeySequencePrivate::keyName(), QHostInfoAgent::lookup(), main(), main(), QMediaMetaData::metaDataKeyToString(), msgCouldNotGet(), msgCouldNotSet(), msgImperialPageSizeInch(), msgType2i18nString(), QPageSize::name(), QDB2Result::nextResult(), QMYSQLResult::nextResult(), QODBCResult::nextResult(), QNetworkReplyHttpImplPrivate::onRedirected(), QNetworkFile::open(), QNetworkAccessCacheBackend::open(), QNetworkAccessFileBackend::open(), QMimerSQLDriver::open(), QDB2Result::prepare(), QMimerSQLResult::prepare(), QOCIResult::prepare(), QODBCResult::prepare(), QPSQLResult::prepare(), QSQLiteResult::prepare(), QMYSQLResult::prepare(), QPSQLResultPrivate::processResults(), qMakeError(), qt_mac_applicationmenu_string(), qt_nameForCustomSize(), qtTrId(), QNetworkAccessFileBackend::read(), QNetworkReplyHttpImpl::readData(), QNetworkReplyHttpImplPrivate::replyDownloadData(), QNetworkReplyHttpImplPrivate::replyDownloadMetaData(), QDB2Result::reset(), QMYSQLResult::reset(), QODBCResult::reset(), QPSQLResult::reset(), QMimerSQLDriver::rollbackTransaction(), QOCIDriver::rollbackTransaction(), PragmaParser< Argument >::run(), QQmlJS::Lexer::scanDirectives(), QQmlJS::Lexer::scanRegExp(), QDecompressHelper::setEncoding(), QQmlXmlListModel::setQuery(), QPrintPreviewDialogPrivate::setupActions(), QQmlPropertyCache::signalParameterStringForJS(), QGnomeTheme::standardButtonText(), QAndroidPlatformTheme::standardButtonText(), QCocoaTheme::standardButtonText(), standardLibraryErrorString(), styleStringHelper(), QMetaObject::tr(), tr(), QQmlTranslation::QsTrData::translate(), QV4::ExecutableCompilationUnit::translateFrom(), QAbstractFileIconProvider::type(), QDeclarativeSearchModelBase::update(), QDeclarativeSupportedCategoriesModel::update(), QNetworkAccessFileBackend::uploadReadyReadSlot(), QmlIR::IRBuilder::visit(), QmlIR::IRBuilder::visit(), QmlIR::IRBuilder::visit(), QmlIR::IRBuilder::visit(), and QFontDatabase::writingSystemName().
|
related |
\macro Q_COREAPP_STARTUP_FUNCTION(QtStartUpFunction ptr)
\reentrant
Adds a global function that will be called from the QCoreApplication constructor. This macro is normally used to initialize libraries for program-wide functionality, without requiring the application to call into the library for initialization.
The function specified by ptr should take no arguments and should return nothing. For example:
Note that the startup function will run at the end of the QCoreApplication constructor, before any GUI initialization. If GUI code is required in the function, use a timer (or a queued invocation) to perform the initialization later on, from the event loop.
If QCoreApplication is deleted and another QCoreApplication is created, the startup function will be invoked again.
\threadsafe
Adds a global routine that will be called from the QCoreApplication destructor. This function is normally used to add cleanup routines for program-wide functionality.
The cleanup routines are called in the reverse order of their addition.
The function specified by ptr should take no arguments and should return nothing. For example:
Note that for an application- or module-wide cleanup, qAddPostRoutine() is often not suitable. For example, if the program is split into dynamically loaded modules, the relevant module may be unloaded long before the QCoreApplication destructor is called. In such cases, if using qAddPostRoutine() is still desirable, qRemovePostRoutine() can be used to prevent a routine from being called by the QCoreApplication destructor. For example, if that routine was called before the module was unloaded.
For modules and libraries, using a reference-counted initialization manager or Qt's parent-child deletion mechanism may be better. Here is an example of a private class that uses the parent-child mechanism to call a cleanup function at the right time:
By selecting the right parent object, this can often be made to clean up the module's data at the right moment.
Definition at line 271 of file qcoreapplication.cpp.
References globalRoutinesMutex, list, and QList< T >::prepend().
|
friend |
Definition at line 220 of file qcoreapplication.h.
|
friend |
Definition at line 221 of file qcoreapplication.h.
Referenced by QLineEdit::mousePressEvent().
|
friend |
Definition at line 562 of file qcoreapplication.cpp.
|
friend |
Definition at line 229 of file qcoreapplication.h.
|
friend |
Definition at line 233 of file qcoreapplication.h.
|
friend |
Definition at line 228 of file qcoreapplication.h.
|
friend |
Definition at line 63 of file qcoreapplication.h.
|
friend |
Definition at line 222 of file qcoreapplication.h.
|
friend |
Definition at line 223 of file qcoreapplication.h.
|
related |
\threadsafe
Removes the cleanup routine specified by ptr from the list of routines called by the QCoreApplication destructor. The routine must have been previously added to the list by a call to qAddPostRoutine(), otherwise this function has no effect.
Definition at line 280 of file qcoreapplication.cpp.
References globalRoutinesMutex, list, and QList< T >::removeAll().
|
friend |
Definition at line 224 of file qcoreapplication.h.
|
friend |
Definition at line 226 of file qcoreapplication.h.
|
friend |
Definition at line 225 of file qcoreapplication.h.
|
related |
\macro Q_DECLARE_TR_FUNCTIONS(context)
The Q_DECLARE_TR_FUNCTIONS() macro declares and implements the translation function tr()
with this signature:
This macro is useful if you want to use QObject::tr() in classes that don't inherit from QObject.
Q_DECLARE_TR_FUNCTIONS() must appear at the very top of the class definition (before the first {public:} or
{protected:}). For example:
The context parameter is normally the class name, but it can be any text.
Definition at line 3381 of file qcoreapplication.cpp.
References Q_UNUSED.
|
readwrite |
the name of this application
The application name is used in various Qt classes and modules, most prominently in \l{QSettings} when it is constructed using the default constructor. Other uses are in formatted logging output (see \l{qSetMessagePattern()}), in output by \l{QCommandLineParser}, in \l{QTemporaryDir} and \l{QTemporaryFile} default paths, and in some file locations of \l{QStandardPaths}. \l{Qt D-Bus}, \l{Accessibility}, and the XCB platform integration make use of the application name, too.
If not set, the application name defaults to the executable name.
Definition at line 263 of file qcoreapplication.h.
Referenced by QT_BEGIN_NAMESPACE::appendOrganizationAndApp(), appendOrganizationAndApp(), appendOrganizationAndApp(), appendOrganizationAndApp(), QBluetoothSocketPrivateBluezDBus::connectToServiceHelper(), defaultTemplateName(), QTemporaryFilePrivate::defaultTemplateName(), QPlatformWindow::formatWindowTitle(), QQuickWidgetPrivate::handleContextCreationFailure(), QSGRenderLoop::handleContextCreationFailure(), QStatusNotifierItemAdaptor::id(), init_platform(), QBasicPlatformVulkanInstance::initInstance(), QQmlSettingsPrivate::instance(), QQmlApplication::name(), QCommandLineParser::process(), qDBusInterfaceFromMetaObject(), QErrorMessage::qtHandler(), QXcbConnection::qtSelectionOwner(), QGuiApplication::setApplicationDisplayName(), QDBusTrayIcon::showMessage(), showParserMessage(), QCommandLineParser::showVersion(), QStatusNotifierItemAdaptor::title(), and QXcbIntegration::wmClass().
|
readwrite |
the version of this application
If not set, the application version defaults to a platform-specific value determined from the main application executable or package (since Qt 5.9):
\table \header
On other platforms, the default is the empty string.
Definition at line 263 of file qcoreapplication.h.
Referenced by setApplicationVersion(), QCommandLineParser::showVersion(), and QQmlApplication::version().
|
readwrite |
the Internet domain of the organization that wrote this application
The value is used by the QSettings class when it is constructed using the default constructor. This saves having to repeat this information each time a QSettings object is created.
On Mac, QSettings uses organizationDomain() as the organization if it's not an empty string; otherwise it uses organizationName(). On all other platforms, QSettings uses organizationName() as the organization.
Definition at line 263 of file qcoreapplication.h.
Referenced by QQmlApplication::domain(), QQmlSettingsPrivate::instance(), and qDBusInterfaceFromMetaObject().
|
readwrite |
the name of the organization that wrote this application
The value is used by the QSettings class when it is constructed using the default constructor. This saves having to repeat this information each time a QSettings object is created.
On Mac, QSettings uses \l {QCoreApplication::}{organizationDomain()} as the organization if it's not an empty string; otherwise it uses organizationName(). On all other platforms, QSettings uses organizationName() as the organization.
Definition at line 263 of file qcoreapplication.h.
Referenced by QT_BEGIN_NAMESPACE::appendOrganizationAndApp(), appendOrganizationAndApp(), appendOrganizationAndApp(), appendOrganizationAndApp(), QQmlSettingsPrivate::instance(), and QQmlApplication::organization().
|
readwrite |
Whether the use of the QEventLoopLocker feature can cause the application to quit.
The default is true
.
Definition at line 263 of file qcoreapplication.h.
Referenced by QCoreApplicationPrivate::canQuitAutomatically(), QCoreApplicationPrivate::deref(), isQuitLockEnabled(), and setQuitLockEnabled().