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