blob: c0efc32c539f30cc1df8e2a276b56818311eb148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include <QApplication>
QT_FORWARD_DECLARE_CLASS(QSharedMemory)
namespace SharedTools {
class QtLocalPeer;
class QtSingleApplication : public QApplication
{
Q_OBJECT
public:
QtSingleApplication(const QString &id, int &argc, char **argv);
~QtSingleApplication();
bool isRunning(qint64 pid = -1);
void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
QWidget* activationWindow() const;
bool event(QEvent *event) override;
QString applicationId() const;
void setBlock(bool value);
bool sendMessage(const QString &message, int timeout = 5000, qint64 pid = -1);
void activateWindow();
Q_SIGNALS:
void messageReceived(const QString &message, QObject *socket);
void fileOpenRequest(const QString &file);
private:
QString instancesFileName(const QString &appId);
qint64 firstPeer;
QSharedMemory *instances;
QtLocalPeer *pidPeer;
QWidget *actWin;
QString appId;
bool block;
};
} // namespace SharedTools
|