2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "XSynergy.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// XBadClient
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XBadClient::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return "XBadClient";
|
|
|
|
}
|
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
//
|
2002-05-23 14:56:03 +00:00
|
|
|
// XIncompatibleClient
|
2001-10-06 14:13:28 +00:00
|
|
|
//
|
|
|
|
|
2002-06-17 13:31:21 +00:00
|
|
|
XIncompatibleClient::XIncompatibleClient(int major, int minor) :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_major(major),
|
|
|
|
m_minor(minor)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
int
|
|
|
|
XIncompatibleClient::getMajor() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_major;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
int
|
|
|
|
XIncompatibleClient::getMinor() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_minor;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XIncompatibleClient::getWhat() const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
return format("XIncompatibleClient", "incompatible client %{1}.%{2}",
|
|
|
|
CStringUtil::print("%d", m_major).c_str(),
|
|
|
|
CStringUtil::print("%d", m_minor).c_str());
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// XDuplicateClient
|
|
|
|
//
|
|
|
|
|
2002-06-17 13:31:21 +00:00
|
|
|
XDuplicateClient::XDuplicateClient(const CString& name) :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_name(name)
|
2002-05-23 14:56:03 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
const CString&
|
|
|
|
XDuplicateClient::getName() const throw()
|
2002-05-23 14:56:03 +00:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XDuplicateClient::getWhat() const throw()
|
2002-05-23 14:56:03 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
return format("XDuplicateClient", "duplicate client %{1}", m_name.c_str());
|
2002-05-23 14:56:03 +00:00
|
|
|
}
|
2002-05-31 18:18:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// XUnknownClient
|
|
|
|
//
|
|
|
|
|
2002-06-17 13:31:21 +00:00
|
|
|
XUnknownClient::XUnknownClient(const CString& name) :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_name(name)
|
2002-05-31 18:18:29 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
const CString&
|
|
|
|
XUnknownClient::getName() const throw()
|
2002-05-31 18:18:29 +00:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
XUnknownClient::getWhat() const throw()
|
2002-05-31 18:18:29 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
return format("XUnknownClient", "unknown client %{1}", m_name.c_str());
|
2002-05-31 18:18:29 +00:00
|
|
|
}
|