133 lines
2.3 KiB
C++
133 lines
2.3 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2002 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include "XSynergy.h"
|
|
#include "CStringUtil.h"
|
|
|
|
//
|
|
// XBadClient
|
|
//
|
|
|
|
CString
|
|
XBadClient::getWhat() const throw()
|
|
{
|
|
return "XBadClient";
|
|
}
|
|
|
|
|
|
//
|
|
// XIncompatibleClient
|
|
//
|
|
|
|
XIncompatibleClient::XIncompatibleClient(int major, int minor) :
|
|
m_major(major),
|
|
m_minor(minor)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
int
|
|
XIncompatibleClient::getMajor() const throw()
|
|
{
|
|
return m_major;
|
|
}
|
|
|
|
int
|
|
XIncompatibleClient::getMinor() const throw()
|
|
{
|
|
return m_minor;
|
|
}
|
|
|
|
CString
|
|
XIncompatibleClient::getWhat() const throw()
|
|
{
|
|
return format("XIncompatibleClient", "incompatible client %{1}.%{2}",
|
|
CStringUtil::print("%d", m_major).c_str(),
|
|
CStringUtil::print("%d", m_minor).c_str());
|
|
}
|
|
|
|
|
|
//
|
|
// XDuplicateClient
|
|
//
|
|
|
|
XDuplicateClient::XDuplicateClient(const CString& name) :
|
|
m_name(name)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
const CString&
|
|
XDuplicateClient::getName() const throw()
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
CString
|
|
XDuplicateClient::getWhat() const throw()
|
|
{
|
|
return format("XDuplicateClient", "duplicate client %{1}", m_name.c_str());
|
|
}
|
|
|
|
|
|
//
|
|
// XUnknownClient
|
|
//
|
|
|
|
XUnknownClient::XUnknownClient(const CString& name) :
|
|
m_name(name)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
const CString&
|
|
XUnknownClient::getName() const throw()
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
CString
|
|
XUnknownClient::getWhat() const throw()
|
|
{
|
|
return format("XUnknownClient", "unknown client %{1}", m_name.c_str());
|
|
}
|
|
|
|
|
|
//
|
|
// XExitApp
|
|
//
|
|
|
|
XExitApp::XExitApp(int code) :
|
|
m_code(code)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
int
|
|
XExitApp::getCode() const throw()
|
|
{
|
|
return m_code;
|
|
}
|
|
|
|
CString
|
|
XExitApp::getWhat() const throw()
|
|
{
|
|
return format(
|
|
"XExitApp", "exiting with code %{1}",
|
|
CStringUtil::print("%d", m_code).c_str());
|
|
}
|