1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
17 #include "wx/window.h"
21 #include "wx/layout.h"
23 #include "wx/dialog.h"
24 #include "wx/msgdlg.h"
25 #include "wx/dcclient.h"
28 #include "wx/notebook.h"
29 #include "gdk/gdkkeysyms.h"
31 #include "wx/gtk/win_gtk.h"
32 #include "gdk/gdkprivate.h"
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern wxList wxPendingDelete
;
39 extern wxList wxTopLevelWindows
;
40 extern bool g_blockEventsOnDrag
;
42 //-----------------------------------------------------------------------------
43 // GTK callbacks for wxWindows event system
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
47 // expose (of m_wxwindow, not of m_widget)
49 void gtk_window_expose_callback( GtkWidget
*WXUNUSED(widget
), GdkEventExpose
*gdk_event
, wxWindow
*win
)
51 if (!win
->HasVMT()) return;
52 if (g_blockEventsOnDrag
) return;
55 printf( "OnExpose from " );
56 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
57 printf( win->GetClassInfo()->GetClassName() );
60 printf( "x: %d \n", gdk_event->area.x );
61 printf( "y: %d \n", gdk_event->area.y );
62 printf( "w: %d \n", gdk_event->area.width );
63 printf( "h: %d \n", gdk_event->area.height );
66 win
->m_updateRegion
.Union( gdk_event
->area
.x
,
68 gdk_event
->area
.width
,
69 gdk_event
->area
.height
);
71 if (gdk_event
->count
> 0) return;
73 wxPaintEvent
event( win
->GetId() );
74 event
.SetEventObject( win
);
75 win
->ProcessEvent( event
);
77 win
->m_updateRegion
.Clear();
80 //-----------------------------------------------------------------------------
81 // draw (of m_wxwindow, not of m_widget)
83 void gtk_window_draw_callback( GtkWidget
*WXUNUSED(widget
), GdkRectangle
*rect
, wxWindow
*win
)
85 if (!win
->HasVMT()) return;
86 if (g_blockEventsOnDrag
) return;
89 printf( "OnDraw from " );
90 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
91 printf( win->GetClassInfo()->GetClassName() );
94 printf( "x: %d \n", rect->x );
95 printf( "y: %d \n", rect->y );
96 printf( "w: %d \n", rect->width );
97 printf( "h: %d \n", rect->height );
100 win
->m_updateRegion
.Union( rect
->x
, rect
->y
, rect
->width
, rect
->height
);
102 wxPaintEvent
event( win
->GetId() );
103 event
.SetEventObject( win
);
104 win
->ProcessEvent( event
);
106 win
->m_updateRegion
.Clear();
109 //-----------------------------------------------------------------------------
111 // I don't any longer intercept GTK's internal resize events, except
112 // for frames and from within MDI and tabbed windows (client area
113 // size determined internally by GTK, not wxWin).
116 void gtk_window_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxWindow *win )
118 if (!win->HasVMT()) return;
119 if (g_blockEventsOnDrag) return;
123 if ((win->m_x == alloc->x) &&
124 (win->m_y == alloc->y) &&
125 (win->m_width == alloc->width) &&
126 (win->m_height == alloc->height))
131 printf( "OnResize from " );
132 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
133 printf( win->GetClassInfo()->GetClassName() );
136 printf( " Old: X: %d Y: %d ", win->m_x, win->m_y );
137 printf( " W: %d H: %d ", win->m_width, win->m_height );
140 printf( " New: X: %d Y: %d ", alloc->x, alloc->y );
141 printf( " W: %d H: %d ", alloc->width, alloc->height );
144 wxSizeEvent event( wxSize( alloc->width, alloc->height), win->GetId() );
145 event.SetEventObject( win );
146 win->ProcessEvent( event );
150 //-----------------------------------------------------------------------------
153 gint
gtk_window_key_press_callback( GtkWidget
*WXUNUSED(widget
), GdkEventKey
*gdk_event
, wxWindow
*win
)
155 if (!win
->HasVMT()) return FALSE
;
156 if (g_blockEventsOnDrag
) return FALSE
;
159 printf( "OnKeyPress from " );
160 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
161 printf( win->GetClassInfo()->GetClassName() );
166 switch (gdk_event
->keyval
)
168 case GDK_BackSpace
: key_code
= WXK_BACK
; break;
169 case GDK_Tab
: key_code
= WXK_TAB
; break;
170 case GDK_Linefeed
: key_code
= WXK_RETURN
; break;
171 case GDK_Clear
: key_code
= WXK_CLEAR
; break;
172 case GDK_Return
: key_code
= WXK_RETURN
; break;
173 case GDK_Pause
: key_code
= WXK_PAUSE
; break;
174 case GDK_Scroll_Lock
: key_code
= WXK_SCROLL
; break;
175 case GDK_Escape
: key_code
= WXK_ESCAPE
; break;
176 case GDK_Delete
: key_code
= WXK_DELETE
; break;
177 case GDK_Home
: key_code
= WXK_HOME
; break;
178 case GDK_Left
: key_code
= WXK_LEFT
; break;
179 case GDK_Up
: key_code
= WXK_UP
; break;
180 case GDK_Right
: key_code
= WXK_RIGHT
; break;
181 case GDK_Down
: key_code
= WXK_DOWN
; break;
182 case GDK_Prior
: key_code
= WXK_PRIOR
; break;
183 // case GDK_Page_Up: key_code = WXK_PAGEUP; break;
184 case GDK_Next
: key_code
= WXK_NEXT
; break;
185 // case GDK_Page_Down: key_code = WXK_PAGEDOWN; break;
186 case GDK_End
: key_code
= WXK_END
; break;
187 case GDK_Begin
: key_code
= WXK_HOME
; break;
188 case GDK_Select
: key_code
= WXK_SELECT
; break;
189 case GDK_Print
: key_code
= WXK_PRINT
; break;
190 case GDK_Execute
: key_code
= WXK_EXECUTE
; break;
191 case GDK_Insert
: key_code
= WXK_INSERT
; break;
192 case GDK_Num_Lock
: key_code
= WXK_NUMLOCK
; break;
193 case GDK_KP_Tab
: key_code
= WXK_TAB
; break;
194 case GDK_KP_Enter
: key_code
= WXK_RETURN
; break;
195 case GDK_KP_Home
: key_code
= WXK_HOME
; break;
196 case GDK_KP_Left
: key_code
= WXK_LEFT
; break;
197 case GDK_KP_Up
: key_code
= WXK_UP
; break;
198 case GDK_KP_Right
: key_code
= WXK_RIGHT
; break;
199 case GDK_KP_Down
: key_code
= WXK_DOWN
; break;
200 case GDK_KP_Prior
: key_code
= WXK_PRIOR
; break;
201 // case GDK_KP_Page_Up: key_code = WXK_PAGEUP; break;
202 case GDK_KP_Next
: key_code
= WXK_NEXT
; break;
203 // case GDK_KP_Page_Down: key_code = WXK_PAGEDOWN; break;
204 case GDK_KP_End
: key_code
= WXK_END
; break;
205 case GDK_KP_Begin
: key_code
= WXK_HOME
; break;
206 case GDK_KP_Insert
: key_code
= WXK_INSERT
; break;
207 case GDK_KP_Delete
: key_code
= WXK_DELETE
; break;
208 case GDK_KP_Multiply
: key_code
= WXK_MULTIPLY
; break;
209 case GDK_KP_Add
: key_code
= WXK_ADD
; break;
210 case GDK_KP_Separator
: key_code
= WXK_SEPARATOR
; break;
211 case GDK_KP_Subtract
: key_code
= WXK_SUBTRACT
; break;
212 case GDK_KP_Decimal
: key_code
= WXK_DECIMAL
; break;
213 case GDK_KP_Divide
: key_code
= WXK_DIVIDE
; break;
214 case GDK_KP_0
: key_code
= WXK_NUMPAD0
; break;
215 case GDK_KP_1
: key_code
= WXK_NUMPAD1
; break;
216 case GDK_KP_2
: key_code
= WXK_NUMPAD2
; break;
217 case GDK_KP_3
: key_code
= WXK_NUMPAD3
; break;
218 case GDK_KP_4
: key_code
= WXK_NUMPAD4
; break;
219 case GDK_KP_5
: key_code
= WXK_NUMPAD5
; break;
220 case GDK_KP_6
: key_code
= WXK_NUMPAD6
; break;
221 case GDK_KP_7
: key_code
= WXK_NUMPAD7
; break;
222 case GDK_KP_8
: key_code
= WXK_NUMPAD7
; break;
223 case GDK_KP_9
: key_code
= WXK_NUMPAD9
; break;
224 case GDK_F1
: key_code
= WXK_F1
; break;
225 case GDK_F2
: key_code
= WXK_F2
; break;
226 case GDK_F3
: key_code
= WXK_F3
; break;
227 case GDK_F4
: key_code
= WXK_F4
; break;
228 case GDK_F5
: key_code
= WXK_F5
; break;
229 case GDK_F6
: key_code
= WXK_F6
; break;
230 case GDK_F7
: key_code
= WXK_F7
; break;
231 case GDK_F8
: key_code
= WXK_F8
; break;
232 case GDK_F9
: key_code
= WXK_F9
; break;
233 case GDK_F10
: key_code
= WXK_F10
; break;
234 case GDK_F11
: key_code
= WXK_F11
; break;
235 case GDK_F12
: key_code
= WXK_F12
; break;
238 if ((gdk_event
->keyval
>= 0x20) && (gdk_event
->keyval
<= 0xFF))
239 key_code
= gdk_event
->keyval
;
243 if (!key_code
) return FALSE
;
245 wxKeyEvent
event( wxEVT_CHAR
);
246 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
);
247 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
);
248 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
);
249 event
.m_metaDown
= (gdk_event
->state
& GDK_MOD2_MASK
);
250 event
.m_keyCode
= key_code
;
253 event
.SetEventObject( win
);
254 return win
->ProcessEvent( event
);
257 //-----------------------------------------------------------------------------
260 gint
gtk_window_button_press_callback( GtkWidget
*widget
, GdkEventButton
*gdk_event
, wxWindow
*win
)
262 if (widget
->window
!= gdk_event
->window
) return FALSE
;
263 if (g_blockEventsOnDrag
) return FALSE
;
267 if (GTK_WIDGET_CAN_FOCUS(win
->m_wxwindow
) && !GTK_WIDGET_HAS_FOCUS (win
->m_wxwindow
) )
269 gtk_widget_grab_focus (win
->m_wxwindow
);
272 printf( "GrabFocus from " );
273 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
274 printf( win->GetClassInfo()->GetClassName() );
281 if (!win
->HasVMT()) return FALSE
;
284 printf( "OnButtonPress from " );
285 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
286 printf( win->GetClassInfo()->GetClassName() );
290 wxEventType event_type
= wxEVT_LEFT_DOWN
;
292 if (gdk_event
->button
== 1)
294 switch (gdk_event
->type
)
296 case GDK_BUTTON_PRESS
: event_type
= wxEVT_LEFT_DOWN
; break;
297 case GDK_2BUTTON_PRESS
: event_type
= wxEVT_LEFT_DCLICK
; break;
301 else if (gdk_event
->button
== 2)
303 switch (gdk_event
->type
)
305 case GDK_BUTTON_PRESS
: event_type
= wxEVT_MIDDLE_DOWN
; break;
306 case GDK_2BUTTON_PRESS
: event_type
= wxEVT_MIDDLE_DCLICK
; break;
310 else if (gdk_event
->button
== 3)
312 switch (gdk_event
->type
)
314 case GDK_BUTTON_PRESS
: event_type
= wxEVT_RIGHT_DOWN
; break;
315 case GDK_2BUTTON_PRESS
: event_type
= wxEVT_RIGHT_DCLICK
; break;
320 wxMouseEvent
event( event_type
);
321 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
);
322 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
);
323 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
);
324 event
.m_metaDown
= (gdk_event
->state
& GDK_MOD2_MASK
);
325 event
.m_leftDown
= (gdk_event
->state
& GDK_BUTTON1_MASK
);
326 event
.m_middleDown
= (gdk_event
->state
& GDK_BUTTON2_MASK
);
327 event
.m_rightDown
= (gdk_event
->state
& GDK_BUTTON3_MASK
);
329 event
.m_x
= (long)gdk_event
->x
;
330 event
.m_y
= (long)gdk_event
->y
;
331 event
.SetEventObject( win
);
333 win
->ProcessEvent( event
);
338 //-----------------------------------------------------------------------------
341 gint
gtk_window_button_release_callback( GtkWidget
*widget
, GdkEventButton
*gdk_event
, wxWindow
*win
)
343 if (widget
->window
!= gdk_event
->window
) return TRUE
;
345 if (g_blockEventsOnDrag
) return FALSE
;
347 if (!win
->HasVMT()) return FALSE
;
350 printf( "OnButtonRelease from " );
351 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
352 printf( win->GetClassInfo()->GetClassName() );
356 wxEventType event_type
= wxEVT_NULL
;
358 switch (gdk_event
->button
)
360 case 1: event_type
= wxEVT_LEFT_UP
; break;
361 case 2: event_type
= wxEVT_MIDDLE_UP
; break;
362 case 3: event_type
= wxEVT_RIGHT_UP
; break;
365 wxMouseEvent
event( event_type
);
366 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
);
367 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
);
368 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
);
369 event
.m_metaDown
= (gdk_event
->state
& GDK_MOD2_MASK
);
370 event
.m_leftDown
= (gdk_event
->state
& GDK_BUTTON1_MASK
);
371 event
.m_middleDown
= (gdk_event
->state
& GDK_BUTTON2_MASK
);
372 event
.m_rightDown
= (gdk_event
->state
& GDK_BUTTON3_MASK
);
373 event
.m_x
= (long)gdk_event
->x
;
374 event
.m_y
= (long)gdk_event
->y
;
375 event
.SetEventObject( win
);
377 return win
->ProcessEvent( event
);
380 //-----------------------------------------------------------------------------
383 gint
gtk_window_motion_notify_callback( GtkWidget
*widget
, GdkEventMotion
*gdk_event
, wxWindow
*win
)
385 if (widget
->window
!= gdk_event
->window
) return TRUE
;
387 if (g_blockEventsOnDrag
) return FALSE
;
389 if (!win
->HasVMT()) return FALSE
;
392 printf( "OnMotion from " );
393 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
394 printf( win->GetClassInfo()->GetClassName() );
398 wxMouseEvent
event( wxEVT_MOTION
);
399 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
);
400 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
);
401 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
);
402 event
.m_metaDown
= (gdk_event
->state
& GDK_MOD2_MASK
);
403 event
.m_leftDown
= (gdk_event
->state
& GDK_BUTTON1_MASK
);
404 event
.m_middleDown
= (gdk_event
->state
& GDK_BUTTON2_MASK
);
405 event
.m_rightDown
= (gdk_event
->state
& GDK_BUTTON3_MASK
);
407 event
.m_x
= (long)gdk_event
->x
;
408 event
.m_y
= (long)gdk_event
->y
;
409 event
.SetEventObject( win
);
411 win
->ProcessEvent( event
);
416 //-----------------------------------------------------------------------------
419 gint
gtk_window_focus_in_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxWindow
*win
)
421 if (g_blockEventsOnDrag
) return FALSE
;
424 if (GTK_WIDGET_CAN_FOCUS(win
->m_wxwindow
))
426 GTK_WIDGET_SET_FLAGS (win
->m_wxwindow
, GTK_HAS_FOCUS
);
428 printf( "SetFocus flag from " );
429 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
430 printf( win->GetClassInfo()->GetClassName() );
436 if (!win
->HasVMT()) return FALSE
;
439 printf( "OnSetFocus from " );
440 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
441 printf( win->GetClassInfo()->GetClassName() );
443 printf( WXSTRINGCAST win->GetLabel() );
447 wxFocusEvent
event( wxEVT_SET_FOCUS
, win
->GetId() );
448 event
.SetEventObject( win
);
449 return win
->ProcessEvent( event
);
452 //-----------------------------------------------------------------------------
455 gint
gtk_window_focus_out_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxWindow
*win
)
457 if (g_blockEventsOnDrag
) return FALSE
;
460 if (GTK_WIDGET_CAN_FOCUS(win
->m_wxwindow
))
461 GTK_WIDGET_UNSET_FLAGS (win
->m_wxwindow
, GTK_HAS_FOCUS
);
464 if (!win
->HasVMT()) return FALSE
;
467 printf( "OnKillFocus from " );
468 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
469 printf( win->GetClassInfo()->GetClassName() );
473 wxFocusEvent
event( wxEVT_KILL_FOCUS
, win
->GetId() );
474 event
.SetEventObject( win
);
475 return win
->ProcessEvent( event
);
478 //-----------------------------------------------------------------------------
481 void gtk_window_vscroll_callback( GtkWidget
*WXUNUSED(widget
), wxWindow
*win
)
483 if (g_blockEventsOnDrag
) return;
486 printf( "OnVScroll from " );
487 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
488 printf( win->GetClassInfo()->GetClassName() );
492 if (!win
->HasVMT()) return;
494 float diff
= win
->m_vAdjust
->value
- win
->m_oldVerticalPos
;
495 if (fabs(diff
) < 0.2) return;
498 int i = (int)(win->m_oldVerticalPos+0.5);
499 printf( "Old value: %d.\n", i );
500 i = (int)(win->m_vAdjust->value+0.5);
501 printf( "Sending new value: %d.\n", i );
504 wxEventType command
= wxEVT_NULL
;
506 float line_step
= win
->m_vAdjust
->step_increment
;
507 float page_step
= win
->m_vAdjust
->page_increment
;
509 if (fabs(diff
-line_step
) < 0.2) command
= wxEVT_SCROLL_LINEDOWN
;
510 else if (fabs(diff
+line_step
) < 0.2) command
= wxEVT_SCROLL_LINEUP
;
511 else if (fabs(diff
-page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEDOWN
;
512 else if (fabs(diff
+page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEUP
;
513 else command
= wxEVT_SCROLL_THUMBTRACK
;
515 int value
= (int)(win
->m_vAdjust
->value
+0.5);
517 wxScrollEvent
event( command
, win
->GetId(), value
, wxVERTICAL
);
518 event
.SetEventObject( win
);
519 win
->ProcessEvent( event
);
522 //-----------------------------------------------------------------------------
525 void gtk_window_hscroll_callback( GtkWidget
*WXUNUSED(widget
), wxWindow
*win
)
527 if (g_blockEventsOnDrag
) return;
530 printf( "OnHScroll from " );
531 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
532 printf( win->GetClassInfo()->GetClassName() );
536 if (!win
->HasVMT()) return;
538 float diff
= win
->m_hAdjust
->value
- win
->m_oldHorizontalPos
;
539 if (fabs(diff
) < 0.2) return;
542 int i = (int)(win->m_oldHorizontalPos+0.5);
543 printf( "Old value: %d.\n", i );
544 i = (int)(win->m_hAdjust->value+0.5);
545 printf( "Sending new value: %d.\n", i );
548 wxEventType command
= wxEVT_NULL
;
550 float line_step
= win
->m_hAdjust
->step_increment
;
551 float page_step
= win
->m_hAdjust
->page_increment
;
553 if (fabs(diff
-line_step
) < 0.2) command
= wxEVT_SCROLL_LINEDOWN
;
554 else if (fabs(diff
+line_step
) < 0.2) command
= wxEVT_SCROLL_LINEUP
;
555 else if (fabs(diff
-page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEDOWN
;
556 else if (fabs(diff
+page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEUP
;
557 else command
= wxEVT_SCROLL_THUMBTRACK
;
559 int value
= (int)(win
->m_hAdjust
->value
+0.5);
561 wxScrollEvent
event( command
, win
->GetId(), value
, wxHORIZONTAL
);
562 event
.SetEventObject( win
);
563 win
->ProcessEvent( event
);
566 //-----------------------------------------------------------------------------
567 // vertical scroll change
569 void gtk_window_vscroll_change_callback( GtkWidget
*WXUNUSED(widget
), wxWindow
*win
)
571 if (g_blockEventsOnDrag
) return;
574 printf( "OnVScroll change from " );
575 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
576 printf( win->GetClassInfo()->GetClassName() );
580 if (!win
->HasVMT()) return;
582 wxEventType command
= wxEVT_SCROLL_THUMBTRACK
;
583 int value
= (int)(win
->m_vAdjust
->value
+0.5);
585 wxScrollEvent
event( command
, win
->GetId(), value
, wxVERTICAL
);
586 event
.SetEventObject( win
);
587 win
->ProcessEvent( event
);
590 //-----------------------------------------------------------------------------
591 // horizontal scroll change
593 void gtk_window_hscroll_change_callback( GtkWidget
*WXUNUSED(widget
), wxWindow
*win
)
595 if (g_blockEventsOnDrag
) return;
598 printf( "OnHScroll change from " );
599 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
600 printf( win->GetClassInfo()->GetClassName() );
604 if (!win
->HasVMT()) return;
606 wxEventType command
= wxEVT_SCROLL_THUMBTRACK
;
607 int value
= (int)(win
->m_hAdjust
->value
+0.5);
609 wxScrollEvent
event( command
, win
->GetId(), value
, wxHORIZONTAL
);
610 event
.SetEventObject( win
);
611 win
->ProcessEvent( event
);
614 //-----------------------------------------------------------------------------
617 void gtk_window_drop_callback( GtkWidget
*widget
, GdkEvent
*event
, wxWindow
*win
)
619 printf( "OnDrop.\n" );
621 if (win
->GetDropTarget())
625 gdk_window_get_pointer( widget
->window
, &x
, &y
, NULL
);
626 win
->GetDropTarget()->Drop( event
, x
, y
);
630 g_free (event->dropdataavailable.data);
631 g_free (event->dropdataavailable.data_type);
635 //-----------------------------------------------------------------------------
638 bool gtk_window_destroy_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxWindow
*win
)
640 printf( "OnDestroy from " );
641 if (win
->GetClassInfo() && win
->GetClassInfo()->GetClassName())
642 printf( win
->GetClassInfo()->GetClassName() );
644 printf( "Goodbye.\n" );
645 printf( " Robert Roebling.\n" );
650 //-----------------------------------------------------------------------------
653 bool gtk_window_enter_callback( GtkWidget
*widget
, GdkEventCrossing
*gdk_event
, wxWindow
*win
)
655 if (widget
->window
!= gdk_event
->window
) return TRUE
;
657 if (g_blockEventsOnDrag
) return FALSE
;
660 gdk_window_set_cursor( widget
->window
, win
->m_cursor
->GetCursor() );
662 wxMouseEvent
event( wxEVT_ENTER_WINDOW
);
663 event
.SetEventObject( win
);
664 return win
->ProcessEvent( event
);
667 //-----------------------------------------------------------------------------
670 bool gtk_window_leave_callback( GtkWidget
*widget
, GdkEventCrossing
*gdk_event
, wxWindow
*win
)
672 if (widget
->window
!= gdk_event
->window
) return TRUE
;
674 if (g_blockEventsOnDrag
) return FALSE
;
677 gdk_window_set_cursor( widget
->window
, wxSTANDARD_CURSOR
->GetCursor() );
679 wxMouseEvent
event( wxEVT_LEAVE_WINDOW
);
680 event
.SetEventObject( win
);
681 return win
->ProcessEvent( event
);
684 //-----------------------------------------------------------------------------
685 // wxWindow implementation
686 //-----------------------------------------------------------------------------
688 IMPLEMENT_DYNAMIC_CLASS(wxWindow
,wxEvtHandler
)
690 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
691 EVT_SIZE(wxWindow::OnSize
)
692 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
693 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
694 EVT_IDLE(wxWindow::OnIdle
)
702 m_children
.DeleteContents( FALSE
);
708 m_eventHandler
= this;
709 m_windowValidator
= NULL
;
711 m_cursor
= new wxCursor( wxCURSOR_ARROW
);
712 m_font
= *wxSWISS_FONT
;
714 m_windowName
= "noname";
715 m_constraints
= NULL
;
716 m_constraintsInvolvedIn
= NULL
;
717 m_windowSizer
= NULL
;
718 m_sizerParent
= NULL
;
719 m_autoLayout
= FALSE
;
723 m_hasScrolling
= FALSE
;
726 m_oldHorizontalPos
= 0.0;
727 m_oldVerticalPos
= 0.0;
730 m_drawingOffsetX
= 0;
731 m_drawingOffsetY
= 0;
732 m_pDropTarget
= NULL
;
736 wxWindow::wxWindow( wxWindow
*parent
, wxWindowID id
,
737 const wxPoint
&pos
, const wxSize
&size
,
738 long style
, const wxString
&name
)
740 Create( parent
, id
, pos
, size
, style
, name
);
743 bool wxWindow::Create( wxWindow
*parent
, wxWindowID id
,
744 const wxPoint
&pos
, const wxSize
&size
,
745 long style
, const wxString
&name
)
751 PreCreation( parent
, id
, pos
, size
, style
, name
);
753 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
754 m_hasScrolling
= TRUE
;
756 GtkScrolledWindow
*s_window
;
757 s_window
= GTK_SCROLLED_WINDOW(m_widget
);
759 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT(m_widget
)->klass
);
760 scroll_class
->scrollbar_spacing
= 0;
762 gtk_scrolled_window_set_policy( s_window
, GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
764 m_oldHorizontalPos
= 0.0;
765 m_oldVerticalPos
= 0.0;
767 m_hAdjust
= gtk_range_get_adjustment( GTK_RANGE(s_window
->hscrollbar
) );
768 m_vAdjust
= gtk_range_get_adjustment( GTK_RANGE(s_window
->vscrollbar
) );
770 gtk_signal_connect (GTK_OBJECT (m_hAdjust
), "value_changed",
771 (GtkSignalFunc
) gtk_window_hscroll_callback
, (gpointer
) this );
772 gtk_signal_connect (GTK_OBJECT (m_vAdjust
), "value_changed",
773 (GtkSignalFunc
) gtk_window_vscroll_callback
, (gpointer
) this );
775 gtk_signal_connect (GTK_OBJECT (m_hAdjust
), "changed",
776 (GtkSignalFunc
) gtk_window_hscroll_change_callback
, (gpointer
) this );
777 gtk_signal_connect (GTK_OBJECT (m_vAdjust
), "changed",
778 (GtkSignalFunc
) gtk_window_vscroll_change_callback
, (gpointer
) this );
780 GtkViewport
*viewport
;
781 viewport
= GTK_VIEWPORT(s_window
->viewport
);
783 if (m_windowStyle
& wxRAISED_BORDER
)
785 gtk_viewport_set_shadow_type( viewport
, GTK_SHADOW_OUT
);
787 else if (m_windowStyle
& wxSUNKEN_BORDER
)
789 gtk_viewport_set_shadow_type( viewport
, GTK_SHADOW_IN
);
793 gtk_viewport_set_shadow_type( viewport
, GTK_SHADOW_NONE
);
796 m_wxwindow
= gtk_myfixed_new();
798 if (m_windowStyle
& wxTAB_TRAVERSAL
== wxTAB_TRAVERSAL
)
799 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
801 GTK_WIDGET_SET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
803 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
805 // shut the viewport up
806 gtk_viewport_set_hadjustment( viewport
, (GtkAdjustment
*) gtk_adjustment_new( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0) );
807 gtk_viewport_set_vadjustment( viewport
, (GtkAdjustment
*) gtk_adjustment_new( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0) );
809 // I _really_ don't want scrollbars in the beginning
810 m_vAdjust
->lower
= 0.0;
811 m_vAdjust
->upper
= 1.0;
812 m_vAdjust
->value
= 0.0;
813 m_vAdjust
->step_increment
= 1.0;
814 m_vAdjust
->page_increment
= 1.0;
815 m_vAdjust
->page_size
= 5.0;
816 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "changed" );
817 m_hAdjust
->lower
= 0.0;
818 m_hAdjust
->upper
= 1.0;
819 m_hAdjust
->value
= 0.0;
820 m_hAdjust
->step_increment
= 1.0;
821 m_hAdjust
->page_increment
= 1.0;
822 m_hAdjust
->page_size
= 5.0;
823 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "changed" );
825 gtk_widget_show( m_wxwindow
);
834 wxWindow::~wxWindow(void)
838 if (m_pDropTarget
) delete m_pDropTarget
;
840 if (m_parent
) m_parent
->RemoveChild( this );
841 if (m_widget
) Show( FALSE
);
845 if (m_wxwindow
) gtk_widget_destroy( m_wxwindow
);
847 if (m_widget
) gtk_widget_destroy( m_widget
);
851 DeleteRelatedConstraints();
854 // This removes any dangling pointers to this window
855 // in other windows' constraintsInvolvedIn lists.
856 UnsetConstraints(m_constraints
);
857 delete m_constraints
;
858 m_constraints
= NULL
;
862 delete m_windowSizer
;
863 m_windowSizer
= NULL
;
865 // If this is a child of a sizer, remove self from parent
867 m_sizerParent
->RemoveChild((wxWindow
*)this);
869 // Just in case the window has been Closed, but
870 // we're then deleting immediately: don't leave
871 // dangling pointers.
872 wxPendingDelete
.DeleteObject(this);
874 // Just in case we've loaded a top-level window via
875 // wxWindow::LoadNativeDialog but we weren't a dialog
877 wxTopLevelWindows
.DeleteObject(this);
881 void wxWindow::PreCreation( wxWindow
*parent
, wxWindowID id
,
882 const wxPoint
&pos
, const wxSize
&size
,
883 long style
, const wxString
&name
)
885 if (m_needParent
&& (parent
== NULL
))
886 wxFatalError( "Need complete parent.", name
);
891 m_children
.DeleteContents( FALSE
);
895 if (m_width
== -1) m_width
= 20;
897 if (m_height
== -1) m_height
= 20;
899 m_eventHandler
= this;
900 m_windowValidator
= NULL
;
903 m_cursor
= new wxCursor( wxCURSOR_ARROW
);
904 m_font
= *wxSWISS_FONT
;
905 m_backgroundColour
= wxWHITE
;
906 m_foregroundColour
= wxBLACK
;
907 m_windowStyle
= style
;
909 m_constraints
= NULL
;
910 m_constraintsInvolvedIn
= NULL
;
911 m_windowSizer
= NULL
;
912 m_sizerParent
= NULL
;
913 m_autoLayout
= FALSE
;
914 m_drawingOffsetX
= 0;
915 m_drawingOffsetY
= 0;
916 m_pDropTarget
= NULL
;
920 void wxWindow::PostCreation(void)
922 if (m_parent
) m_parent
->AddChild( this );
924 // GtkStyle *style = m_widget->style;
925 // style->font = m_font.GetInternalFont( 1.0 ); // destroy old font ?
927 GtkWidget
*connect_widget
= m_widget
;
928 if (m_wxwindow
) connect_widget
= m_wxwindow
;
930 gtk_object_set_data (GTK_OBJECT (connect_widget
), "MyWxWindow", (gpointer
)this );
934 gtk_signal_connect( GTK_OBJECT(m_wxwindow
), "expose_event",
935 GTK_SIGNAL_FUNC(gtk_window_expose_callback
), (gpointer
)this );
937 gtk_signal_connect( GTK_OBJECT(m_wxwindow
), "draw",
938 GTK_SIGNAL_FUNC(gtk_window_draw_callback
), (gpointer
)this );
942 gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate",
943 GTK_SIGNAL_FUNC(gtk_window_size_callback), (gpointer)this );
946 gtk_signal_connect( GTK_OBJECT(connect_widget
), "key_press_event",
947 GTK_SIGNAL_FUNC(gtk_window_key_press_callback
), (gpointer
)this );
949 gtk_signal_connect( GTK_OBJECT(connect_widget
), "button_press_event",
950 GTK_SIGNAL_FUNC(gtk_window_button_press_callback
), (gpointer
)this );
952 gtk_signal_connect( GTK_OBJECT(connect_widget
), "button_release_event",
953 GTK_SIGNAL_FUNC(gtk_window_button_release_callback
), (gpointer
)this );
955 gtk_signal_connect( GTK_OBJECT(connect_widget
), "motion_notify_event",
956 GTK_SIGNAL_FUNC(gtk_window_motion_notify_callback
), (gpointer
)this );
958 gtk_signal_connect( GTK_OBJECT(connect_widget
), "focus_in_event",
959 GTK_SIGNAL_FUNC(gtk_window_focus_in_callback
), (gpointer
)this );
961 gtk_signal_connect( GTK_OBJECT(connect_widget
), "focus_out_event",
962 GTK_SIGNAL_FUNC(gtk_window_focus_out_callback
), (gpointer
)this );
964 gtk_signal_connect( GTK_OBJECT(connect_widget
), "drop_data_available_event",
965 GTK_SIGNAL_FUNC(gtk_window_drop_callback
), (gpointer
)this );
967 // Only for cursor handling
969 gtk_signal_connect( GTK_OBJECT(m_widget
), "enter_notify_event",
970 GTK_SIGNAL_FUNC(gtk_window_enter_callback
), (gpointer
)this );
972 gtk_signal_connect( GTK_OBJECT(m_widget
), "leave_notify_event",
973 GTK_SIGNAL_FUNC(gtk_window_leave_callback
), (gpointer
)this );
977 gtk_signal_connect( GTK_OBJECT(m_wxwindow
), "enter_notify_event",
978 GTK_SIGNAL_FUNC(gtk_window_enter_callback
), (gpointer
)this );
980 gtk_signal_connect( GTK_OBJECT(m_wxwindow
), "leave_notify_event",
981 GTK_SIGNAL_FUNC(gtk_window_leave_callback
), (gpointer
)this );
985 // Does destroy ever get called ?
987 gtk_signal_connect( GTK_OBJECT(m_widget), "destroy_event",
988 GTK_SIGNAL_FUNC(gtk_window_destroy_callback), (gpointer)this );
992 gtk_signal_connect( GTK_OBJECT(m_wxwindow), "destroy_event",
993 GTK_SIGNAL_FUNC(gtk_window_destroy_callback), (gpointer)this );
997 if (m_widget
&& m_parent
) gtk_widget_realize( m_widget
);
998 if (m_wxwindow
) gtk_widget_realize( m_wxwindow
);
1000 SetCursor( wxSTANDARD_CURSOR
);
1005 bool wxWindow::HasVMT(void)
1010 bool wxWindow::Close( bool force
)
1012 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
1013 event
.SetEventObject(this);
1014 event
.SetForce(force
);
1016 return GetEventHandler()->ProcessEvent(event
);
1019 bool wxWindow::Destroy(void)
1026 bool wxWindow::DestroyChildren(void)
1031 while ((node
= GetChildren()->First()) != (wxNode
*)NULL
)
1034 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
)
1037 if (GetChildren()->Member(child
)) delete node
;
1044 void wxWindow::PrepareDC( wxDC
&WXUNUSED(dc
) )
1046 // are we to set fonts here ?
1049 void wxWindow::ImplementSetSize(void)
1051 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
1054 void wxWindow::ImplementSetPosition(void)
1058 if (IsKindOf(CLASSINFO(wxFrame
)) ||
1059 IsKindOf(CLASSINFO(wxDialog
)))
1061 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
1065 printf( "wxWindow::SetSize error.\n" );
1070 if ((m_parent
) && (m_parent
->m_wxwindow
))
1071 gtk_myfixed_move( GTK_MYFIXED(m_parent
->m_wxwindow
), m_widget
, m_x
, m_y
);
1073 // Don't do anything for children of wxNotebook and wxMDIChildFrame
1076 void wxWindow::SetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
1078 if (m_resizing
) return; // I don't like recursions
1086 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
1088 if (newX
== -1) newX
= m_x
;
1089 if (newY
== -1) newY
= m_y
;
1090 if (newW
== -1) newW
= m_width
;
1091 if (newH
== -1) newH
= m_height
;
1094 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
1096 if (newW
== -1) newW
= 80;
1099 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
1101 if (newH
== -1) newH
= 26;
1104 if ((m_x
!= newX
) || (m_y
!= newY
) || (!m_sizeSet
))
1108 ImplementSetPosition();
1110 if ((m_width
!= newW
) || (m_height
!= newH
) || (!m_sizeSet
))
1118 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
1119 event
.SetEventObject( this );
1120 ProcessEvent( event
);
1125 void wxWindow::SetSize( int width
, int height
)
1127 SetSize( -1, -1, width
, height
, wxSIZE_USE_EXISTING
);
1130 void wxWindow::Move( int x
, int y
)
1132 SetSize( x
, y
, -1, -1, wxSIZE_USE_EXISTING
);
1135 void wxWindow::GetSize( int *width
, int *height
) const
1137 if (width
) (*width
) = m_width
;
1138 if (height
) (*height
) = m_height
;
1141 void wxWindow::SetClientSize( int width
, int height
)
1145 SetSize( width
, height
);
1152 if (!m_hasScrolling
)
1155 do we have sunken dialogs ?
1157 GtkStyleClass *window_class = m_wxwindow->style->klass;
1159 dw += 2 * window_class->xthickness;
1160 dh += 2 * window_class->ythickness;
1165 GtkScrolledWindow
*scroll_window
= GTK_SCROLLED_WINDOW(m_widget
);
1166 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT(m_widget
)->klass
);
1168 GtkWidget
*viewport
= scroll_window
->viewport
;
1169 GtkStyleClass
*viewport_class
= viewport
->style
->klass
;
1171 GtkWidget
*hscrollbar
= scroll_window
->hscrollbar
;
1172 GtkWidget
*vscrollbar
= scroll_window
->vscrollbar
;
1174 if ((m_windowStyle
& wxRAISED_BORDER
) ||
1175 (m_windowStyle
& wxSUNKEN_BORDER
)
1178 dw
+= 2 * viewport_class
->xthickness
;
1179 dh
+= 2 * viewport_class
->ythickness
;
1182 if (GTK_WIDGET_VISIBLE(vscrollbar
))
1184 dw
+= vscrollbar
->allocation
.width
;
1185 dw
+= scroll_class
->scrollbar_spacing
;
1188 if (GTK_WIDGET_VISIBLE(hscrollbar
))
1190 dh
+= hscrollbar
->allocation
.height
;
1191 dw
+= scroll_class
->scrollbar_spacing
;
1195 SetSize( width
+dw
, height
+dh
);
1199 void wxWindow::GetClientSize( int *width
, int *height
) const
1203 if (width
) (*width
) = m_width
;
1204 if (height
) (*height
) = m_height
;
1211 if (!m_hasScrolling
)
1214 do we have sunken dialogs ?
1216 GtkStyleClass *window_class = m_wxwindow->style->klass;
1218 dw += 2 * window_class->xthickness;
1219 dh += 2 * window_class->ythickness;
1224 GtkScrolledWindow
*scroll_window
= GTK_SCROLLED_WINDOW(m_widget
);
1225 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT(m_widget
)->klass
);
1227 GtkWidget
*viewport
= scroll_window
->viewport
;
1228 GtkStyleClass
*viewport_class
= viewport
->style
->klass
;
1230 GtkWidget
*hscrollbar
= scroll_window
->hscrollbar
;
1231 GtkWidget
*vscrollbar
= scroll_window
->vscrollbar
;
1233 if ((m_windowStyle
& wxRAISED_BORDER
) ||
1234 (m_windowStyle
& wxSUNKEN_BORDER
)
1237 dw
+= 2 * viewport_class
->xthickness
;
1238 dh
+= 2 * viewport_class
->ythickness
;
1241 if (GTK_WIDGET_VISIBLE(vscrollbar
))
1243 // dw += vscrollbar->allocation.width;
1244 dw
+= 15; // range.slider_width = 11 + 2*2pts edge
1245 dw
+= scroll_class
->scrollbar_spacing
;
1248 if (GTK_WIDGET_VISIBLE(hscrollbar
))
1250 // dh += hscrollbar->allocation.height;
1252 dh
+= scroll_class
->scrollbar_spacing
;
1256 if (width
) (*width
) = m_width
- dw
;
1257 if (height
) (*height
) = m_height
- dh
;
1261 void wxWindow::GetPosition( int *x
, int *y
) const
1267 void wxWindow::ClientToScreen( int *x
, int *y
)
1269 // Does this look simple ?
1271 GdkWindow
*source
= NULL
;
1273 source
= m_wxwindow
->window
;
1275 source
= m_widget
->window
;
1279 gdk_window_get_origin( source
, &org_x
, &org_y
);
1283 if (GTK_WIDGET_NO_WINDOW (m_widget
))
1285 org_x
+= m_widget
->allocation
.x
;
1286 org_y
+= m_widget
->allocation
.y
;
1294 void wxWindow::ScreenToClient( int *x
, int *y
)
1296 GdkWindow
*source
= NULL
;
1298 source
= m_wxwindow
->window
;
1300 source
= m_widget
->window
;
1304 gdk_window_get_origin( source
, &org_x
, &org_y
);
1308 if (GTK_WIDGET_NO_WINDOW (m_widget
))
1310 org_x
+= m_widget
->allocation
.x
;
1311 org_y
+= m_widget
->allocation
.y
;
1319 void wxWindow::Centre( int direction
)
1323 GetPosition( &x
, &y
);
1324 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
1326 if (direction
& wxHORIZONTAL
== wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
1327 if (direction
& wxVERTICAL
== wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
1328 gtk_widget_set_uposition( m_widget
, x
, y
);
1336 m_parent
->GetSize( &p_w
, &p_h
);
1337 if (direction
& wxHORIZONTAL
== wxHORIZONTAL
) x
= (p_w
- m_width
) / 2;
1338 if (direction
& wxVERTICAL
== wxVERTICAL
) y
= (p_h
- m_height
) / 2;
1339 gtk_widget_set_uposition( m_widget
, x
, y
);
1344 void wxWindow::Fit(void)
1348 wxNode
*node
= GetChildren()->First();
1351 wxWindow
*win
= (wxWindow
*)node
->Data();
1353 win
->GetPosition(&wx
, &wy
);
1354 win
->GetSize(&ww
, &wh
);
1355 if ( wx
+ ww
> maxX
)
1357 if ( wy
+ wh
> maxY
)
1360 node
= node
->Next();
1362 SetClientSize(maxX
+ 5, maxY
+ 5);
1365 void wxWindow::OnSize( wxSizeEvent
&WXUNUSED(event
) )
1367 //if (GetAutoLayout()) Layout();
1370 bool wxWindow::Show( bool show
)
1373 gtk_widget_show( m_widget
);
1375 gtk_widget_hide( m_widget
);
1380 void wxWindow::Enable( bool enable
)
1382 m_isEnabled
= enable
;
1383 gtk_widget_set_sensitive( m_widget
, enable
);
1384 if (m_wxwindow
) gtk_widget_set_sensitive( m_wxwindow
, enable
);
1387 void wxWindow::MakeModal( bool modal
)
1390 // Disable all other windows
1391 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
1393 wxNode
*node
= wxTopLevelWindows
.First();
1396 wxWindow
*win
= (wxWindow
*)node
->Data();
1398 win
->Enable(!modal
);
1400 node
= node
->Next();
1405 void wxWindow::SetFocus(void)
1407 GtkWidget
*connect_widget
= m_widget
;
1408 if (m_wxwindow
) connect_widget
= m_wxwindow
;
1411 if (GTK_WIDGET_CAN_FOCUS(connect_widget
) && !GTK_WIDGET_HAS_FOCUS (connect_widget
) )
1413 gtk_widget_grab_focus (connect_widget
);
1418 bool wxWindow::OnClose(void)
1423 void wxWindow::AddChild( wxWindow
*child
)
1425 // Addchild is (often) called before the program
1426 // has left the parents constructor so that no
1427 // virtual tables work yet. The approach below
1428 // practically imitates virtual tables, i.e. it
1429 // implements a different AddChild() behaviour
1430 // for wxFrame, wxDialog, wxWindow and
1431 // wxMDIParentFrame.
1433 // wxFrame and wxDialog as children aren't placed into the parents
1435 if (child
->IsKindOf(CLASSINFO(wxFrame
)) || child
->IsKindOf(CLASSINFO(wxDialog
)))
1437 m_children
.Append( child
);
1439 if ((child
->m_x
!= -1) && (child
->m_y
!= -1))
1440 gtk_widget_set_uposition( child
->m_widget
, child
->m_x
, child
->m_y
);
1445 // In the case of an wxMDIChildFrame descendant, we use the
1446 // client windows's AddChild()
1448 if (IsKindOf(CLASSINFO(wxMDIParentFrame
)))
1450 if (child
->IsKindOf(CLASSINFO(wxMDIChildFrame
)))
1452 wxMDIClientWindow
*client
= ((wxMDIParentFrame
*)this)->GetClientWindow();
1455 client
->AddChild( child
);
1461 // wxNotebook is very special, so it has a private AddChild()
1463 if (IsKindOf(CLASSINFO(wxNotebook
)))
1465 wxNotebook
*tab
= (wxNotebook
*)this;
1466 tab
->AddChild( child
);
1470 // wxFrame has a private AddChild
1472 if (IsKindOf(CLASSINFO(wxFrame
)))
1474 wxFrame
*frame
= (wxFrame
*)this;
1475 frame
->AddChild( child
);
1481 m_children
.Append( child
);
1482 if (m_wxwindow
) gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
), child
->m_widget
, child
->m_x
, child
->m_y
);
1483 gtk_widget_set_usize( child
->m_widget
, child
->m_width
, child
->m_height
);
1486 wxList
*wxWindow::GetChildren(void)
1488 return (&m_children
);
1491 void wxWindow::RemoveChild( wxWindow
*child
)
1494 GetChildren()->DeleteObject( child
);
1495 child
->m_parent
= NULL
;
1498 void wxWindow::SetReturnCode( int retCode
)
1500 m_retCode
= retCode
;
1503 int wxWindow::GetReturnCode(void)
1508 wxWindow
*wxWindow::GetParent(void)
1513 wxEvtHandler
*wxWindow::GetEventHandler(void)
1515 return m_eventHandler
;
1518 void wxWindow::SetEventhandler( wxEvtHandler
*handler
)
1520 m_eventHandler
= handler
;
1523 wxValidator
*wxWindow::GetValidator(void)
1525 return m_windowValidator
;
1528 void wxWindow::SetValidator( wxValidator
*validator
)
1530 m_windowValidator
= validator
;
1533 bool wxWindow::IsBeingDeleted(void)
1538 void wxWindow::SetId( wxWindowID id
)
1543 wxWindowID
wxWindow::GetId(void)
1548 void wxWindow::SetCursor( const wxCursor
&cursor
)
1550 if (*m_cursor
== cursor
) return;
1551 (*m_cursor
) = cursor
;
1552 if (m_widget
->window
)
1553 gdk_window_set_cursor( m_widget
->window
, m_cursor
->GetCursor() );
1554 if (m_wxwindow
&& m_wxwindow
->window
)
1555 gdk_window_set_cursor( m_wxwindow
->window
, m_cursor
->GetCursor() );
1558 void wxWindow::Refresh( bool eraseBackground
, const wxRect
*rect
)
1560 if (eraseBackground
&& m_wxwindow
&& m_wxwindow
->window
)
1563 gdk_window_clear_area( m_wxwindow
->window
,
1575 wxClientDC
dc(this);
1579 dc
.GetInternalDeviceOrigin( &x
, &y
);
1583 GetClientSize( &w
, &h
);
1585 GdkRectangle gdk_rect
;
1589 gdk_rect
.height
= h
;
1590 gtk_widget_draw( m_wxwindow
, &gdk_rect
);
1595 GdkRectangle gdk_rect
;
1596 gdk_rect
.x
= rect
->x
;
1597 gdk_rect
.y
= rect
->y
;
1598 gdk_rect
.width
= rect
->width
;
1599 gdk_rect
.height
= rect
->height
;
1601 gtk_widget_draw( m_wxwindow
, &gdk_rect
);
1603 gtk_widget_draw( m_widget
, &gdk_rect
);
1607 bool wxWindow::IsExposed( long x
, long y
)
1609 return (m_updateRegion
.Contains( x
, y
) != wxOutRegion
);
1612 bool wxWindow::IsExposed( long x
, long y
, long width
, long height
)
1614 return (m_updateRegion
.Contains( x
, y
, width
, height
) != wxOutRegion
);
1617 void wxWindow::Clear(void)
1619 if (m_wxwindow
&& m_wxwindow
->window
) gdk_window_clear( m_wxwindow
->window
);
1622 wxColour
wxWindow::GetBackgroundColour(void) const
1624 return m_backgroundColour
;
1627 void wxWindow::SetBackgroundColour( const wxColour
&colour
)
1629 m_backgroundColour
= colour
;
1632 m_backgroundColour
.CalcPixel( m_wxwindow
->style
->colormap
);
1633 gdk_window_set_background( m_wxwindow
->window
, m_backgroundColour
.GetColor() );
1634 gdk_window_clear( m_wxwindow
->window
);
1639 bool wxWindow::Validate(void)
1641 wxNode
*node
= GetChildren()->First();
1644 wxWindow
*child
= (wxWindow
*)node
->Data();
1645 if (child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this))
1647 node
= node
->Next();
1652 bool wxWindow::TransferDataToWindow(void)
1654 wxNode
*node
= GetChildren()->First();
1657 wxWindow
*child
= (wxWindow
*)node
->Data();
1658 if (child
->GetValidator() && /* child->GetValidator()->Ok() && */
1659 !child
->GetValidator()->TransferToWindow() )
1661 wxMessageBox( "Application Error", "Could not transfer data to window", wxOK
|wxICON_EXCLAMATION
);
1664 node
= node
->Next();
1669 bool wxWindow::TransferDataFromWindow(void)
1671 wxNode
*node
= GetChildren()->First();
1674 wxWindow
*child
= (wxWindow
*)node
->Data();
1675 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->TransferFromWindow() )
1677 node
= node
->Next();
1682 void wxWindow::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1684 TransferDataToWindow();
1687 void wxWindow::InitDialog(void)
1689 wxInitDialogEvent
event(GetId());
1690 event
.SetEventObject( this );
1691 GetEventHandler()->ProcessEvent(event
);
1694 void wxWindow::SetDropTarget( wxDropTarget
*dropTarget
)
1696 GtkWidget
*connect_widget
= m_widget
;
1697 if (m_wxwindow
) connect_widget
= m_wxwindow
;
1700 m_pDropTarget
->UnregisterWidget( connect_widget
);
1701 delete m_pDropTarget
;
1703 m_pDropTarget
= dropTarget
;
1706 m_pDropTarget
->RegisterWidget( connect_widget
);
1710 wxDropTarget
*wxWindow::GetDropTarget() const
1712 return m_pDropTarget
;
1715 void wxWindow::SetFont( const wxFont
&font
)
1720 copy old style values to new one
1721 set font in new style
1722 -> takes to many resources
1724 GtkStyle *style = gtk_style_new();
1729 wxFont
*wxWindow::GetFont(void)
1734 void wxWindow::SetWindowStyleFlag( long flag
)
1736 m_windowStyle
= flag
;
1739 long wxWindow::GetWindowStyleFlag(void) const
1741 return m_windowStyle
;
1744 void wxWindow::CaptureMouse(void)
1746 GtkWidget
*connect_widget
= m_widget
;
1747 if (m_wxwindow
) connect_widget
= m_wxwindow
;
1748 gtk_grab_add( connect_widget
);
1749 gdk_pointer_grab ( connect_widget
->window
, FALSE
,
1751 (GDK_BUTTON_PRESS_MASK
|
1752 GDK_BUTTON_RELEASE_MASK
|
1753 GDK_POINTER_MOTION_MASK
),
1754 NULL
, NULL
, GDK_CURRENT_TIME
);
1757 void wxWindow::ReleaseMouse(void)
1759 GtkWidget
*connect_widget
= m_widget
;
1760 if (m_wxwindow
) connect_widget
= m_wxwindow
;
1761 gtk_grab_remove( connect_widget
);
1762 gdk_pointer_ungrab ( GDK_CURRENT_TIME
);
1765 void wxWindow::SetTitle( const wxString
&WXUNUSED(title
) )
1769 wxString
wxWindow::GetTitle(void) const
1771 return (wxString
&)m_windowName
;
1774 wxString
wxWindow::GetLabel(void) const
1779 void wxWindow::SetName( const wxString
&name
)
1781 m_windowName
= name
;
1784 wxString
wxWindow::GetName(void) const
1786 return (wxString
&)m_windowName
;
1789 bool wxWindow::IsShown(void) const
1794 bool wxWindow::IsRetained(void)
1799 wxWindow
*wxWindow::FindWindow( long id
)
1801 if (id
== m_windowId
) return this;
1802 wxNode
*node
= m_children
.First();
1805 wxWindow
*child
= (wxWindow
*)node
->Data();
1806 wxWindow
*res
= child
->FindWindow( id
);
1807 if (res
) return res
;
1808 node
= node
->Next();
1813 wxWindow
*wxWindow::FindWindow( const wxString
& name
)
1815 if (name
== m_windowName
) return this;
1816 wxNode
*node
= m_children
.First();
1819 wxWindow
*child
= (wxWindow
*)node
->Data();
1820 wxWindow
*res
= child
->FindWindow( name
);
1821 if (res
) return res
;
1822 node
= node
->Next();
1827 void wxWindow::SetScrollbar( int orient
, int pos
, int thumbVisible
,
1828 int range
, bool WXUNUSED(refresh
) )
1830 if (!m_wxwindow
) return;
1832 if (orient
== wxHORIZONTAL
)
1834 float fpos
= (float)pos
;
1835 m_oldHorizontalPos
= fpos
;
1836 float frange
= (float)range
;
1837 float fthumb
= (float)thumbVisible
;
1839 if ((fabs(fpos
-m_hAdjust
->value
) < 0.2) &&
1840 (fabs(frange
-m_hAdjust
->upper
) < 0.2) &&
1841 (fabs(fthumb
-m_hAdjust
->page_size
) < 0.2))
1844 m_hAdjust
->lower
= 0.0;
1845 m_hAdjust
->upper
= frange
;
1846 m_hAdjust
->value
= fpos
;
1847 m_hAdjust
->step_increment
= 1.0;
1848 m_hAdjust
->page_increment
= (float)(wxMax(fthumb
-2,0));
1849 m_hAdjust
->page_size
= fthumb
;
1853 float fpos
= (float)pos
;
1854 m_oldVerticalPos
= fpos
;
1855 float frange
= (float)range
;
1856 float fthumb
= (float)thumbVisible
;
1858 if ((fabs(fpos
-m_vAdjust
->value
) < 0.2) &&
1859 (fabs(frange
-m_vAdjust
->upper
) < 0.2) &&
1860 (fabs(fthumb
-m_vAdjust
->page_size
) < 0.2))
1863 m_vAdjust
->lower
= 0.0;
1864 m_vAdjust
->upper
= frange
;
1865 m_vAdjust
->value
= fpos
;
1866 m_vAdjust
->step_increment
= 1.0;
1867 m_vAdjust
->page_increment
= (float)(wxMax(fthumb
-2,0));
1868 m_vAdjust
->page_size
= fthumb
;
1871 if (m_wxwindow
->window
)
1873 if (orient
== wxHORIZONTAL
)
1874 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "changed" );
1876 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "changed" );
1878 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
1882 void wxWindow::SetScrollPos( int orient
, int pos
, bool WXUNUSED(refresh
) )
1884 if (!m_wxwindow
) return;
1886 if (orient
== wxHORIZONTAL
)
1888 float fpos
= (float)pos
;
1889 m_oldHorizontalPos
= fpos
;
1891 if (fabs(fpos
-m_hAdjust
->value
) < 0.2) return;
1892 m_hAdjust
->value
= fpos
;
1896 float fpos
= (float)pos
;
1897 m_oldVerticalPos
= fpos
;
1898 if (fabs(fpos
-m_vAdjust
->value
) < 0.2) return;
1899 m_vAdjust
->value
= fpos
;
1902 if (m_wxwindow
->window
)
1904 if (orient
== wxHORIZONTAL
)
1905 gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust
), "value_changed" );
1907 gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust
), "value_changed" );
1911 int wxWindow::GetScrollThumb( int orient
) const
1913 if (!m_wxwindow
) return 0;
1915 if (orient
== wxHORIZONTAL
)
1916 return (int)(m_hAdjust
->page_size
+0.5);
1918 return (int)(m_vAdjust
->page_size
+0.5);
1921 int wxWindow::GetScrollPos( int orient
) const
1923 if (!m_wxwindow
) return 0;
1925 if (orient
== wxHORIZONTAL
)
1926 return (int)(m_hAdjust
->value
+0.5);
1928 return (int)(m_vAdjust
->value
+0.5);
1931 int wxWindow::GetScrollRange( int orient
) const
1933 if (!m_wxwindow
) return 0;
1935 if (orient
== wxHORIZONTAL
)
1936 return (int)(m_hAdjust
->upper
+0.5);
1938 return (int)(m_vAdjust
->upper
+0.5);
1941 void wxWindow::ScrollWindow( int dx
, int dy
, const wxRect
* WXUNUSED(rect
) )
1943 if (!m_wxwindow
) return;
1945 m_drawingOffsetX
+= dx
;
1946 m_drawingOffsetY
+= dy
;
1948 // printf( "X: %d Y: %d \n", (int)m_drawingOffsetX, (int)m_drawingOffsetY );
1950 gtk_myfixed_set_offset( GTK_MYFIXED(m_wxwindow
), m_drawingOffsetX
, m_drawingOffsetY
);
1953 The code here is very nifty, but it doesn't work with
1954 overlapping windows...
1958 GetClientSize( &cw, &ch );
1960 int w = cw - abs(dx);
1961 int h = ch - abs(dy);
1962 if ((h < 0) || (w < 0))
1969 if (dx < 0) s_x = -dx;
1970 if (dy < 0) s_y = -dy;
1973 if (dx > 0) d_x = dx;
1974 if (dy > 0) d_y = dy;
1975 gdk_window_copy_area( m_wxwindow->window, m_wxwindow->style->fg_gc[0], d_x, d_y,
1976 m_wxwindow->window, s_x, s_y, w, h );
1979 if (dx < 0) rect.x = cw+dx; else rect.x = 0;
1980 if (dy < 0) rect.y = ch+dy; else rect.y = 0;
1981 if (dy != 0) rect.width = cw; else rect.width = abs(dx);
1982 if (dx != 0) rect.height = ch; else rect.height = abs(dy);
1984 Refresh( TRUE, &rect );
1988 void wxWindow::GetDrawingOffset( long *x
, long *y
)
1990 if (x
) *x
= m_drawingOffsetX
;
1991 if (y
) *y
= m_drawingOffsetY
;
1994 //-------------------------------------------------------------------------------------
1996 //-------------------------------------------------------------------------------------
1998 wxLayoutConstraints
*wxWindow::GetConstraints(void) const
2000 return m_constraints
;
2003 void wxWindow::SetConstraints( wxLayoutConstraints
*constraints
)
2007 UnsetConstraints(m_constraints
);
2008 delete m_constraints
;
2010 m_constraints
= constraints
;
2013 // Make sure other windows know they're part of a 'meaningful relationship'
2014 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
2015 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2016 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
2017 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2018 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
2019 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2020 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
2021 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2022 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
2023 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2024 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
2025 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2026 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
2027 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2028 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
2029 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
2035 void wxWindow::SetAutoLayout( bool autoLayout
)
2037 m_autoLayout
= autoLayout
;
2040 bool wxWindow::GetAutoLayout(void) const
2042 return m_autoLayout
;
2045 wxSizer
*wxWindow::GetSizer(void) const
2047 return m_windowSizer
;
2050 void wxWindow::SetSizerParent( wxWindow
*win
)
2052 m_sizerParent
= win
;
2055 wxWindow
*wxWindow::GetSizerParent(void) const
2057 return m_sizerParent
;
2060 // This removes any dangling pointers to this window
2061 // in other windows' constraintsInvolvedIn lists.
2062 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
2066 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
2067 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2068 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
2069 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2070 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
2071 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2072 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
2073 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2074 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
2075 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2076 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
2077 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2078 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
2079 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2080 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
2081 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
2085 // Back-pointer to other windows we're involved with, so if we delete
2086 // this window, we must delete any constraints we're involved with.
2087 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
2089 if (!m_constraintsInvolvedIn
)
2090 m_constraintsInvolvedIn
= new wxList
;
2091 if (!m_constraintsInvolvedIn
->Member(otherWin
))
2092 m_constraintsInvolvedIn
->Append(otherWin
);
2095 // REMOVE back-pointer to other windows we're involved with.
2096 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
2098 if (m_constraintsInvolvedIn
)
2099 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
2102 // Reset any constraints that mention this window
2103 void wxWindow::DeleteRelatedConstraints(void)
2105 if (m_constraintsInvolvedIn
)
2107 wxNode
*node
= m_constraintsInvolvedIn
->First();
2110 wxWindow
*win
= (wxWindow
*)node
->Data();
2111 wxNode
*next
= node
->Next();
2112 wxLayoutConstraints
*constr
= win
->GetConstraints();
2114 // Reset any constraints involving this window
2117 constr
->left
.ResetIfWin((wxWindow
*)this);
2118 constr
->top
.ResetIfWin((wxWindow
*)this);
2119 constr
->right
.ResetIfWin((wxWindow
*)this);
2120 constr
->bottom
.ResetIfWin((wxWindow
*)this);
2121 constr
->width
.ResetIfWin((wxWindow
*)this);
2122 constr
->height
.ResetIfWin((wxWindow
*)this);
2123 constr
->centreX
.ResetIfWin((wxWindow
*)this);
2124 constr
->centreY
.ResetIfWin((wxWindow
*)this);
2129 delete m_constraintsInvolvedIn
;
2130 m_constraintsInvolvedIn
= NULL
;
2134 void wxWindow::SetSizer(wxSizer
*sizer
)
2136 m_windowSizer
= sizer
;
2138 sizer
->SetSizerParent((wxWindow
*)this);
2145 bool wxWindow::Layout(void)
2147 if (GetConstraints())
2150 GetClientSize(&w
, &h
);
2151 GetConstraints()->width
.SetValue(w
);
2152 GetConstraints()->height
.SetValue(h
);
2155 // If top level (one sizer), evaluate the sizer's constraints.
2159 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
2160 GetSizer()->LayoutPhase1(&noChanges
);
2161 GetSizer()->LayoutPhase2(&noChanges
);
2162 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
2167 // Otherwise, evaluate child constraints
2168 ResetConstraints(); // Mark all constraints as unevaluated
2169 DoPhase(1); // Just one phase need if no sizers involved
2171 SetConstraintSizes(); // Recursively set the real window sizes
2177 // Do a phase of evaluating constraints:
2178 // the default behaviour. wxSizers may do a similar
2179 // thing, but also impose their own 'constraints'
2180 // and order the evaluation differently.
2181 bool wxWindow::LayoutPhase1(int *noChanges
)
2183 wxLayoutConstraints
*constr
= GetConstraints();
2186 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
2192 bool wxWindow::LayoutPhase2(int *noChanges
)
2202 // Do a phase of evaluating child constraints
2203 bool wxWindow::DoPhase(int phase
)
2205 int noIterations
= 0;
2206 int maxIterations
= 500;
2210 while ((noChanges
> 0) && (noIterations
< maxIterations
))
2214 wxNode
*node
= GetChildren()->First();
2217 wxWindow
*child
= (wxWindow
*)node
->Data();
2218 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
2220 wxLayoutConstraints
*constr
= child
->GetConstraints();
2223 if (succeeded
.Member(child
))
2228 int tempNoChanges
= 0;
2229 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
2230 noChanges
+= tempNoChanges
;
2233 succeeded
.Append(child
);
2238 node
= node
->Next();
2245 void wxWindow::ResetConstraints(void)
2247 wxLayoutConstraints
*constr
= GetConstraints();
2250 constr
->left
.SetDone(FALSE
);
2251 constr
->top
.SetDone(FALSE
);
2252 constr
->right
.SetDone(FALSE
);
2253 constr
->bottom
.SetDone(FALSE
);
2254 constr
->width
.SetDone(FALSE
);
2255 constr
->height
.SetDone(FALSE
);
2256 constr
->centreX
.SetDone(FALSE
);
2257 constr
->centreY
.SetDone(FALSE
);
2259 wxNode
*node
= GetChildren()->First();
2262 wxWindow
*win
= (wxWindow
*)node
->Data();
2263 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
2264 win
->ResetConstraints();
2265 node
= node
->Next();
2269 // Need to distinguish between setting the 'fake' size for
2270 // windows and sizers, and setting the real values.
2271 void wxWindow::SetConstraintSizes(bool recurse
)
2273 wxLayoutConstraints
*constr
= GetConstraints();
2274 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
2275 constr
->width
.GetDone() && constr
->height
.GetDone())
2277 int x
= constr
->left
.GetValue();
2278 int y
= constr
->top
.GetValue();
2279 int w
= constr
->width
.GetValue();
2280 int h
= constr
->height
.GetValue();
2282 // If we don't want to resize this window, just move it...
2283 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
2284 (constr
->height
.GetRelationship() != wxAsIs
))
2286 // Calls Layout() recursively. AAAGH. How can we stop that.
2287 // Simply take Layout() out of non-top level OnSizes.
2288 SizerSetSize(x
, y
, w
, h
);
2297 char *windowClass
= this->GetClassInfo()->GetClassName();
2300 if (GetName() == "")
2301 winName
= "unnamed";
2303 winName
= GetName();
2304 wxDebugMsg("Constraint(s) not satisfied for window of type %s, name %s:\n", (const char *)windowClass
, (const char *)winName
);
2305 if (!constr
->left
.GetDone())
2306 wxDebugMsg(" unsatisfied 'left' constraint.\n");
2307 if (!constr
->right
.GetDone())
2308 wxDebugMsg(" unsatisfied 'right' constraint.\n");
2309 if (!constr
->width
.GetDone())
2310 wxDebugMsg(" unsatisfied 'width' constraint.\n");
2311 if (!constr
->height
.GetDone())
2312 wxDebugMsg(" unsatisfied 'height' constraint.\n");
2313 wxDebugMsg("Please check constraints: try adding AsIs() constraints.\n");
2318 wxNode
*node
= GetChildren()->First();
2321 wxWindow
*win
= (wxWindow
*)node
->Data();
2322 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
2323 win
->SetConstraintSizes();
2324 node
= node
->Next();
2329 // This assumes that all sizers are 'on' the same
2330 // window, i.e. the parent of this window.
2331 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
2333 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
2334 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
2338 m_sizerParent
->GetPosition(&xp
, &yp
);
2339 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
2344 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
2348 TransformSizerToActual(&xx
, &yy
);
2349 SetSize(xx
, yy
, w
, h
);
2352 void wxWindow::SizerMove(int x
, int y
)
2356 TransformSizerToActual(&xx
, &yy
);
2360 // Only set the size/position of the constraint (if any)
2361 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
2363 wxLayoutConstraints
*constr
= GetConstraints();
2368 constr
->left
.SetValue(x
);
2369 constr
->left
.SetDone(TRUE
);
2373 constr
->top
.SetValue(y
);
2374 constr
->top
.SetDone(TRUE
);
2378 constr
->width
.SetValue(w
);
2379 constr
->width
.SetDone(TRUE
);
2383 constr
->height
.SetValue(h
);
2384 constr
->height
.SetDone(TRUE
);
2389 void wxWindow::MoveConstraint(int x
, int y
)
2391 wxLayoutConstraints
*constr
= GetConstraints();
2396 constr
->left
.SetValue(x
);
2397 constr
->left
.SetDone(TRUE
);
2401 constr
->top
.SetValue(y
);
2402 constr
->top
.SetDone(TRUE
);
2407 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
2409 wxLayoutConstraints
*constr
= GetConstraints();
2412 *w
= constr
->width
.GetValue();
2413 *h
= constr
->height
.GetValue();
2419 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
2421 wxLayoutConstraints
*constr
= GetConstraints();
2424 *w
= constr
->width
.GetValue();
2425 *h
= constr
->height
.GetValue();
2428 GetClientSize(w
, h
);
2431 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
2433 wxLayoutConstraints
*constr
= GetConstraints();
2436 *x
= constr
->left
.GetValue();
2437 *y
= constr
->top
.GetValue();
2443 bool wxWindow::AcceptsFocus() const
2445 return IsEnabled() && IsShown();
2448 void wxWindow::OnIdle(wxIdleEvent
& event
)