2012-07-02 13:45:52 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2012 Bolton Software Ltd.
|
2012-07-02 13:45:52 +00:00
|
|
|
* Copyright (C) 2012 Nick Bolton
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "ipc/Ipc.h"
|
|
|
|
#include "base/EventTypes.h"
|
|
|
|
#include "base/String.h"
|
|
|
|
#include "base/Event.h"
|
2012-07-02 13:45:52 +00:00
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
class CIpcMessage : public CEventData {
|
2012-07-02 13:45:52 +00:00
|
|
|
public:
|
|
|
|
virtual ~CIpcMessage();
|
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
//! Gets the message type ID.
|
|
|
|
UInt8 type() const { return m_type; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CIpcMessage(UInt8 type);
|
|
|
|
|
|
|
|
private:
|
2012-07-02 13:45:52 +00:00
|
|
|
UInt8 m_type;
|
2012-07-10 01:51:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CIpcHelloMessage : public CIpcMessage {
|
|
|
|
public:
|
|
|
|
CIpcHelloMessage(EIpcClientType clientType);
|
|
|
|
virtual ~CIpcHelloMessage();
|
|
|
|
|
|
|
|
//! Gets the message type ID.
|
|
|
|
EIpcClientType clientType() const { return m_clientType; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
EIpcClientType m_clientType;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CIpcShutdownMessage : public CIpcMessage {
|
|
|
|
public:
|
|
|
|
CIpcShutdownMessage();
|
|
|
|
virtual ~CIpcShutdownMessage();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CIpcLogLineMessage : public CIpcMessage {
|
|
|
|
public:
|
|
|
|
CIpcLogLineMessage(const CString& logLine);
|
|
|
|
virtual ~CIpcLogLineMessage();
|
|
|
|
|
|
|
|
//! Gets the log line.
|
|
|
|
CString logLine() const { return m_logLine; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CString m_logLine;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CIpcCommandMessage : public CIpcMessage {
|
|
|
|
public:
|
2012-07-28 02:59:20 +00:00
|
|
|
CIpcCommandMessage(const CString& command, bool elevate);
|
2012-07-10 01:51:51 +00:00
|
|
|
virtual ~CIpcCommandMessage();
|
|
|
|
|
|
|
|
//! Gets the command.
|
|
|
|
CString command() const { return m_command; }
|
|
|
|
|
2012-07-28 02:59:20 +00:00
|
|
|
//! Gets whether or not the process should be elevated on MS Windows.
|
|
|
|
bool elevate() const { return m_elevate; }
|
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
private:
|
|
|
|
CString m_command;
|
2012-07-28 02:59:20 +00:00
|
|
|
bool m_elevate;
|
2012-07-02 13:45:52 +00:00
|
|
|
};
|