1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/notifmsg.h
3 // Purpose: generic implementation of wxGenericNotificationMessage
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GENERIC_NOTIFMSG_H_
12 #define _WX_GENERIC_NOTIFMSG_H_
14 class wxNotificationMessageDialog
;
16 // ----------------------------------------------------------------------------
17 // wxGenericNotificationMessage
18 // ----------------------------------------------------------------------------
20 class WXDLLIMPEXP_ADV wxGenericNotificationMessage
: public wxNotificationMessageBase
23 wxGenericNotificationMessage() { Init(); }
24 wxGenericNotificationMessage(const wxString
& title
,
25 const wxString
& message
= wxString(),
26 wxWindow
*parent
= NULL
,
27 int flags
= wxICON_INFORMATION
)
28 : wxNotificationMessageBase(title
, message
, parent
, flags
)
33 virtual ~wxGenericNotificationMessage();
36 virtual bool Show(int timeout
= Timeout_Auto
);
39 // generic implementation-specific methods
41 // get/set the default timeout (used if Timeout_Auto is specified)
42 static int GetDefaultTimeout() { return ms_timeout
; }
43 static void SetDefaultTimeout(int timeout
);
50 static int ms_timeout
;
52 // notification message is represented by a modeless dialog in this
54 wxNotificationMessageDialog
*m_dialog
;
57 wxDECLARE_NO_COPY_CLASS(wxGenericNotificationMessage
);
60 #endif // _WX_GENERIC_NOTIFMSG_H_