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.
|
|
|
|
*/
|
|
|
|
|
2002-06-03 13:45:30 +00:00
|
|
|
#ifndef XSCREEN_H
|
|
|
|
#define XSCREEN_H
|
|
|
|
|
|
|
|
#include "XBase.h"
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Generic screen exception
|
2003-01-04 22:01:32 +00:00
|
|
|
XBASE_SUBCLASS(XScreen, XBase);
|
2002-06-03 13:45:30 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Cannot open screen exception
|
|
|
|
/*!
|
|
|
|
Thrown when a screen cannot be opened or initialized.
|
|
|
|
*/
|
2003-01-04 22:01:32 +00:00
|
|
|
XBASE_SUBCLASS_WHAT(XScreenOpenFailure, XScreen);
|
2002-06-03 13:45:30 +00:00
|
|
|
|
2002-07-31 12:39:34 +00:00
|
|
|
//! Screen unavailable exception
|
|
|
|
/*!
|
|
|
|
Thrown when a screen cannot be opened or initialized but retrying later
|
|
|
|
may be successful.
|
|
|
|
*/
|
|
|
|
class XScreenUnavailable : public XScreenOpenFailure {
|
|
|
|
public:
|
|
|
|
/*!
|
|
|
|
\c timeUntilRetry is the suggested time the caller should wait until
|
|
|
|
trying to open the screen again.
|
|
|
|
*/
|
|
|
|
XScreenUnavailable(double timeUntilRetry);
|
|
|
|
virtual ~XScreenUnavailable();
|
|
|
|
|
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Get retry time
|
|
|
|
/*!
|
|
|
|
Returns the suggested time to wait until retrying to open the screen.
|
|
|
|
*/
|
|
|
|
double getRetryTime() const;
|
|
|
|
|
|
|
|
//@}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
double m_timeUntilRetry;
|
|
|
|
};
|
|
|
|
|
2002-06-03 13:45:30 +00:00
|
|
|
#endif
|