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
|
2002-06-03 13:45:30 +00:00
|
|
|
class XScreen : public XBase { };
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Cannot open screen exception
|
|
|
|
/*!
|
|
|
|
Thrown when a screen cannot be opened or initialized.
|
|
|
|
*/
|
2002-06-03 13:45:30 +00:00
|
|
|
class XScreenOpenFailure : public XScreen {
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
};
|
|
|
|
|
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
|