]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dialog.h
Fiddled with wxFindWindowAtPoint to make it work with notebooks and static boxes
[wxWidgets.git] / include / wx / dialog.h
CommitLineData
dfe1eee3
VZ
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
34138703
JS
12#ifndef _WX_DIALOG_H_BASE_
13#define _WX_DIALOG_H_BASE_
c801d85f 14
1b68e0b5
RR
15#ifdef __GNUG__
16 #pragma interface "dialogbase.h"
17#endif
18
9f3a38fc
VZ
19#include "wx/defs.h"
20#include "wx/panel.h"
21
c50f1fb9
VZ
22class WXDLLEXPORT wxDialogBase : public wxPanel
23{
dfe1eee3
VZ
24public:
25 // the modal dialogs have a return code - usually the id of the last
26 // pressed button
27 void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
28 int GetReturnCode() const { return m_returnCode; }
29
92afa2b1
RR
30 // splits text up at newlines and places the
31 // lines into a vertical wxBoxSizer
32 wxSizer *CreateTextSizer( const wxString &message );
33
34 // places buttons into a horizontal wxBoxSizer
35 wxSizer *CreateButtonSizer( long flags );
dfe1eee3 36
f6bcfd97 37protected:
dfe1eee3
VZ
38 // the return code from modal dialog
39 int m_returnCode;
c50f1fb9
VZ
40};
41
2049ba38 42#if defined(__WXMSW__)
c50f1fb9 43 #include "wx/msw/dialog.h"
2049ba38 44#elif defined(__WXMOTIF__)
c50f1fb9 45 #include "wx/motif/dialog.h"
2049ba38 46#elif defined(__WXGTK__)
c50f1fb9 47 #include "wx/gtk/dialog.h"
b4e76e0d 48#elif defined(__WXQT__)
c50f1fb9 49 #include "wx/qt/dialog.h"
34138703 50#elif defined(__WXMAC__)
c50f1fb9 51 #include "wx/mac/dialog.h"
1777b9bb
DW
52#elif defined(__WXPM__)
53 #include "wx/os2/dialog.h"
34138703 54#elif defined(__WXSTUBS__)
c50f1fb9 55 #include "wx/stubs/dialog.h"
c801d85f
KB
56#endif
57
58#endif
34138703 59 // _WX_DIALOG_H_BASE_