2009-02-27 11:54:59 +00:00
|
|
|
/*
|
2011-01-15 04:01:31 +00:00
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
|
2009-02-27 11:54:59 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2010-06-20 17:38:51 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-27 11:54:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef XSYNERGY_H
|
|
|
|
#define XSYNERGY_H
|
|
|
|
|
|
|
|
#include "XBase.h"
|
|
|
|
|
|
|
|
//! Generic synergy exception
|
|
|
|
XBASE_SUBCLASS(XSynergy, XBase);
|
|
|
|
|
|
|
|
//! Client error exception
|
|
|
|
/*!
|
|
|
|
Thrown when the client fails to follow the protocol.
|
|
|
|
*/
|
|
|
|
XBASE_SUBCLASS_WHAT(XBadClient, XSynergy);
|
|
|
|
|
|
|
|
//! Incompatible client exception
|
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect has an incompatible version.
|
|
|
|
*/
|
|
|
|
class XIncompatibleClient : public XSynergy {
|
|
|
|
public:
|
|
|
|
XIncompatibleClient(int major, int minor);
|
|
|
|
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get client's major version number
|
|
|
|
int getMajor() const throw();
|
|
|
|
//! Get client's minor version number
|
|
|
|
int getMinor() const throw();
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_major;
|
|
|
|
int m_minor;
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Client already connected exception
|
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect is using the same name as
|
|
|
|
a client that is already connected.
|
|
|
|
*/
|
|
|
|
class XDuplicateClient : public XSynergy {
|
|
|
|
public:
|
|
|
|
XDuplicateClient(const CString& name);
|
|
|
|
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get client's name
|
|
|
|
virtual const CString&
|
|
|
|
getName() const throw();
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CString m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
//! Client not in map exception
|
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect is using a name that is
|
|
|
|
unknown to the server.
|
|
|
|
*/
|
|
|
|
class XUnknownClient : public XSynergy {
|
|
|
|
public:
|
|
|
|
XUnknownClient(const CString& name);
|
|
|
|
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get the client's name
|
|
|
|
virtual const CString&
|
|
|
|
getName() const throw();
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CString m_name;
|
|
|
|
};
|
|
|
|
|
2010-06-01 20:22:37 +00:00
|
|
|
//! Generic exit eception
|
|
|
|
/*!
|
|
|
|
Thrown when we want to abort, with the opportunity to clean up. This is a
|
|
|
|
little bit of a hack, but it's a better way of exiting, than just calling
|
|
|
|
exit(int).
|
|
|
|
*/
|
|
|
|
class XExitApp : public XSynergy {
|
|
|
|
public:
|
|
|
|
XExitApp(int code);
|
|
|
|
|
|
|
|
//! Get the exit code
|
|
|
|
int getCode() const throw();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_code;
|
|
|
|
};
|
|
|
|
|
2009-02-27 11:54:59 +00:00
|
|
|
#endif
|