SingleApplication/singleapplication.h

41 lines
757 B
C
Raw Permalink Normal View History

#ifndef SINGLE_APPLICATION_H
#define SINGLE_APPLICATION_H
#include <QtCore/QtGlobal>
2012-12-23 06:12:38 +08:00
#ifndef QAPPLICATION_CLASS
#define QAPPLICATION_CLASS QApplication
#endif
#include QT_STRINGIFY(QAPPLICATION_CLASS)
class SingleApplicationPrivate;
2012-12-23 06:12:38 +08:00
/**
2015-02-27 03:19:38 +08:00
* @brief The SingleApplication class handles multipe instances of the same Application
* @see QApplication
2012-12-23 06:12:38 +08:00
*/
2015-06-09 22:29:20 +08:00
class SingleApplication : public QAPPLICATION_CLASS
2012-12-23 06:12:38 +08:00
{
Q_OBJECT
Q_DECLARE_PRIVATE(SingleApplication)
typedef QAPPLICATION_CLASS app_t;
2012-12-23 06:12:38 +08:00
public:
explicit SingleApplication(int&, char *[]);
~SingleApplication();
2012-12-23 06:12:38 +08:00
Q_SIGNALS:
void showUp();
2012-12-23 06:12:38 +08:00
private Q_SLOTS:
void slotConnectionEstablished();
2012-12-23 06:12:38 +08:00
private:
SingleApplicationPrivate *d_ptr;
2012-12-23 06:12:38 +08:00
};
#endif // SINGLE_APPLICATION_H