1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Base header for wxProgressDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROGDLG_H_BASE_
13 #define _WX_PROGDLG_H_BASE_
20 * wxProgressDialog flags
22 #define wxPD_CAN_ABORT 0x0001
23 #define wxPD_APP_MODAL 0x0002
24 #define wxPD_AUTO_HIDE 0x0004
25 #define wxPD_ELAPSED_TIME 0x0008
26 #define wxPD_ESTIMATED_TIME 0x0010
27 #define wxPD_SMOOTH 0x0020
28 #define wxPD_REMAINING_TIME 0x0040
29 #define wxPD_CAN_SKIP 0x0080
33 #include "wx/palmos/progdlg.h"
35 #include "wx/generic/progdlgg.h"
37 #if defined(__WXMSW__) && wxUSE_THREADS
38 #include "wx/msw/progdlg.h"
40 class WXDLLIMPEXP_CORE wxProgressDialog
41 : public wxGenericProgressDialog
44 wxProgressDialog( const wxString
& title
, const wxString
& message
,
46 wxWindow
*parent
= NULL
,
47 int style
= wxPD_APP_MODAL
| wxPD_AUTO_HIDE
)
48 : wxGenericProgressDialog( title
, message
, maximum
,
53 wxDECLARE_DYNAMIC_CLASS_NO_COPY( wxProgressDialog
);
55 #endif // defined(__WXMSW__) && wxUSE_THREADS
56 #endif // __WXPALMOS__
58 #endif // wxUSE_PROGRESSDLG
60 #endif // _WX_PROGDLG_H_BASE_