]>
git.saurik.com Git - wxWidgets.git/blob - src/common/dlgcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/dlgcmn.cpp
3 // Purpose: common (to all ports) wxDialog functions
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dialogbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/button.h"
33 #include "wx/dialog.h"
34 #include "wx/dcclient.h"
36 #include "wx/settings.h"
37 #include "wx/stattext.h"
39 #include "wx/button.h"
40 #include "wx/containr.h"
44 //--------------------------------------------------------------------------
46 //--------------------------------------------------------------------------
48 // FIXME - temporary hack in absence of wxtopLevelWindow, should be always used
49 #ifdef wxTopLevelWindowNative
50 BEGIN_EVENT_TABLE(wxDialogBase
, wxTopLevelWindow
)
51 WX_EVENT_TABLE_CONTROL_CONTAINER(wxDialogBase
)
54 WX_DELEGATE_TO_CONTROL_CONTAINER(wxDialogBase
)
57 void wxDialogBase::Init()
60 #ifdef wxTopLevelWindowNative // FIXME - temporary hack, should be always used!
61 m_container
.SetContainerWindow(this);
65 #if wxUSE_STATTEXT && wxUSE_TEXTCTRL
67 wxSizer
*wxDialogBase::CreateTextSizer( const wxString
& message
)
69 wxBoxSizer
*box
= new wxBoxSizer( wxVERTICAL
);
71 // get line height for empty lines
73 wxFont
font( GetFont() );
76 GetTextExtent(_T("H"), (int*)NULL
, &y
, (int*)NULL
, (int*)NULL
, &font
);
79 for ( size_t pos
= 0; pos
< message
.length(); pos
++ )
81 switch ( message
[pos
] )
86 wxStaticText
*s1
= new wxStaticText( this, -1, line
);
97 // this is used as accel mnemonic prefix in the wxWindows
98 // controls but in the static messages created by
99 // CreateTextSizer() (used by wxMessageBox, for example), we
100 // don't want this special meaning, so we need to quote it
103 // fall through to add it normally too
106 line
+= message
[pos
];
110 // remaining text behind last '\n'
113 wxStaticText
*s2
= new wxStaticText( this, -1, line
);
120 #endif // wxUSE_STATTEXT && wxUSE_TEXTCTRL
124 wxSizer
*wxDialogBase::CreateButtonSizer( long flags
)
126 wxBoxSizer
*box
= new wxBoxSizer( wxHORIZONTAL
);
128 #if defined(__WXMSW__) || defined(__WXMAC__)
129 static const int margin
= 6;
131 static const int margin
= 10;
134 wxButton
*ok
= (wxButton
*) NULL
;
135 wxButton
*cancel
= (wxButton
*) NULL
;
136 wxButton
*yes
= (wxButton
*) NULL
;
137 wxButton
*no
= (wxButton
*) NULL
;
139 // always show an OK button, unless only YES_NO is given
140 if ((flags
& wxYES_NO
) == 0) flags
= flags
| wxOK
;
142 if (flags
& wxYES_NO
)
144 yes
= new wxButton( this, wxID_YES
, _("Yes"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
145 box
->Add( yes
, 0, wxLEFT
|wxRIGHT
, margin
);
146 no
= new wxButton( this, wxID_NO
, _("No") ,wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
147 box
->Add( no
, 0, wxLEFT
|wxRIGHT
, margin
);
151 yes
= new wxButton( this, wxID_YES
, _("Yes"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
152 box
->Add( yes
, 0, wxLEFT
|wxRIGHT
, margin
);
156 no
= new wxButton( this, wxID_NO
, _("No"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
157 box
->Add( no
, 0, wxLEFT
|wxRIGHT
, margin
);
162 ok
= new wxButton( this, wxID_OK
, _("OK"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
163 box
->Add( ok
, 0, wxLEFT
|wxRIGHT
, margin
);
166 if (flags
& wxFORWARD
)
167 box
->Add( new wxButton( this, wxID_FORWARD
, _("Forward"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
), 0, wxLEFT
|wxRIGHT
, margin
);
169 if (flags
& wxBACKWARD
)
170 box
->Add( new wxButton( this, wxID_BACKWARD
, _("Backward"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
), 0, wxLEFT
|wxRIGHT
, margin
);
173 box
->Add( new wxButton( this, wxID_SETUP
, _("Setup"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
), 0, wxLEFT
|wxRIGHT
, margin
);
176 box
->Add( new wxButton( this, wxID_MORE
, _("More..."),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
), 0, wxLEFT
|wxRIGHT
, margin
);
179 box
->Add( new wxButton( this, wxID_HELP
, _("Help"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
), 0, wxLEFT
|wxRIGHT
, margin
);
181 if (flags
& wxCANCEL
)
183 cancel
= new wxButton( this, wxID_CANCEL
, _("Cancel"),wxDefaultPosition
,wxDefaultSize
,wxCLIP_SIBLINGS
);
184 box
->Add( cancel
, 0, wxLEFT
|wxRIGHT
, margin
);
187 if (flags
& wxNO_DEFAULT
)
212 #endif // wxUSE_BUTTON