]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dialog.h
Eliminate comma's after last element in an enum
[wxWidgets.git] / include / wx / msw / dialog.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialog.h
3// Purpose: wxDialog class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
16f6dfd8 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_DIALOG_H_
13#define _WX_DIALOG_H_
2bda0e17
KB
14
15#ifdef __GNUG__
462e2437 16 #pragma interface "dialog.h"
2bda0e17
KB
17#endif
18
19#include "wx/panel.h"
20
32c1cda2 21WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr;
2bda0e17
KB
22
23// Dialog boxes
c50f1fb9 24class WXDLLEXPORT wxDialog : public wxDialogBase
2bda0e17 25{
462e2437 26 DECLARE_DYNAMIC_CLASS(wxDialog)
2bda0e17 27
462e2437
VZ
28public:
29 wxDialog();
16f6dfd8 30
462e2437
VZ
31 // Constructor with a modal flag, but no window id - the old convention
32 wxDialog(wxWindow *parent,
33 const wxString& title, bool modal,
34 int x = -1, int y= -1, int width = 500, int height = 500,
35 long style = wxDEFAULT_DIALOG_STYLE,
36 const wxString& name = wxDialogNameStr)
37 {
38 long modalStyle = modal ? wxDIALOG_MODAL : wxDIALOG_MODELESS ;
39 Create(parent, -1, title, wxPoint(x, y), wxSize(width, height),
40 style | modalStyle, name);
41 }
16f6dfd8 42
462e2437
VZ
43 // Constructor with no modal flag - the new convention.
44 wxDialog(wxWindow *parent, wxWindowID id,
45 const wxString& title,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
48 long style = wxDEFAULT_DIALOG_STYLE,
49 const wxString& name = wxDialogNameStr)
50 {
51 Create(parent, id, title, pos, size, style, name);
52 }
16f6dfd8 53
462e2437
VZ
54 bool Create(wxWindow *parent, wxWindowID id,
55 const wxString& title,
56 const wxPoint& pos = wxDefaultPosition,
57 const wxSize& size = wxDefaultSize,
58 long style = wxDEFAULT_DIALOG_STYLE,
59 const wxString& name = wxDialogNameStr);
16f6dfd8 60
462e2437 61 ~wxDialog();
16f6dfd8 62
462e2437 63 virtual bool Destroy();
16f6dfd8 64
721b32e0 65 virtual void DoSetClientSize(int width, int height);
16f6dfd8 66
462e2437 67 virtual void GetPosition(int *x, int *y) const;
16f6dfd8 68
462e2437
VZ
69 bool Show(bool show);
70 bool IsShown() const;
71 void Iconize(bool iconize);
16f6dfd8 72
2bda0e17 73#if WXWIN_COMPATIBILITY
462e2437 74 bool Iconized() const { return IsIconized(); };
2bda0e17 75#endif
16f6dfd8 76
462e2437
VZ
77 virtual bool IsIconized() const;
78 void Fit();
16f6dfd8 79
8487f887
RR
80 virtual bool IsTopLevel() const { return TRUE; }
81
462e2437
VZ
82 void SetTitle(const wxString& title);
83 wxString GetTitle() const ;
16f6dfd8 84
462e2437
VZ
85 void OnSize(wxSizeEvent& event);
86 bool OnClose();
87 void OnCharHook(wxKeyEvent& event);
88 void OnPaint(wxPaintEvent& event);
89 void OnCloseWindow(wxCloseEvent& event);
16f6dfd8 90
462e2437 91 void SetModal(bool flag);
16f6dfd8 92
462e2437 93 virtual void Centre(int direction = wxBOTH);
22cf5fec 94 virtual bool IsModal() const;
16f6dfd8 95
462e2437
VZ
96 // For now, same as Show(TRUE) but returns return code
97 virtual int ShowModal();
98 virtual void EndModal(int retCode);
16f6dfd8 99
462e2437
VZ
100 // Standard buttons
101 void OnOK(wxCommandEvent& event);
102 void OnApply(wxCommandEvent& event);
103 void OnCancel(wxCommandEvent& event);
16f6dfd8 104
462e2437
VZ
105 // Responds to colour changes
106 void OnSysColourChanged(wxSysColourChangedEvent& event);
16f6dfd8 107
a23fd0e1
VZ
108 // implementation
109 // --------------
110
42e69d6b
VZ
111 long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
112
462e2437
VZ
113 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
114 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
16f6dfd8 115
462e2437 116 bool IsModalShowing() const { return m_modalShowing; }
2bda0e17 117
16f6dfd8
VZ
118 // tooltip management
119#if wxUSE_TOOLTIPS
120 WXHWND GetToolTipCtrl() const { return m_hwndToolTip; }
121 void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
122#endif // tooltips
123
dc1c4b62 124protected:
462e2437
VZ
125 bool m_modalShowing;
126 WXHWND m_hwndOldFocus; // the window which had focus before we were shown
16f6dfd8 127
a23fd0e1 128private:
16f6dfd8
VZ
129#if wxUSE_TOOLTIPS
130 WXHWND m_hwndToolTip;
131#endif // tooltips
132
dfe1eee3 133private:
462e2437 134 DECLARE_EVENT_TABLE()
2bda0e17
KB
135};
136
137#endif
bbcdf8bc 138 // _WX_DIALOG_H_