]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
2b854a32 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "dialog.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/dialog.h" | |
15 | #include "wx/frame.h" | |
16 | #include "wx/app.h" | |
83624f79 RR |
17 | |
18 | #include "gdk/gdk.h" | |
19 | #include "gtk/gtk.h" | |
c801d85f KB |
20 | #include "wx/gtk/win_gtk.h" |
21 | ||
acfd422a RR |
22 | //----------------------------------------------------------------------------- |
23 | // idle system | |
24 | //----------------------------------------------------------------------------- | |
25 | ||
26 | extern void wxapp_install_idle_handler(); | |
27 | extern bool g_isIdle; | |
28 | ||
29 | //----------------------------------------------------------------------------- | |
30 | // data | |
e2414cbe RR |
31 | //----------------------------------------------------------------------------- |
32 | ||
33 | extern wxList wxPendingDelete; | |
34 | ||
c801d85f | 35 | //----------------------------------------------------------------------------- |
e1e955e1 RR |
36 | // "delete_event" |
37 | //----------------------------------------------------------------------------- | |
c801d85f KB |
38 | |
39 | bool gtk_dialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win ) | |
2b854a32 | 40 | { |
121a3581 RR |
41 | if (g_isIdle) |
42 | wxapp_install_idle_handler(); | |
2b854a32 | 43 | |
fb1585ae | 44 | win->Close(); |
c801d85f | 45 | |
fb1585ae | 46 | return TRUE; |
c33c4050 | 47 | } |
c801d85f | 48 | |
e52f60e6 RR |
49 | //----------------------------------------------------------------------------- |
50 | // "size_allocate" | |
51 | //----------------------------------------------------------------------------- | |
52 | ||
53 | static void gtk_dialog_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxDialog *win ) | |
54 | { | |
121a3581 RR |
55 | if (g_isIdle) |
56 | wxapp_install_idle_handler(); | |
acfd422a | 57 | |
a2053b27 | 58 | if (!win->m_hasVMT) return; |
e52f60e6 | 59 | |
121a3581 RR |
60 | if ((win->m_width != alloc->width) || (win->m_height != alloc->height)) |
61 | { | |
62 | win->m_width = alloc->width; | |
63 | win->m_height = alloc->height; | |
64 | win->UpdateSize(); | |
65 | } | |
e52f60e6 RR |
66 | } |
67 | ||
36b3b54a RR |
68 | //----------------------------------------------------------------------------- |
69 | // "configure_event" | |
70 | //----------------------------------------------------------------------------- | |
71 | ||
c693edf3 RR |
72 | static gint |
73 | #if (GTK_MINOR_VERSON > 0) | |
74 | gtk_dialog_configure_callback( GtkWidget *WXUNUSED(widget), GdkEventConfigure *WXUNUSED(event), wxDialog *win ) | |
75 | #else | |
76 | gtk_dialog_configure_callback( GtkWidget *WXUNUSED(widget), GdkEventConfigure *event, wxDialog *win ) | |
77 | #endif | |
36b3b54a | 78 | { |
121a3581 RR |
79 | if (g_isIdle) |
80 | wxapp_install_idle_handler(); | |
acfd422a | 81 | |
a2053b27 | 82 | if (!win->m_hasVMT) return FALSE; |
36b3b54a | 83 | |
c693edf3 | 84 | #if (GTK_MINOR_VERSON > 0) |
dfc3d7e0 RR |
85 | int x = 0; |
86 | int y = 0; | |
87 | gdk_window_get_root_origin( win->m_widget->window, &x, &y ); | |
dfc3d7e0 RR |
88 | win->m_x = x; |
89 | win->m_y = y; | |
c693edf3 RR |
90 | #else |
91 | win->m_x = event->x; | |
92 | win->m_y = event->y; | |
93 | #endif | |
36b3b54a | 94 | |
a2053b27 | 95 | wxMoveEvent mevent( wxPoint(win->m_x,win->m_y), win->GetId() ); |
36b3b54a RR |
96 | mevent.SetEventObject( win ); |
97 | win->GetEventHandler()->ProcessEvent( mevent ); | |
98 | ||
99 | return FALSE; | |
100 | } | |
101 | ||
2b07d713 RR |
102 | //----------------------------------------------------------------------------- |
103 | // "realize" from m_widget | |
104 | //----------------------------------------------------------------------------- | |
105 | ||
58dea4b0 | 106 | /* we cannot MWM hints and icons before the widget has been realized, |
2b07d713 RR |
107 | so we do this directly after realization */ |
108 | ||
109 | static gint | |
58dea4b0 | 110 | gtk_dialog_realized_callback( GtkWidget *widget, wxDialog *win ) |
2b07d713 | 111 | { |
c5b42c87 RR |
112 | if (g_isIdle) |
113 | wxapp_install_idle_handler(); | |
114 | ||
115 | /* I haven''t been able to set the position of | |
116 | the dialog before it is shown, so I set the | |
117 | position in "realize" and "map" */ | |
118 | gtk_widget_set_uposition( widget, win->m_x, win->m_y ); | |
acfd422a | 119 | |
15b24b14 RR |
120 | /* reset the icon */ |
121 | if (win->m_icon != wxNullIcon) | |
122 | { | |
123 | wxIcon icon( win->m_icon ); | |
124 | win->m_icon = wxNullIcon; | |
f03fc89f | 125 | win->SetIcon( icon ); |
15b24b14 RR |
126 | } |
127 | ||
128 | return FALSE; | |
129 | } | |
130 | ||
131 | //----------------------------------------------------------------------------- | |
132 | // "map" from m_widget | |
133 | //----------------------------------------------------------------------------- | |
134 | ||
135 | static gint | |
136 | gtk_dialog_map_callback( GtkWidget *widget, wxDialog *win ) | |
137 | { | |
c5b42c87 RR |
138 | if (g_isIdle) |
139 | wxapp_install_idle_handler(); | |
140 | ||
15b24b14 | 141 | /* I haven''t been able to set the position of |
c5b42c87 RR |
142 | the dialog before it is shown, so I set the |
143 | position in "realize" and "map" */ | |
a2053b27 | 144 | gtk_widget_set_uposition( widget, win->m_x, win->m_y ); |
15b24b14 | 145 | |
2b07d713 RR |
146 | /* all this is for Motif Window Manager "hints" and is supposed to be |
147 | recognized by other WM as well. not tested. */ | |
051b55ad | 148 | long decor = (long) GDK_DECOR_BORDER; |
aa64626e | 149 | long func = (long) GDK_FUNC_MOVE ; |
2b07d713 | 150 | |
f03fc89f VZ |
151 | if ((win->GetWindowStyle() & wxCAPTION) != 0) |
152 | decor |= GDK_DECOR_TITLE; | |
153 | if ((win->GetWindowStyle() & wxSYSTEM_MENU) != 0) | |
aa64626e KB |
154 | { |
155 | decor |= GDK_DECOR_MENU; | |
156 | func |= GDK_FUNC_CLOSE; | |
157 | } | |
f03fc89f | 158 | if ((win->GetWindowStyle() & wxMINIMIZE_BOX) != 0) |
15b24b14 | 159 | { |
f03fc89f VZ |
160 | func |= GDK_FUNC_MINIMIZE; |
161 | decor |= GDK_DECOR_MINIMIZE; | |
15b24b14 | 162 | } |
f03fc89f | 163 | if ((win->GetWindowStyle() & wxMAXIMIZE_BOX) != 0) |
15b24b14 | 164 | { |
f03fc89f VZ |
165 | decor |= GDK_DECOR_MAXIMIZE; |
166 | func |= GDK_FUNC_MAXIMIZE; | |
15b24b14 | 167 | } |
f03fc89f | 168 | if ((win->GetWindowStyle() & wxRESIZE_BORDER) != 0) |
aa64626e KB |
169 | { |
170 | func |= GDK_FUNC_RESIZE; | |
171 | decor |= GDK_DECOR_RESIZEH; | |
172 | } | |
a2053b27 RR |
173 | gdk_window_set_decorations( win->m_widget->window, (GdkWMDecoration)decor); |
174 | gdk_window_set_functions( win->m_widget->window, (GdkWMFunction)func); | |
2b07d713 RR |
175 | |
176 | /* GTK's shrinking/growing policy */ | |
f03fc89f | 177 | if ((win->GetWindowStyle() & wxRESIZE_BORDER) == 0) |
a2053b27 | 178 | gtk_window_set_policy(GTK_WINDOW(win->m_widget), 0, 0, 1); |
2b07d713 | 179 | else |
a2053b27 | 180 | gtk_window_set_policy(GTK_WINDOW(win->m_widget), 1, 1, 1); |
2b07d713 | 181 | |
227e5e99 RR |
182 | return FALSE; |
183 | } | |
184 | ||
ddb6bc71 RR |
185 | //----------------------------------------------------------------------------- |
186 | // InsertChild for wxDialog | |
187 | //----------------------------------------------------------------------------- | |
188 | ||
189 | /* Callback for wxFrame. This very strange beast has to be used because | |
190 | * C++ has no virtual methods in a constructor. We have to emulate a | |
191 | * virtual function here as wxWindows requires different ways to insert | |
192 | * a child in container classes. */ | |
193 | ||
194 | static void wxInsertChildInDialog( wxDialog* parent, wxWindow* child ) | |
195 | { | |
196 | gtk_myfixed_put( GTK_MYFIXED(parent->m_wxwindow), | |
197 | GTK_WIDGET(child->m_widget), | |
198 | child->m_x, | |
199 | child->m_y, | |
200 | child->m_width, | |
201 | child->m_height ); | |
202 | ||
203 | if (parent->HasFlag(wxTAB_TRAVERSAL)) | |
204 | { | |
205 | /* we now allow a window to get the focus as long as it | |
206 | doesn't have any children. */ | |
207 | GTK_WIDGET_UNSET_FLAGS( parent->m_wxwindow, GTK_CAN_FOCUS ); | |
208 | } | |
209 | } | |
210 | ||
c801d85f KB |
211 | //----------------------------------------------------------------------------- |
212 | // wxDialog | |
213 | //----------------------------------------------------------------------------- | |
214 | ||
a60c99e6 | 215 | BEGIN_EVENT_TABLE(wxDialog,wxPanel) |
fb1585ae RR |
216 | EVT_BUTTON (wxID_OK, wxDialog::OnOK) |
217 | EVT_BUTTON (wxID_CANCEL, wxDialog::OnCancel) | |
218 | EVT_BUTTON (wxID_APPLY, wxDialog::OnApply) | |
e52f60e6 | 219 | EVT_SIZE (wxDialog::OnSize) |
fb1585ae | 220 | EVT_CLOSE (wxDialog::OnCloseWindow) |
c801d85f KB |
221 | END_EVENT_TABLE() |
222 | ||
a60c99e6 | 223 | IMPLEMENT_DYNAMIC_CLASS(wxDialog,wxPanel) |
c801d85f | 224 | |
68995f26 | 225 | void wxDialog::Init() |
c801d85f | 226 | { |
f03fc89f | 227 | m_returnCode = 0; |
de8113d9 | 228 | m_sizeSet = FALSE; |
fb1585ae | 229 | m_modalShowing = FALSE; |
c33c4050 | 230 | } |
c801d85f | 231 | |
2b854a32 | 232 | wxDialog::wxDialog( wxWindow *parent, |
fb1585ae | 233 | wxWindowID id, const wxString &title, |
2b854a32 | 234 | const wxPoint &pos, const wxSize &size, |
fb1585ae | 235 | long style, const wxString &name ) |
c801d85f | 236 | { |
68995f26 VZ |
237 | Init(); |
238 | ||
fb1585ae | 239 | Create( parent, id, title, pos, size, style, name ); |
c33c4050 | 240 | } |
c801d85f KB |
241 | |
242 | bool wxDialog::Create( wxWindow *parent, | |
fb1585ae | 243 | wxWindowID id, const wxString &title, |
2b854a32 | 244 | const wxPoint &pos, const wxSize &size, |
fb1585ae | 245 | long style, const wxString &name ) |
c801d85f | 246 | { |
a802c3a1 | 247 | wxTopLevelWindows.Append( this ); |
2b854a32 | 248 | |
fb1585ae | 249 | m_needParent = FALSE; |
2b854a32 | 250 | |
fb1585ae | 251 | PreCreation( parent, id, pos, size, style, name ); |
2b854a32 | 252 | |
ddb6bc71 RR |
253 | m_insertCallback = (wxInsertChildFunction) wxInsertChildInDialog; |
254 | ||
fb1585ae | 255 | m_widget = gtk_window_new( GTK_WINDOW_TOPLEVEL ); |
de1c750f RR |
256 | |
257 | if (!name.IsEmpty()) | |
258 | gtk_window_set_wmclass( GTK_WINDOW(m_widget), name.mb_str(), name.mb_str() ); | |
259 | ||
fb1585ae | 260 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
2b854a32 | 261 | |
2b854a32 | 262 | gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event", |
fb1585ae | 263 | GTK_SIGNAL_FUNC(gtk_dialog_delete_callback), (gpointer)this ); |
2b854a32 | 264 | |
fb1585ae RR |
265 | m_wxwindow = gtk_myfixed_new(); |
266 | gtk_widget_show( m_wxwindow ); | |
267 | GTK_WIDGET_UNSET_FLAGS( m_wxwindow, GTK_CAN_FOCUS ); | |
2b854a32 | 268 | |
fb1585ae | 269 | gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow ); |
2b854a32 | 270 | |
fb1585ae | 271 | SetTitle( title ); |
2b854a32 | 272 | |
de8113d9 | 273 | if (m_parent) m_parent->AddChild( this ); |
2b854a32 | 274 | |
de8113d9 | 275 | PostCreation(); |
e146b8c8 | 276 | |
2b07d713 RR |
277 | /* we cannot set MWM hints before the widget has |
278 | been realized, so we do this directly after realization */ | |
279 | gtk_signal_connect( GTK_OBJECT(m_widget), "realize", | |
f03fc89f | 280 | GTK_SIGNAL_FUNC(gtk_dialog_realized_callback), (gpointer) this ); |
227e5e99 RR |
281 | |
282 | /* we set the position of the window after the map event. setting it | |
283 | before has no effect (with KWM) */ | |
284 | gtk_signal_connect( GTK_OBJECT(m_widget), "map", | |
f03fc89f | 285 | GTK_SIGNAL_FUNC(gtk_dialog_map_callback), (gpointer) this ); |
227e5e99 | 286 | |
2b07d713 | 287 | /* the user resized the frame by dragging etc. */ |
2b854a32 | 288 | gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate", |
36b3b54a | 289 | GTK_SIGNAL_FUNC(gtk_dialog_size_callback), (gpointer)this ); |
2b854a32 | 290 | |
36b3b54a RR |
291 | gtk_signal_connect( GTK_OBJECT(m_widget), "configure_event", |
292 | GTK_SIGNAL_FUNC(gtk_dialog_configure_callback), (gpointer)this ); | |
293 | ||
fb1585ae | 294 | return TRUE; |
c33c4050 | 295 | } |
c801d85f | 296 | |
43a18898 | 297 | wxDialog::~wxDialog() |
c801d85f | 298 | { |
31c6b4fc RR |
299 | m_isBeingDeleted = TRUE; |
300 | ||
fb1585ae | 301 | wxTopLevelWindows.DeleteObject( this ); |
2b854a32 | 302 | |
0d2a2b60 RR |
303 | if (wxTheApp->GetTopWindow() == this) |
304 | { | |
305 | wxTheApp->SetTopWindow( (wxWindow*) NULL ); | |
306 | } | |
2b854a32 | 307 | |
0d2a2b60 | 308 | if (wxTopLevelWindows.Number() == 0) |
2b854a32 | 309 | { |
0d2a2b60 RR |
310 | wxTheApp->ExitMainLoop(); |
311 | } | |
c33c4050 | 312 | } |
c801d85f | 313 | |
43a18898 | 314 | void wxDialog::SetTitle( const wxString& title ) |
c801d85f | 315 | { |
fb1585ae | 316 | m_title = title; |
ed9b9841 OK |
317 | if (m_title.IsNull()) m_title = _T(""); |
318 | gtk_window_set_title( GTK_WINDOW(m_widget), m_title.mbc_str() ); | |
c33c4050 | 319 | } |
c801d85f | 320 | |
43a18898 | 321 | wxString wxDialog::GetTitle() const |
c801d85f | 322 | { |
fb1585ae | 323 | return (wxString&)m_title; |
c33c4050 | 324 | } |
c801d85f KB |
325 | |
326 | void wxDialog::OnApply( wxCommandEvent &WXUNUSED(event) ) | |
327 | { | |
fb1585ae | 328 | if (Validate()) TransferDataFromWindow(); |
c33c4050 | 329 | } |
c801d85f KB |
330 | |
331 | void wxDialog::OnCancel( wxCommandEvent &WXUNUSED(event) ) | |
332 | { | |
fb1585ae RR |
333 | if (IsModal()) |
334 | { | |
335 | EndModal(wxID_CANCEL); | |
336 | } | |
337 | else | |
338 | { | |
339 | SetReturnCode(wxID_CANCEL); | |
739730ca | 340 | Show(FALSE); |
fb1585ae | 341 | } |
c33c4050 | 342 | } |
c801d85f | 343 | |
903f689b | 344 | void wxDialog::OnOK( wxCommandEvent &WXUNUSED(event) ) |
c801d85f | 345 | { |
32ac755d | 346 | if (Validate() && TransferDataFromWindow()) |
1a6944fd | 347 | { |
2b854a32 | 348 | if (IsModal()) |
fb1585ae RR |
349 | { |
350 | EndModal(wxID_OK); | |
351 | } | |
352 | else | |
353 | { | |
354 | SetReturnCode(wxID_OK); | |
355 | this->Show(FALSE); | |
356 | } | |
1a6944fd | 357 | } |
c33c4050 | 358 | } |
c801d85f KB |
359 | |
360 | void wxDialog::OnPaint( wxPaintEvent& WXUNUSED(event) ) | |
361 | { | |
2b854a32 | 362 | // yes |
c33c4050 | 363 | } |
c801d85f | 364 | |
2b854a32 | 365 | void wxDialog::OnCloseWindow(wxCloseEvent& event) |
c801d85f | 366 | { |
e3065973 JS |
367 | // We'll send a Cancel message by default, |
368 | // which may close the dialog. | |
369 | // Check for looping if the Cancel event handler calls Close(). | |
370 | ||
371 | // Note that if a cancel button and handler aren't present in the dialog, | |
372 | // nothing will happen when you close the dialog via the window manager, or | |
373 | // via Close(). | |
374 | // We wouldn't want to destroy the dialog by default, since the dialog may have been | |
375 | // created on the stack. | |
376 | // However, this does mean that calling dialog->Close() won't delete the dialog | |
377 | // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be | |
378 | // sure to destroy the dialog. | |
379 | // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog. | |
380 | ||
ab2b3dd4 | 381 | static wxList s_closing; |
c801d85f | 382 | |
ab2b3dd4 | 383 | if (s_closing.Member(this)) |
2b854a32 VZ |
384 | return; // no loops |
385 | ||
ab2b3dd4 | 386 | s_closing.Append(this); |
c801d85f | 387 | |
fb1585ae RR |
388 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
389 | cancelEvent.SetEventObject( this ); | |
390 | GetEventHandler()->ProcessEvent(cancelEvent); | |
ab2b3dd4 | 391 | s_closing.DeleteObject(this); |
c801d85f KB |
392 | } |
393 | ||
43a18898 | 394 | bool wxDialog::Destroy() |
e2414cbe | 395 | { |
fb1585ae | 396 | if (!wxPendingDelete.Member(this)) wxPendingDelete.Append(this); |
e2414cbe | 397 | |
fb1585ae | 398 | return TRUE; |
e2414cbe RR |
399 | } |
400 | ||
e52f60e6 RR |
401 | void wxDialog::OnSize( wxSizeEvent &WXUNUSED(event) ) |
402 | { | |
ed9b9841 | 403 | wxASSERT_MSG( (m_widget != NULL), _T("invalid dialog") ); |
2b854a32 | 404 | |
88ac883a | 405 | #if wxUSE_CONSTRAINTS |
e52f60e6 RR |
406 | if (GetAutoLayout()) |
407 | { | |
408 | Layout(); | |
409 | } | |
2b854a32 | 410 | else |
88ac883a | 411 | #endif // wxUSE_CONSTRAINTS |
e52f60e6 | 412 | { |
de8113d9 | 413 | /* no child: go out ! */ |
db1b4961 | 414 | if (!GetChildren().First()) return; |
2b854a32 | 415 | |
de8113d9 | 416 | /* do we have exactly one child? */ |
e52f60e6 | 417 | wxWindow *child = (wxWindow *) NULL; |
db1b4961 | 418 | for(wxNode *node = GetChildren().First(); node; node = node->Next()) |
e52f60e6 RR |
419 | { |
420 | wxWindow *win = (wxWindow *)node->Data(); | |
de135918 | 421 | if (!wxIS_KIND_OF(win,wxFrame) && !wxIS_KIND_OF(win,wxDialog)) |
e52f60e6 | 422 | { |
de8113d9 | 423 | /* it's the second one: do nothing */ |
e52f60e6 RR |
424 | if (child) return; |
425 | child = win; | |
426 | } | |
427 | } | |
428 | ||
de8113d9 | 429 | /* yes: set it's size to fill all the frame */ |
e52f60e6 RR |
430 | int client_x, client_y; |
431 | GetClientSize( &client_x, &client_y ); | |
432 | child->SetSize( 1, 1, client_x-2, client_y); | |
433 | } | |
434 | } | |
435 | ||
bfc6fde4 | 436 | void wxDialog::DoSetSize( int x, int y, int width, int height, int sizeFlags ) |
903f689b | 437 | { |
ed9b9841 OK |
438 | wxASSERT_MSG( (m_widget != NULL), _T("invalid dialog") ); |
439 | wxASSERT_MSG( (m_wxwindow != NULL), _T("invalid dialog") ); | |
fb1585ae | 440 | |
de8113d9 | 441 | if (m_resizing) return; /* I don't like recursions */ |
fb1585ae RR |
442 | m_resizing = TRUE; |
443 | ||
444 | int old_x = m_x; | |
445 | int old_y = m_y; | |
446 | int old_width = m_width; | |
447 | int old_height = m_height; | |
2b854a32 | 448 | |
85ad5eb5 | 449 | if ((sizeFlags & wxSIZE_ALLOW_MINUS_ONE) == 0) |
fb1585ae RR |
450 | { |
451 | if (x != -1) m_x = x; | |
452 | if (y != -1) m_y = y; | |
453 | if (width != -1) m_width = width; | |
454 | if (height != -1) m_height = height; | |
455 | } | |
456 | else | |
457 | { | |
458 | m_x = x; | |
459 | m_y = y; | |
460 | m_width = width; | |
461 | m_height = height; | |
462 | } | |
463 | ||
464 | if ((sizeFlags & wxSIZE_AUTO_WIDTH) == wxSIZE_AUTO_WIDTH) | |
465 | { | |
466 | if (width == -1) m_width = 80; | |
467 | } | |
468 | ||
469 | if ((sizeFlags & wxSIZE_AUTO_HEIGHT) == wxSIZE_AUTO_HEIGHT) | |
470 | { | |
471 | if (height == -1) m_height = 26; | |
472 | } | |
2b854a32 | 473 | |
fb1585ae RR |
474 | if ((m_minWidth != -1) && (m_width < m_minWidth)) m_width = m_minWidth; |
475 | if ((m_minHeight != -1) && (m_height < m_minHeight)) m_height = m_minHeight; | |
0c77152e RR |
476 | if ((m_maxWidth != -1) && (m_width > m_maxWidth)) m_width = m_maxWidth; |
477 | if ((m_maxHeight != -1) && (m_height > m_maxHeight)) m_height = m_maxHeight; | |
fb1585ae RR |
478 | |
479 | if ((m_x != -1) || (m_y != -1)) | |
480 | { | |
2b854a32 | 481 | if ((m_x != old_x) || (m_y != old_y)) |
f03fc89f VZ |
482 | { |
483 | /* we set the position here and when showing the dialog | |
484 | for the first time in idle time */ | |
e146b8c8 | 485 | gtk_widget_set_uposition( m_widget, m_x, m_y ); |
f03fc89f | 486 | } |
fb1585ae | 487 | } |
2b854a32 | 488 | |
fb1585ae RR |
489 | if ((m_width != old_width) || (m_height != old_height)) |
490 | { | |
227e5e99 | 491 | /* actual resizing is deferred to GtkOnSize in idle time and |
f03fc89f | 492 | when showing the dialog */ |
de8113d9 | 493 | m_sizeSet = FALSE; |
fb1585ae | 494 | } |
2b854a32 | 495 | |
fb1585ae | 496 | m_resizing = FALSE; |
903f689b RR |
497 | } |
498 | ||
de8113d9 RR |
499 | void wxDialog::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int height ) |
500 | { | |
501 | // due to a bug in gtk, x,y are always 0 | |
502 | // m_x = x; | |
503 | // m_y = y; | |
504 | ||
505 | if ((m_height == height) && (m_width == width) && (m_sizeSet)) return; | |
506 | if (!m_wxwindow) return; | |
507 | ||
508 | m_width = width; | |
509 | m_height = height; | |
510 | ||
511 | if ((m_minWidth != -1) && (m_width < m_minWidth)) m_width = m_minWidth; | |
512 | if ((m_minHeight != -1) && (m_height < m_minHeight)) m_height = m_minHeight; | |
513 | if ((m_maxWidth != -1) && (m_width > m_maxWidth)) m_width = m_maxWidth; | |
514 | if ((m_maxHeight != -1) && (m_height > m_maxHeight)) m_height = m_maxHeight; | |
515 | ||
516 | /* we actually set the size of a frame here and no-where else */ | |
517 | gtk_widget_set_usize( m_widget, m_width, m_height ); | |
518 | ||
519 | m_sizeSet = TRUE; | |
520 | ||
521 | wxSizeEvent event( wxSize(m_width,m_height), GetId() ); | |
522 | event.SetEventObject( this ); | |
523 | GetEventHandler()->ProcessEvent( event ); | |
524 | } | |
525 | ||
903f689b RR |
526 | void wxDialog::Centre( int direction ) |
527 | { | |
ed9b9841 | 528 | wxASSERT_MSG( (m_widget != NULL), _T("invalid dialog") ); |
2b854a32 | 529 | |
43a18898 RR |
530 | int x = 0; |
531 | int y = 0; | |
2b854a32 | 532 | |
f5eafd0e RR |
533 | if ((direction & wxHORIZONTAL) == wxHORIZONTAL) x = (gdk_screen_width () - m_width) / 2; |
534 | if ((direction & wxVERTICAL) == wxVERTICAL) y = (gdk_screen_height () - m_height) / 2; | |
2b854a32 | 535 | |
fb1585ae | 536 | Move( x, y ); |
903f689b RR |
537 | } |
538 | ||
de8113d9 RR |
539 | void wxDialog::OnInternalIdle() |
540 | { | |
1b3667ab | 541 | if (!m_sizeSet && GTK_WIDGET_REALIZED(m_wxwindow)) |
de8113d9 RR |
542 | GtkOnSize( m_x, m_y, m_width, m_height ); |
543 | } | |
544 | ||
debe6624 | 545 | bool wxDialog::Show( bool show ) |
c801d85f | 546 | { |
fb1585ae RR |
547 | if (!show && IsModal()) |
548 | { | |
de8113d9 | 549 | EndModal( wxID_CANCEL ); |
fb1585ae | 550 | } |
c801d85f | 551 | |
de8113d9 RR |
552 | if (show && !m_sizeSet) |
553 | { | |
554 | /* by calling GtkOnSize here, we don't have to call | |
555 | either after showing the frame, which would entail | |
556 | much ugly flicker nor from within the size_allocate | |
557 | handler, because GTK 1.1.X forbids that. */ | |
558 | ||
559 | GtkOnSize( m_x, m_y, m_width, m_height ); | |
560 | } | |
2b854a32 | 561 | |
739730ca | 562 | bool ret = wxWindow::Show( show ); |
e146b8c8 | 563 | |
fb1585ae | 564 | if (show) InitDialog(); |
2b854a32 | 565 | |
739730ca | 566 | return ret; |
c33c4050 RR |
567 | } |
568 | ||
43a18898 | 569 | bool wxDialog::IsModal() const |
e1e955e1 | 570 | { |
fb1585ae | 571 | return m_modalShowing; |
e1e955e1 RR |
572 | } |
573 | ||
574 | void wxDialog::SetModal( bool WXUNUSED(flag) ) | |
c33c4050 | 575 | { |
e1e955e1 | 576 | /* |
c33c4050 RR |
577 | if (flag) |
578 | m_windowStyle |= wxDIALOG_MODAL; | |
579 | else | |
580 | if (m_windowStyle & wxDIALOG_MODAL) m_windowStyle -= wxDIALOG_MODAL; | |
e1e955e1 | 581 | */ |
ed9b9841 | 582 | wxFAIL_MSG( _T("wxDialog:SetModal obsolete now") ); |
c33c4050 | 583 | } |
c801d85f | 584 | |
43a18898 | 585 | int wxDialog::ShowModal() |
c801d85f | 586 | { |
fb1585ae RR |
587 | if (IsModal()) |
588 | { | |
ed9b9841 | 589 | wxFAIL_MSG( _T("wxDialog:ShowModal called twice") ); |
fb1585ae RR |
590 | return GetReturnCode(); |
591 | } | |
e146b8c8 | 592 | |
fb1585ae | 593 | Show( TRUE ); |
2b854a32 | 594 | |
fb1585ae | 595 | m_modalShowing = TRUE; |
2b854a32 | 596 | |
fb1585ae RR |
597 | gtk_grab_add( m_widget ); |
598 | gtk_main(); | |
599 | gtk_grab_remove( m_widget ); | |
2b854a32 | 600 | |
fb1585ae | 601 | return GetReturnCode(); |
c33c4050 | 602 | } |
c801d85f KB |
603 | |
604 | void wxDialog::EndModal( int retCode ) | |
605 | { | |
fb1585ae | 606 | SetReturnCode( retCode ); |
2b854a32 | 607 | |
fb1585ae RR |
608 | if (!IsModal()) |
609 | { | |
ed9b9841 | 610 | wxFAIL_MSG( _T("wxDialog:EndModal called twice") ); |
fb1585ae RR |
611 | return; |
612 | } | |
2b854a32 | 613 | |
fb1585ae | 614 | m_modalShowing = FALSE; |
2b854a32 | 615 | |
fb1585ae | 616 | gtk_main_quit(); |
2b854a32 | 617 | |
fb1585ae | 618 | Show( FALSE ); |
c33c4050 | 619 | } |
c801d85f | 620 | |
43a18898 | 621 | void wxDialog::InitDialog() |
c801d85f | 622 | { |
fb1585ae | 623 | wxWindow::InitDialog(); |
c33c4050 RR |
624 | } |
625 | ||
c33c4050 RR |
626 | void wxDialog::SetIcon( const wxIcon &icon ) |
627 | { | |
fb1585ae RR |
628 | m_icon = icon; |
629 | if (!icon.Ok()) return; | |
2b854a32 | 630 | |
f9241296 RR |
631 | if (!m_widget->window) return; |
632 | ||
fb1585ae RR |
633 | wxMask *mask = icon.GetMask(); |
634 | GdkBitmap *bm = (GdkBitmap *) NULL; | |
635 | if (mask) bm = mask->GetBitmap(); | |
2b854a32 | 636 | |
fb1585ae | 637 | gdk_window_set_icon( m_widget->window, (GdkWindow *) NULL, icon.GetPixmap(), bm ); |
c33c4050 | 638 | } |