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 "XBase.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "CStringUtil.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include <cerrno>
|
2002-07-25 17:52:40 +00:00
|
|
|
#include <cstdarg>
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// XBase
|
|
|
|
//
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
XBase::XBase() :
|
|
|
|
m_what()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
XBase::XBase(const CString& msg) :
|
|
|
|
m_what(msg)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
XBase::~XBase()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
const char*
|
|
|
|
XBase::what() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
if (m_what.empty()) {
|
|
|
|
m_what = getWhat();
|
|
|
|
}
|
|
|
|
return m_what.c_str();
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
2002-06-17 13:31:21 +00:00
|
|
|
XBase::format(const char* /*id*/, const char* fmt, ...) const throw()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-25 17:52:40 +00:00
|
|
|
// FIXME -- lookup message string using id as an index. set
|
|
|
|
// fmt to that string if it exists.
|
|
|
|
|
|
|
|
// format
|
|
|
|
CString result;
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
try {
|
|
|
|
result = CStringUtil::vformat(fmt, args);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
return result;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|