1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialogBase class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DIALOG_H_BASE_
13 #define _WX_DIALOG_H_BASE_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "dialogbase.h"
20 #include "wx/containr.h"
21 #include "wx/toplevel.h"
23 class WXDLLEXPORT wxSizer
;
24 class WXDLLEXPORT wxStdDialogButtonSizer
;
26 #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window
29 #define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxMAXIMIZE | wxCLOSE_BOX | wxNO_BORDER)
31 #define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX)
34 extern WXDLLEXPORT_DATA(const wxChar
*) wxDialogNameStr
;
36 class WXDLLEXPORT wxDialogBase
: public wxTopLevelWindow
39 wxDialogBase() { Init(); }
40 virtual ~wxDialogBase() { }
44 // Modal dialogs have a return code - usually the id of the last
46 void SetReturnCode(int returnCode
) { m_returnCode
= returnCode
; }
47 int GetReturnCode() const { return m_returnCode
; }
49 // The identifier for the affirmative button
50 void SetAffirmativeId(int affirmativeId
) { m_affirmativeId
= affirmativeId
; }
51 int GetAffirmativeId() const { return m_affirmativeId
; }
53 // Identifier for Esc key translation
54 #if wxCHECK_VERSION(2, 7, 0)
55 #error "Uncomment SetEscapeId() implementation"
57 // this is what we should do in 2.7: remove the "#else" part and add
58 // m_escapeId declaration and the docs for Set/GetEscapeId()
59 void SetEscapeId(int escapeId
) { m_escapeId
= escapeId
; }
60 int GetEscapeId() const { return m_escapeId
; }
61 #elif wxABI_VERSION > 20601
62 // just a stub for 2.6
63 int GetEscapeId() const { return wxID_ANY
; }
66 #if wxUSE_STATTEXT // && wxUSE_TEXTCTRL
67 // splits text up at newlines and places the
68 // lines into a vertical wxBoxSizer
69 wxSizer
*CreateTextSizer( const wxString
&message
);
70 #endif // wxUSE_STATTEXT // && wxUSE_TEXTCTRL
73 // places buttons into a horizontal wxBoxSizer
74 wxSizer
*CreateButtonSizer( long flags
);
75 wxStdDialogButtonSizer
*CreateStdDialogButtonSizer( long flags
);
76 #endif // wxUSE_BUTTON
79 // The return code from modal dialog
82 // The identifier for the affirmative button (usually wxID_OK)
85 DECLARE_NO_COPY_CLASS(wxDialogBase
)
87 WX_DECLARE_CONTROL_CONTAINER();
91 #if defined(__WXUNIVERSAL__) && !defined(__WXMICROWIN__)
92 #include "wx/univ/dialog.h"
94 #if defined(__WXPALMOS__)
95 #include "wx/palmos/dialog.h"
96 #elif defined(__WXMSW__)
97 #include "wx/msw/dialog.h"
98 #elif defined(__WXMOTIF__)
99 #include "wx/motif/dialog.h"
100 #elif defined(__WXGTK__)
101 #include "wx/gtk/dialog.h"
102 #elif defined(__WXMAC__)
103 #include "wx/mac/dialog.h"
104 #elif defined(__WXCOCOA__)
105 #include "wx/cocoa/dialog.h"
106 #elif defined(__WXPM__)
107 #include "wx/os2/dialog.h"
112 // _WX_DIALOG_H_BASE_