| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/dialog.h |
| 3 | // Purpose: wxDialogBase class |
| 4 | // Author: Vadim Zeitlin |
| 5 | // Modified by: |
| 6 | // Created: 29.06.99 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Vadim Zeitlin |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_DIALOG_H_BASE_ |
| 13 | #define _WX_DIALOG_H_BASE_ |
| 14 | |
| 15 | #include "wx/defs.h" |
| 16 | #include "wx/panel.h" |
| 17 | |
| 18 | class WXDLLEXPORT wxDialogBase : public wxPanel |
| 19 | { |
| 20 | public: |
| 21 | // the modal dialogs have a return code - usually the id of the last |
| 22 | // pressed button |
| 23 | void SetReturnCode(int returnCode) { m_returnCode = returnCode; } |
| 24 | int GetReturnCode() const { return m_returnCode; } |
| 25 | |
| 26 | protected: |
| 27 | // splits text up at newlines and places the |
| 28 | // lines into a vertical wxBoxSizer |
| 29 | wxSizer *CreateTextSizer( const wxString &message ); |
| 30 | |
| 31 | // places buttons into a horizontal wxBoxSizer |
| 32 | wxSizer *CreateButtonSizer( long flags ); |
| 33 | |
| 34 | // the return code from modal dialog |
| 35 | int m_returnCode; |
| 36 | }; |
| 37 | |
| 38 | #if defined(__WXMSW__) |
| 39 | #include "wx/msw/dialog.h" |
| 40 | #elif defined(__WXMOTIF__) |
| 41 | #include "wx/motif/dialog.h" |
| 42 | #elif defined(__WXGTK__) |
| 43 | #include "wx/gtk/dialog.h" |
| 44 | #elif defined(__WXQT__) |
| 45 | #include "wx/qt/dialog.h" |
| 46 | #elif defined(__WXMAC__) |
| 47 | #include "wx/mac/dialog.h" |
| 48 | #elif defined(__WXPM__) |
| 49 | #include "wx/os2/dialog.h" |
| 50 | #elif defined(__WXSTUBS__) |
| 51 | #include "wx/stubs/dialog.h" |
| 52 | #endif |
| 53 | |
| 54 | #endif |
| 55 | // _WX_DIALOG_H_BASE_ |