]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/dialog.h
1. suppressed some messages from HasEntry()/HasKeys()
[wxWidgets.git] / include / wx / motif / dialog.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialog.h
3// Purpose: wxDialog class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DIALOG_H_
13#define _WX_DIALOG_H_
14
15#ifdef __GNUG__
16#pragma interface "dialog.h"
17#endif
18
19#include "wx/panel.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxDialogNameStr;
22
23// Dialog boxes
24class WXDLLEXPORT wxDialog: public wxPanel
25{
26 DECLARE_DYNAMIC_CLASS(wxDialog)
27public:
28
29 wxDialog();
30
31 // Constructor with a modal flag, but no window id - the old convention
32 inline wxDialog(wxWindow *parent,
33 const wxString& title, bool modal,
34 int x = -1, int y= -1, int width = 500, int height = 500,
35 long style = wxDEFAULT_DIALOG_STYLE,
36 const wxString& name = wxDialogNameStr)
37 {
38 long modalStyle = modal ? wxDIALOG_MODAL : wxDIALOG_MODELESS ;
39 Create(parent, -1, title, wxPoint(x, y), wxSize(width, height), style|modalStyle, name);
40 }
41
42 // Constructor with no modal flag - the new convention.
43 inline wxDialog(wxWindow *parent, wxWindowID id,
44 const wxString& title,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = wxDEFAULT_DIALOG_STYLE,
48 const wxString& name = wxDialogNameStr)
49 {
50 Create(parent, id, title, pos, size, style, name);
51 }
52
53 bool Create(wxWindow *parent, wxWindowID id,
54 const wxString& title, // bool modal = FALSE, // TODO make this a window style?
55 const wxPoint& pos = wxDefaultPosition,
56 const wxSize& size = wxDefaultSize,
57 long style = wxDEFAULT_DIALOG_STYLE,
58 const wxString& name = wxDialogNameStr);
59
60 ~wxDialog();
61
62 virtual bool Destroy();
63 void SetClientSize(int width, int height);
4fabb575
JS
64 void SetClientSize(const wxSize& size) { wxWindow::SetClientSize(size); }
65
dfc54541 66 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
4fabb575
JS
67 virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
68 { wxWindow::SetSize(rect, sizeFlags); }
69 virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
70
9b6dbb09
JS
71 bool Show(bool show);
72 void Iconize(bool iconize);
dfc54541
JS
73 void Raise();
74 void Lower();
9b6dbb09
JS
75
76 virtual bool IsIconized() const;
77 void Fit();
78
79 void SetTitle(const wxString& title);
80 wxString GetTitle() const ;
81
82 bool OnClose();
83 void OnCharHook(wxKeyEvent& event);
84 void OnCloseWindow(wxCloseEvent& event);
85
86 void SetModal(bool flag);
87
88 virtual void Centre(int direction = wxBOTH);
89 virtual bool IsModal() const { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
90
91 virtual int ShowModal();
92 virtual void EndModal(int retCode);
93
94 // Standard buttons
95 void OnOK(wxCommandEvent& event);
96 void OnApply(wxCommandEvent& event);
97 void OnCancel(wxCommandEvent& event);
98
99 // Responds to colour changes
100 void OnSysColourChanged(wxSysColourChangedEvent& event);
101
0d57be45 102// Implementation
4b5f3fe6 103 virtual void ChangeFont(bool keepOriginalSize = TRUE);
0d57be45
JS
104 virtual void ChangeBackgroundColour();
105 virtual void ChangeForegroundColour();
dfc54541
JS
106 inline WXWidget GetTopWidget() const { return m_mainWidget; }
107 inline WXWidget GetClientWidget() const { return m_mainWidget; }
108
109
110public:
111 //// Motif-specific
112 bool m_modalShowing;
113 wxString m_dialogTitle;
114
9b6dbb09
JS
115DECLARE_EVENT_TABLE()
116};
117
118#endif
119 // _WX_DIALOG_H_