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
32 #include "wx/generic/progdlgg.h"
34 #if defined(__WXMSW__) && wxUSE_THREADS && !defined(__WXUNIVERSAL__)
35 #include "wx/msw/progdlg.h"
37 class WXDLLIMPEXP_CORE wxProgressDialog
38 : public wxGenericProgressDialog
41 wxProgressDialog( const wxString
& title
, const wxString
& message
,
43 wxWindow
*parent
= NULL
,
44 int style
= wxPD_APP_MODAL
| wxPD_AUTO_HIDE
)
45 : wxGenericProgressDialog( title
, message
, maximum
,
50 wxDECLARE_DYNAMIC_CLASS_NO_COPY( wxProgressDialog
);
52 #endif // defined(__WXMSW__) && wxUSE_THREADS
54 #endif // wxUSE_PROGRESSDLG
56 #endif // _WX_PROGDLG_H_BASE_