]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dialog.h
fix the incoherence pointed out by ifacecheck between wx docs, that documents usage...
[wxWidgets.git] / include / wx / msw / dialog.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
82c9f85c 2// Name: wx/msw/dialog.h
2bda0e17
KB
3// Purpose: wxDialog class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
371a5b4e 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_DIALOG_H_
13#define _WX_DIALOG_H_
2bda0e17 14
2bda0e17
KB
15#include "wx/panel.h"
16
53a2db12 17extern WXDLLIMPEXP_DATA_CORE(const char) wxDialogNameStr[];
2bda0e17 18
b5dbe15d 19class WXDLLIMPEXP_FWD_CORE wxDialogModalData;
2b5f62a0 20
ec5f0c24 21#if wxUSE_TOOLBAR && (defined(__SMARTPHONE__) || defined(__POCKETPC__))
b5dbe15d 22class WXDLLIMPEXP_FWD_CORE wxToolBar;
53a2db12 23extern WXDLLIMPEXP_DATA_CORE(const char) wxToolBarNameStr[];
ec5f0c24
JS
24#endif
25
2bda0e17 26// Dialog boxes
53a2db12 27class WXDLLIMPEXP_CORE wxDialog : public wxDialogBase
2bda0e17 28{
462e2437 29public:
b0a6bb75 30 wxDialog() { Init(); }
16f6dfd8 31
f46f4c86 32 // full ctor
462e2437
VZ
33 wxDialog(wxWindow *parent, wxWindowID id,
34 const wxString& title,
35 const wxPoint& pos = wxDefaultPosition,
36 const wxSize& size = wxDefaultSize,
37 long style = wxDEFAULT_DIALOG_STYLE,
38 const wxString& name = wxDialogNameStr)
39 {
00233716
VZ
40 Init();
41
42 (void)Create(parent, id, title, pos, size, style, name);
462e2437 43 }
16f6dfd8 44
462e2437
VZ
45 bool Create(wxWindow *parent, wxWindowID id,
46 const wxString& title,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
49 long style = wxDEFAULT_DIALOG_STYLE,
50 const wxString& name = wxDialogNameStr);
16f6dfd8 51
82c9f85c 52 virtual ~wxDialog();
16f6dfd8 53
f46f4c86
VZ
54 // return true if we're showing the dialog modally
55 virtual bool IsModal() const { return m_modalData != NULL; }
16f6dfd8 56
f46f4c86 57 // show the dialog modally and return the value passed to EndModal()
b6c588e1
VZ
58 virtual int ShowModal();
59
60 // may be called to terminate the dialog with the given return code
61 virtual void EndModal(int retCode);
62
a141e018
VZ
63
64 // we treat dialog toolbars specially under Windows CE
ec5f0c24
JS
65#if wxUSE_TOOLBAR && defined(__POCKETPC__)
66 // create main toolbar by calling OnCreateToolBar()
67 virtual wxToolBar* CreateToolBar(long style = -1,
68 wxWindowID winid = wxID_ANY,
69 const wxString& name = wxToolBarNameStr);
70 // return a new toolbar
71 virtual wxToolBar *OnCreateToolBar(long style,
72 wxWindowID winid,
73 const wxString& name );
74
75 // get the main toolbar
76 wxToolBar *GetToolBar() const { return m_dialogToolBar; }
a141e018
VZ
77#endif // wxUSE_TOOLBAR && __POCKETPC__
78
ec5f0c24 79
b6c588e1
VZ
80 // implementation only from now on
81 // -------------------------------
16f6dfd8 82
82c9f85c 83 // override some base class virtuals
d71cc120 84 virtual bool Show(bool show = true);
82c9f85c 85
313901f3
JS
86 virtual void Raise();
87
2c66581e
VZ
88 virtual void SetWindowStyleFlag(long style);
89
9ceeecb9
JS
90#ifdef __POCKETPC__
91 // Responds to the OK button in a PocketPC titlebar. This
92 // can be overridden, or you can change the id used for
93 // sending the event with SetAffirmativeId. Returns false
94 // if the event was not processed.
95 virtual bool DoOK();
96#endif
97
b6c588e1 98 // Windows callbacks
c140b7e7 99 WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
42e69d6b 100
dc1c4b62 101protected:
a543e3ce
VZ
102 // find the window to use as parent for this dialog if none has been
103 // specified explicitly by the user
104 //
105 // may return NULL
106 wxWindow *FindSuitableParent() const;
107
b0a6bb75
VZ
108 // common part of all ctors
109 void Init();
110
2c66581e
VZ
111 // these functions deal with the gripper window shown in the corner of
112 // resizeable dialogs
113 void CreateGripper();
114 void DestroyGripper();
115 void ShowGripper(bool show);
116 void ResizeGripper();
117
dfe1eee3 118private:
eddc468e
VZ
119 // this function is used to adjust Z-order of new children relative to the
120 // gripper if we have one
121 void OnWindowCreate(wxWindowCreateEvent& event);
122
123
1a33ac8f
JS
124 wxWindow* m_oldFocus;
125 bool m_endModalCalled; // allow for closing within InitDialog
52a07708 126
ec5f0c24
JS
127#if wxUSE_TOOLBAR && defined(__POCKETPC__)
128 wxToolBar* m_dialogToolBar;
129#endif
130
6757b5e3
VZ
131 // this pointer is non-NULL only while the modal event loop is running
132 wxDialogModalData *m_modalData;
133
2c66581e
VZ
134 // gripper window for a resizable dialog, NULL if we're not resizable
135 WXHWND m_hGripper;
136
b0a6bb75 137 DECLARE_DYNAMIC_CLASS(wxDialog)
22f3361e 138 DECLARE_NO_COPY_CLASS(wxDialog)
2bda0e17
KB
139};
140
141#endif
bbcdf8bc 142 // _WX_DIALOG_H_