]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dialog.h
finished wxWindow for MGL
[wxWidgets.git] / include / wx / gtk / dialog.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialog.h
3// Purpose:
4// Author: Robert Roebling
43a18898 5// Created:
58614078
RR
6// Id: $Id$
7// Copyright: (c) 1998 Robert Roebling
2b854a32 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
c801d85f
KB
11#ifndef __GTKDIALOGH__
12#define __GTKDIALOGH__
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18#include "wx/defs.h"
a60c99e6 19#include "wx/panel.h"
c33c4050 20#include "wx/icon.h"
c801d85f 21
c801d85f
KB
22//-----------------------------------------------------------------------------
23// classes
24//-----------------------------------------------------------------------------
25
26class wxDialog;
27
28//-----------------------------------------------------------------------------
29// global data
30//-----------------------------------------------------------------------------
31
578c2081 32extern const wxChar *wxDialogNameStr;
c801d85f
KB
33
34//-----------------------------------------------------------------------------
35// wxDialog
36//-----------------------------------------------------------------------------
37
c50f1fb9 38class wxDialog: public wxDialogBase
c801d85f 39{
43a18898 40public:
68995f26 41 wxDialog() { Init(); }
bfc6fde4 42 wxDialog( wxWindow *parent, wxWindowID id,
43a18898 43 const wxString &title,
2b854a32
VZ
44 const wxPoint &pos = wxDefaultPosition,
45 const wxSize &size = wxDefaultSize,
46 long style = wxDEFAULT_DIALOG_STYLE,
47 const wxString &name = wxDialogNameStr );
bfc6fde4
VZ
48 bool Create( wxWindow *parent, wxWindowID id,
49 const wxString &title,
50 const wxPoint &pos = wxDefaultPosition,
51 const wxSize &size = wxDefaultSize,
52 long style = wxDEFAULT_DIALOG_STYLE,
53 const wxString &name = wxDialogNameStr );
54 ~wxDialog();
55
56 void SetTitle(const wxString& title);
57 wxString GetTitle() const;
58
59 void OnApply( wxCommandEvent &event );
60 void OnCancel( wxCommandEvent &event );
61 void OnOK( wxCommandEvent &event );
62 void OnPaint( wxPaintEvent& event );
63 void OnSize( wxSizeEvent &event );
64 void OnCloseWindow( wxCloseEvent& event );
65 /*
66 void OnCharHook( wxKeyEvent& event );
67 */
68
69 bool Destroy();
70
8db37e06 71 virtual bool Show( bool show = TRUE );
bfc6fde4
VZ
72 virtual int ShowModal();
73 virtual void EndModal( int retCode );
74 virtual bool IsModal() const;
75 void SetModal( bool modal );
76
bfc6fde4
VZ
77 virtual void SetIcon( const wxIcon &icon );
78 virtual void Iconize( bool WXUNUSED(iconize)) { }
79 virtual bool IsIconized() const { return FALSE; }
80 bool Iconized() const { return IsIconized(); }
81 virtual void Maximize() { }
82 virtual void Restore() { }
83
8487f887
RR
84 virtual bool IsTopLevel() const { return TRUE; }
85
bfc6fde4 86 // implementation
23efdd02 87 // --------------
bfc6fde4 88
23efdd02
RR
89 // move the window to the specified location and resize it: this is called
90 // from both DoSetSize() and DoSetClientSize()
91 virtual void DoMoveWindow(int x, int y, int width, int height);
92
bfc6fde4
VZ
93 virtual void GtkOnSize( int x, int y, int width, int height );
94 virtual void OnInternalIdle();
95
96 bool m_modalShowing;
97 wxString m_title;
98 wxIcon m_icon;
99
100protected:
68995f26
VZ
101 // common part of all ctors
102 void Init();
103
f6bcfd97
BP
104 // common part of Destroy() and ~wxDialog
105 void CleanUp();
106
bfc6fde4
VZ
107 virtual void DoSetSize(int x, int y,
108 int width, int height,
109 int sizeFlags = wxSIZE_AUTO);
110
111private:
112 DECLARE_EVENT_TABLE()
20e05ffb 113 DECLARE_DYNAMIC_CLASS(wxDialog)
c801d85f
KB
114};
115
116#endif // __GTKDIALOGH__