]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/extdlgg.cpp
77bf06c4bd121eba73187e355cc0a581cd0047f2
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: extended generic dialog
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "extdlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/dialog.h"
27 #include "wx/button.h"
31 #include "wx/statline.h"
34 #include "wx/generic/extdlgg.h"
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 #define STATIC_LINE_MARGIN 15
41 #define CLIENT_AREA_MARGIN 10
42 #define BUTTON_AREA_MARGIN 10
44 #if !USE_SHARED_LIBRARY
45 IMPLEMENT_DYNAMIC_CLASS(wxExtDialog
, wxDialog
)
47 BEGIN_EVENT_TABLE(wxExtDialog
, wxDialog
)
48 EVT_SIZE(wxExtDialog::OnSize
)
49 EVT_BUTTON(wxID_YES
, wxExtDialog::OnYes
)
50 EVT_BUTTON(wxID_NO
, wxExtDialog::OnNo
)
51 EVT_BUTTON(wxID_CANCEL
, wxExtDialog::OnCancel
)
55 wxExtDialog::wxExtDialog( wxWindow
*parent
, wxWindowID id
,
56 const wxString
& title
, long extraStyle
,
57 const wxPoint
& pos
, const wxSize
& size
,
58 long style
, const wxString
&name
)
60 Create( parent
, id
, title
, extraStyle
, pos
, size
, style
, name
);
63 bool wxExtDialog::Create( wxWindow
*parent
, wxWindowID id
,
64 const wxString
& title
, long extraStyle
,
65 const wxPoint
& pos
, const wxSize
& size
,
66 long style
, const wxString
&name
)
68 if (!wxDialog::Create( parent
, id
, title
, pos
, size
, style
, name
))
71 m_extraStyle
= extraStyle
;
73 wxButton
*ok
= (wxButton
*) NULL
;
74 wxButton
*cancel
= (wxButton
*) NULL
;
75 wxButton
*yes
= (wxButton
*) NULL
;
76 wxButton
*no
= (wxButton
*) NULL
;
79 if (m_extraStyle
& wxYES_NO
)
81 yes
= new wxButton( this, wxID_YES
, _("Yes") );
82 m_buttons
.Append( yes
);
83 no
= new wxButton( this, wxID_NO
, _("No") );
84 m_buttons
.Append( no
);
87 if (m_extraStyle
& wxYES
)
89 yes
= new wxButton( this, wxID_YES
, _("Yes") );
90 m_buttons
.Append( yes
);
93 if (m_extraStyle
& wxNO
)
95 no
= new wxButton( this, wxID_NO
, _("No") );
96 m_buttons
.Append( no
);
99 if (m_extraStyle
& wxOK
)
101 ok
= new wxButton( this, wxID_OK
, _("OK") );
102 m_buttons
.Append( ok
);
105 if (m_extraStyle
& wxFORWARD
)
106 AddButton( new wxButton( this, wxID_FORWARD
, _("Forward") ) );
108 if (m_extraStyle
& wxBACKWARD
)
109 AddButton( new wxButton( this, wxID_BACKWARD
, _("Backward") ) );
111 if (m_extraStyle
& wxSETUP
)
112 AddButton( new wxButton( this, wxID_SETUP
, _("Setup") ) );
114 if (m_extraStyle
& wxMORE
)
115 AddButton( new wxButton( this, wxID_MORE
, _("More..") ) );
117 if (m_extraStyle
& wxCANCEL
)
119 cancel
= new wxButton( this, wxID_CANCEL
, _("Cancel") );
120 m_buttons
.Append( cancel
);
123 if ((m_extraStyle
& wxNO_DEFAULT
) == 0)
138 if (style
& wxED_STATIC_LINE
)
140 int line_style
= wxLI_HORIZONTAL
;
141 if (style
& wxED_BUTTONS_RIGHT
) line_style
= wxLI_VERTICAL
;
143 m_statLine
= new wxStaticLine( this, -1, wxDefaultPosition
, wxDefaultSize
, line_style
);
146 m_statLine
= (wxStaticLine
*) NULL
;
149 if (m_extraStyle
& wxCENTRE
)
155 void wxExtDialog::AddButton( wxButton
*button
)
157 m_buttons
.Append( button
);
160 void wxExtDialog::SetDefaultButton( wxWindowID button
)
162 wxNode
*node
= m_buttons
.First();
165 wxButton
*but
= (wxButton
*) node
->Data();
166 if (but
->GetId() == button
)
175 void wxExtDialog::EnableButton( wxWindowID button
, bool enable
)
177 wxNode
*node
= m_buttons
.First();
180 wxButton
*but
= (wxButton
*) node
->Data();
181 if (but
->GetId() == button
)
189 bool wxExtDialog::ButtonIsEnabled( wxWindowID button
)
191 wxNode
*node
= m_buttons
.First();
194 wxButton
*but
= (wxButton
*) node
->Data();
195 if (but
->GetId() == button
)
196 return but
->IsEnabled();
201 void wxExtDialog::OnSize( wxSizeEvent
&WXUNUSED(event
) )
203 wxSize
client_size( GetClientSize() );
204 wxSize
button_area( LayoutButtons() );
206 if (HasFlag(wxED_BUTTONS_RIGHT
))
207 client_size
.x
-= button_area
.x
;
209 client_size
.y
-= button_area
.y
;
213 if (m_windowStyle
& wxED_CLIENT_MARGIN
)
214 m_clientWindow
->SetSize( CLIENT_AREA_MARGIN
,
216 client_size
.x
- 2*CLIENT_AREA_MARGIN
,
217 client_size
.y
- 2*CLIENT_AREA_MARGIN
);
219 m_clientWindow
->SetSize( 0, 0, client_size
.x
, client_size
.y
);
221 if (m_clientWindow
->GetAutoLayout())
222 m_clientWindow
->Layout();
226 void wxExtDialog::OnYes(wxCommandEvent
& event
)
228 EndModal( wxID_YES
);
231 void wxExtDialog::OnNo(wxCommandEvent
& event
)
236 void wxExtDialog::OnCancel(wxCommandEvent
& event
)
238 /* allow cancellation via ESC/Close button except if
239 only YES and NO are specified. */
240 if ((m_extraStyle
& wxYES_NO
) != wxYES_NO
|| (m_extraStyle
& wxCANCEL
))
242 EndModal( wxID_CANCEL
);
246 wxSize
wxExtDialog::GetButtonAreaSize()
248 if (m_buttons
.GetCount() == 0) return wxSize(0,0);
252 // this routine can be improved to measure the string length
253 // of the button text or the bitmap size if using wxBmpButton
254 // or to query the standard button size somehow.
256 int button_size_and_margin_x
= 110;
257 int button_size_and_margin_y
= 44;
259 if (m_windowStyle
& wxED_BUTTONS_RIGHT
)
261 ret
.x
= button_size_and_margin_x
;
262 ret
.y
= m_buttons
.GetCount()*button_size_and_margin_y
+ 2*BUTTON_AREA_MARGIN
;
265 ret
.x
+= STATIC_LINE_MARGIN
;
270 ret
.x
= m_buttons
.GetCount()*button_size_and_margin_x
+ 2*BUTTON_AREA_MARGIN
;
271 ret
.y
= button_size_and_margin_y
;
274 ret
.y
+= STATIC_LINE_MARGIN
;
281 wxSize
wxExtDialog::LayoutButtons()
283 if (m_buttons
.GetCount() == 0) return wxSize(0,0);
285 wxSize
area_used( GetButtonAreaSize() );
286 wxSize
client_area( GetClientSize() );
288 if (m_windowStyle
& wxED_BUTTONS_RIGHT
)
290 area_used
.y
= client_area
.y
;
292 int space_for_each_button
= (client_area
.y
-2*BUTTON_AREA_MARGIN
) / m_buttons
.GetCount();
294 wxNode
*node
= m_buttons
.First();
297 wxButton
*button
= (wxButton
*)node
->Data();
299 wxSize
button_size( button
->GetSize() );
300 if (button_size
.x
< 80) button_size
.x
= 80;
302 int center_of_button_y
= n
*space_for_each_button
+ space_for_each_button
/2;
303 int button_y
= BUTTON_AREA_MARGIN
+ center_of_button_y
- button_size
.y
/2;
305 int center_of_button_x
= client_area
.x
- area_used
.x
/2;
306 int button_x
= center_of_button_x
- button_size
.x
/2;
308 button
->SetSize( button_x
, button_y
, button_size
.x
, button_size
.y
);
316 m_statLine
->SetSize( client_area
.x
- area_used
.x
,
318 wxStaticLine::GetDefaultSize(),
324 area_used
.x
= client_area
.x
;
326 int space_for_each_button
= (client_area
.x
-2*BUTTON_AREA_MARGIN
) / m_buttons
.GetCount();
328 wxNode
*node
= m_buttons
.First();
331 wxButton
*button
= (wxButton
*)node
->Data();
333 wxSize
button_size( button
->GetSize() );
334 if (button_size
.x
< 80) button_size
.x
= 80;
336 int center_of_button_x
= n
*space_for_each_button
+ space_for_each_button
/2;
337 int button_x
= BUTTON_AREA_MARGIN
+ center_of_button_x
- button_size
.x
/2;
339 int center_of_button_y
= client_area
.y
- area_used
.y
/2;
340 int button_y
= center_of_button_y
- button_size
.y
/2;
342 button
->SetSize( button_x
, button_y
, button_size
.x
, button_size
.y
);
350 m_statLine
->SetSize( 0,
351 client_area
.y
- area_used
.y
,
353 wxStaticLine::GetDefaultSize() );