Multi diag tools
Public Slots | Signals | Public Member Functions | List of all members
QtSingleCoreApplication Class Reference

A variant of the QtSingleApplication class for non-GUI applications. More...

#include <qtsinglecoreapplication.h>

+ Inheritance diagram for QtSingleCoreApplication:

Public Slots

bool sendMessage (const QString &message, int timeout=5000)
 

Signals

void messageReceived (const QString &message)
 

Public Member Functions

 QtSingleCoreApplication (int &argc, char **argv)
 
 QtSingleCoreApplication (const QString &id, int &argc, char **argv)
 
bool isRunning ()
 
QString id () const
 

Detailed Description

A variant of the QtSingleApplication class for non-GUI applications.

This class is a variant of QtSingleApplication suited for use in console (non-GUI) applications. It is an extension of QCoreApplication (instead of QApplication). It does not require the QtGui library.

The API and usage is identical to QtSingleApplication, except that functions relating to the "activation window" are not present, for obvious reasons. Please refer to the QtSingleApplication documentation for explanation of the usage.

A QtSingleCoreApplication instance can communicate to a QtSingleApplication instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application.

See also
QtSingleApplication

Definition at line 48 of file qtsinglecoreapplication.h.

Constructor & Destructor Documentation

QtSingleCoreApplication::QtSingleCoreApplication ( int &  argc,
char **  argv 
)

Creates a QtSingleCoreApplication object. The application identifier will be QCoreApplication::applicationFilePath(). argc and argv are passed on to the QCoreAppliation constructor.

Definition at line 73 of file qtsinglecoreapplication.cpp.

QtSingleCoreApplication::QtSingleCoreApplication ( const QString &  appId,
int &  argc,
char **  argv 
)

Creates a QtSingleCoreApplication object with the application identifier appId. argc and argv are passed on to the QCoreAppliation constructor.

Definition at line 86 of file qtsinglecoreapplication.cpp.

Member Function Documentation

QString QtSingleCoreApplication::id ( ) const

Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application.

Definition at line 136 of file qtsinglecoreapplication.cpp.

bool QtSingleCoreApplication::isRunning ( )

Returns true if another instance of this application is running; otherwise false.

This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session).

See also
sendMessage()

Definition at line 105 of file qtsinglecoreapplication.cpp.

void QtSingleCoreApplication::messageReceived ( const QString &  message)
signal

This signal is emitted when the current instance receives a message from another instance of this application.

See also
sendMessage()
bool QtSingleCoreApplication::sendMessage ( const QString &  message,
int  timeout = 5000 
)
slot

Tries to send the text message to the currently running instance. The QtSingleCoreApplication object in the running instance will emit the messageReceived() signal when it receives the message.

This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within timeout milliseconds, this function return false.

See also
isRunning(), messageReceived()

Definition at line 125 of file qtsinglecoreapplication.cpp.


The documentation for this class was generated from the following files: