]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/dialog.h
Added reparenting helper classes to help apps to grab the windows
[wxWidgets.git] / include / wx / os2 / dialog.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialog.h
3// Purpose: wxDialog class
fb46a9a6 4// Author: David Webster
0e320a79 5// Modified by:
fb46a9a6 6// Created: 10/14/99
0e320a79 7// RCS-ID: $Id$
fb46a9a6
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DIALOG_H_
13#define _WX_DIALOG_H_
14
0e320a79
DW
15#include "wx/panel.h"
16
54da4255 17WXDLLEXPORT_DATA(extern const char*) wxDialogNameStr;
0e320a79 18
d608dde1 19//
0e320a79 20// Dialog boxes
d608dde1 21//
54da4255 22class WXDLLEXPORT wxDialog: public wxDialogBase
0e320a79 23{
0e320a79 24public:
54da4255 25
d608dde1 26 inline wxDialog() { Init(); }
54da4255 27
d608dde1 28 //
54da4255 29 // Constructor with a modal flag, but no window id - the old convention
d608dde1
DW
30 //
31 inline wxDialog( wxWindow* pParent
32 ,const wxString& rsTitle
33 ,bool bModal
34 ,int nX = -1
35 ,int nY = -1
36 ,int nWidth = 500
37 ,int nHeight = 500
38 ,long lStyle = wxDEFAULT_DIALOG_STYLE
39 ,const wxString& rsName = wxDialogNameStr
54da4255 40 )
0e320a79 41 {
d608dde1
DW
42 long lModalStyle = lStyle ? wxDIALOG_MODAL : wxDIALOG_MODELESS ;
43
44 Create( pParent
45 ,-1
46 ,rsTitle
47 ,wxPoint(nX, nY)
48 ,wxSize(nWidth, nHeight)
49 ,lStyle | lModalStyle
50 ,rsName
51 );
0e320a79
DW
52 }
53
d608dde1 54 //
0e320a79 55 // Constructor with no modal flag - the new convention.
d608dde1
DW
56 //
57 inline wxDialog( wxWindow* pParent
58 ,wxWindowID vId
59 ,const wxString& rsTitle
60 ,const wxPoint& rPos = wxDefaultPosition
61 ,const wxSize& rSize = wxDefaultSize
62 ,long lStyle = wxDEFAULT_DIALOG_STYLE
63 ,const wxString& rsName = wxDialogNameStr
54da4255 64 )
0e320a79 65 {
d608dde1
DW
66 Create( pParent
67 ,vId
68 ,rsTitle
69 ,rPos
70 ,rSize
71 ,lStyle
72 ,rsName
73 );
0e320a79
DW
74 }
75
d608dde1
DW
76 bool Create( wxWindow* pParent
77 ,wxWindowID vId
78 ,const wxString& rsTitle
79 ,const wxPoint& rPos = wxDefaultPosition
80 ,const wxSize& rSize = wxDefaultSize
81 ,long lStyle = wxDEFAULT_DIALOG_STYLE
82 ,const wxString& rsName = wxDialogNameStr
54da4255 83 );
0e320a79
DW
84 ~wxDialog();
85
3011bf2b 86 void SetModal(bool bFlag);
d608dde1 87 virtual bool IsModal(void) const;
fb46a9a6 88
d608dde1 89 // For now, same as Show(TRUE) but returns return code
3011bf2b
DW
90 virtual int ShowModal();
91
92 // may be called to terminate the dialog with the given return code
93 virtual void EndModal(int retCode);
0e320a79 94
d608dde1
DW
95 //
96 // Returns TRUE if we're in a modal loop
97 //
3011bf2b 98 bool IsModalShowing() const;
fb46a9a6 99
d608dde1
DW
100 //
101 // Implementation only from now on
102 // -------------------------------
103 //
0e320a79 104
3011bf2b
DW
105 //
106 // Override some base class virtuals
107 //
108 virtual bool Show(bool bShow);
109
d608dde1
DW
110 //
111 // Event handlers
112 //
113 bool OnClose(void);
114 void OnCharHook(wxKeyEvent& rEvent);
115 void OnCloseWindow(wxCloseEvent& rEvent);
0e320a79 116
d608dde1 117 //
54da4255 118 // Standard buttons
d608dde1
DW
119 //
120 void OnOK(wxCommandEvent& rEvent);
121 void OnApply(wxCommandEvent& rEvent);
122 void OnCancel(wxCommandEvent& rEvent);
0e320a79 123
d608dde1 124 //
54da4255 125 // Responds to colour changes
d608dde1
DW
126 //
127 void OnSysColourChanged(wxSysColourChangedEvent& rEvent);
128
129 //
130 // Callbacks
131 //
132 virtual MRESULT OS2WindowProc( WXUINT uMessage
133 ,WXWPARAM wParam
134 ,WXLPARAM lParam
135 );
3011bf2b 136
27476f73 137protected:
d608dde1 138 //
d608dde1
DW
139 // Show modal dialog and enter modal loop
140 //
141 void DoShowModal(void);
142
143 //
144 // Common part of all ctors
145 //
3011bf2b 146 void Init(void);
27476f73
DW
147
148private:
d608dde1 149 wxWindow* m_pOldFocus;
27476f73 150
d608dde1
DW
151 //
152 // While we are showing a modal dialog we disable the other windows using
153 // this object
154 //
155 class wxWindowDisabler* m_pWindowDisabler;
27476f73 156
d608dde1
DW
157 DECLARE_DYNAMIC_CLASS(wxDialog)
158 DECLARE_EVENT_TABLE()
159}; // end of CLASS wxDialog
160
161#endif // _WX_DIALOG_H_
0e320a79 162