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