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