| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/progdlg.h |
| 3 | // Purpose: Base header for wxProgressDialog |
| 4 | // Author: Julian Smart |
| 5 | // Modified by: |
| 6 | // Created: |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Julian Smart |
| 9 | // Licence: wxWindows Licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_PROGDLG_H_BASE_ |
| 13 | #define _WX_PROGDLG_H_BASE_ |
| 14 | |
| 15 | #include "wx/defs.h" |
| 16 | |
| 17 | /* |
| 18 | * wxProgressDialog flags |
| 19 | */ |
| 20 | #define wxPD_CAN_ABORT 0x0001 |
| 21 | #define wxPD_APP_MODAL 0x0002 |
| 22 | #define wxPD_AUTO_HIDE 0x0004 |
| 23 | #define wxPD_ELAPSED_TIME 0x0008 |
| 24 | #define wxPD_ESTIMATED_TIME 0x0010 |
| 25 | #define wxPD_SMOOTH 0x0020 |
| 26 | #define wxPD_REMAINING_TIME 0x0040 |
| 27 | #define wxPD_CAN_SKIP 0x0080 |
| 28 | |
| 29 | |
| 30 | #ifdef __WXPALMOS__ |
| 31 | #include "wx/palmos/progdlg.h" |
| 32 | #else |
| 33 | #include "wx/generic/progdlgg.h" |
| 34 | #endif |
| 35 | |
| 36 | #endif // _WX_PROGDLG_H_BASE_ |