mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 20:25:43 +08:00
81cc2719be
Closes #95
29 lines
760 B
C++
Executable File
29 lines
760 B
C++
Executable File
#include <singleapplication.h>
|
|
#include "messagereceiver.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Allow secondary instances
|
|
SingleApplication app( argc, argv, true );
|
|
|
|
MessageReceiver msgReceiver;
|
|
|
|
// If this is a secondary instance
|
|
if( app.isSecondary() ) {
|
|
app.sendMessage( app.arguments().join(' ').toUtf8() );
|
|
qDebug() << "App already running.";
|
|
qDebug() << "Primary instance PID: " << app.primaryPid();
|
|
qDebug() << "Primary instance user: " << app.primaryUser();
|
|
return 0;
|
|
} else {
|
|
QObject::connect(
|
|
&app,
|
|
&SingleApplication::receivedMessage,
|
|
&msgReceiver,
|
|
&MessageReceiver::receivedMessage
|
|
);
|
|
}
|
|
|
|
return app.exec();
|
|
}
|