]> git.saurik.com Git - wxWidgets.git/blame - include/wx/progdlg.h
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.
[wxWidgets.git] / include / wx / progdlg.h
CommitLineData
99d80019
JS
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
8fa2e6a2
KB
12#ifndef _WX_PROGDLG_H_BASE_
13#define _WX_PROGDLG_H_BASE_
14
555f645a 15#include "wx/defs.h"
8fa2e6a2 16
fe8635a7
RR
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
555f645a
WS
30#ifdef __WXPALMOS__
31 #include "wx/palmos/progdlg.h"
32#else
33 #include "wx/generic/progdlgg.h"
8fa2e6a2 34#endif
555f645a
WS
35
36#endif // _WX_PROGDLG_H_BASE_