1 /* ///////////////////////////////////////////////////////////////////////////
3 // Purpose: native GTK+ widget for wxWindows
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////// */
10 #include "wx/gtk/win_gtk.h"
11 #include "gtk/gtksignal.h"
12 #include "gtk/gtknotebook.h"
13 #include "gtk/gtkscrolledwindow.h"
17 #endif /* __cplusplus */
19 static void gtk_myfixed_class_init (GtkMyFixedClass
*klass
);
20 static void gtk_myfixed_init (GtkMyFixed
*myfixed
);
21 static void gtk_myfixed_map (GtkWidget
*widget
);
22 #if (GTK_MINOR_VERSION == 0)
23 static void gtk_myfixed_unmap (GtkWidget
*widget
);
25 static void gtk_myfixed_realize (GtkWidget
*widget
);
26 static void gtk_myfixed_size_request (GtkWidget
*widget
,
27 GtkRequisition
*requisition
);
28 static void gtk_myfixed_size_allocate (GtkWidget
*widget
,
29 GtkAllocation
*allocation
);
30 static void gtk_myfixed_paint (GtkWidget
*widget
,
32 static void gtk_myfixed_draw (GtkWidget
*widget
,
34 static gint
gtk_myfixed_expose (GtkWidget
*widget
,
35 GdkEventExpose
*event
);
36 static void gtk_myfixed_add (GtkContainer
*container
,
38 static void gtk_myfixed_remove (GtkContainer
*container
,
40 static void gtk_myfixed_foreach (GtkContainer
*container
,
41 #if (GTK_MINOR_VERSION > 0)
42 gboolean include_internals
,
45 gpointer callback_data
);
46 #if (GTK_MINOR_VERSION > 0)
47 static GtkType
gtk_myfixed_child_type (GtkContainer
*container
);
50 #if (GTK_MINOR_VERSION > 0)
51 static void gtk_myfixed_scroll_set_adjustments (GtkMyFixed
*myfixed
,
58 static GtkContainerClass
*parent_class
= NULL
;
61 gtk_myfixed_get_type ()
63 static guint myfixed_type
= 0;
67 GtkTypeInfo myfixed_info
=
71 sizeof (GtkMyFixedClass
),
72 (GtkClassInitFunc
) gtk_myfixed_class_init
,
73 (GtkObjectInitFunc
) gtk_myfixed_init
,
74 #if (GTK_MINOR_VERSION > 0)
75 /* reserved_1 */ NULL
,
76 /* reserved_2 */ NULL
,
77 (GtkClassInitFunc
) NULL
,
83 myfixed_type
= gtk_type_unique (gtk_container_get_type (), &myfixed_info
);
90 gtk_myfixed_class_init (GtkMyFixedClass
*klass
)
92 GtkObjectClass
*object_class
;
93 GtkWidgetClass
*widget_class
;
94 GtkContainerClass
*container_class
;
96 object_class
= (GtkObjectClass
*) klass
;
97 widget_class
= (GtkWidgetClass
*) klass
;
98 container_class
= (GtkContainerClass
*) klass
;
100 #if (GTK_MINOR_VERSION > 0)
101 parent_class
= gtk_type_class (GTK_TYPE_CONTAINER
);
103 parent_class
= gtk_type_class (gtk_container_get_type ());
106 widget_class
->map
= gtk_myfixed_map
;
107 #if (GTK_MINOR_VERSION == 0)
108 widget_class
->unmap
= gtk_myfixed_unmap
;
110 widget_class
->realize
= gtk_myfixed_realize
;
111 widget_class
->size_request
= gtk_myfixed_size_request
;
112 widget_class
->size_allocate
= gtk_myfixed_size_allocate
;
113 widget_class
->draw
= gtk_myfixed_draw
;
114 widget_class
->expose_event
= gtk_myfixed_expose
;
116 container_class
->add
= gtk_myfixed_add
;
117 container_class
->remove
= gtk_myfixed_remove
;
118 #if (GTK_MINOR_VERSION > 0)
119 container_class
->forall
= gtk_myfixed_foreach
;
121 container_class
->foreach
= gtk_myfixed_foreach
;
124 #if (GTK_MINOR_VERSION > 0)
125 container_class
->child_type
= gtk_myfixed_child_type
;
128 #if (GTK_MINOR_VERSION > 0)
129 klass
->set_scroll_adjustments
= gtk_myfixed_scroll_set_adjustments
;
131 widget_class
->set_scroll_adjustments_signal
=
132 gtk_signal_new ("set_scroll_adjustments",
135 GTK_SIGNAL_OFFSET (GtkMyFixedClass
, set_scroll_adjustments
),
136 gtk_marshal_NONE__POINTER_POINTER
,
137 GTK_TYPE_NONE
, 2, GTK_TYPE_ADJUSTMENT
, GTK_TYPE_ADJUSTMENT
);
141 #if (GTK_MINOR_VERSION > 0)
143 gtk_myfixed_child_type (GtkContainer
*container
)
145 return GTK_TYPE_WIDGET
;
150 gtk_myfixed_init (GtkMyFixed
*myfixed
)
152 GTK_WIDGET_UNSET_FLAGS (myfixed
, GTK_NO_WINDOW
);
154 #if (GTK_MINOR_VERSION == 0)
155 GTK_WIDGET_SET_FLAGS (myfixed
, GTK_BASIC
);
158 #if (GTK_MINOR_VERSION > 0)
159 myfixed
->shadow_type
= GTK_MYSHADOW_NONE
;
162 myfixed
->children
= NULL
;
170 myfixed
= gtk_type_new (gtk_myfixed_get_type ());
172 return GTK_WIDGET (myfixed
);
175 #if (GTK_MINOR_VERSION > 0)
177 gtk_myfixed_scroll_set_adjustments (GtkMyFixed
*myfixed
,
181 /* OK, this is embarassing, but this function has to be here */
185 gtk_myfixed_set_shadow_type (GtkMyFixed
*myfixed
,
186 GtkMyShadowType type
)
188 g_return_if_fail (myfixed
!= NULL
);
189 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
191 if ((GtkMyShadowType
) myfixed
->shadow_type
!= type
)
193 myfixed
->shadow_type
= type
;
195 if (GTK_WIDGET_VISIBLE (myfixed
))
197 gtk_widget_size_allocate (GTK_WIDGET (myfixed
), &(GTK_WIDGET (myfixed
)->allocation
));
198 gtk_widget_queue_draw (GTK_WIDGET (myfixed
));
205 gtk_myfixed_put (GtkMyFixed
*myfixed
,
212 GtkMyFixedChild
*child_info
;
214 g_return_if_fail (myfixed
!= NULL
);
215 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
216 g_return_if_fail (widget
!= NULL
);
218 child_info
= g_new (GtkMyFixedChild
, 1);
219 child_info
->widget
= widget
;
222 child_info
->width
= width
;
223 child_info
->height
= height
;
225 gtk_widget_set_parent (widget
, GTK_WIDGET (myfixed
));
227 myfixed
->children
= g_list_append (myfixed
->children
, child_info
);
229 if (GTK_WIDGET_REALIZED (myfixed
))
230 gtk_widget_realize (widget
);
232 if (GTK_WIDGET_VISIBLE (myfixed
) && GTK_WIDGET_VISIBLE (widget
))
234 if (GTK_WIDGET_MAPPED (myfixed
))
235 gtk_widget_map (widget
);
237 gtk_widget_queue_resize (GTK_WIDGET (myfixed
));
242 gtk_myfixed_move (GtkMyFixed
*myfixed
,
247 GtkMyFixedChild
*child
;
250 g_return_if_fail (myfixed
!= NULL
);
251 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
252 g_return_if_fail (widget
!= NULL
);
254 children
= myfixed
->children
;
257 child
= children
->data
;
258 children
= children
->next
;
260 if (child
->widget
== widget
)
262 gtk_myfixed_set_size( myfixed
, widget
, x
, y
, child
->width
, child
->height
);
269 gtk_myfixed_resize (GtkMyFixed
*myfixed
,
274 GtkMyFixedChild
*child
;
277 g_return_if_fail (myfixed
!= NULL
);
278 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
279 g_return_if_fail (widget
!= NULL
);
281 children
= myfixed
->children
;
284 child
= children
->data
;
285 children
= children
->next
;
287 if (child
->widget
== widget
)
289 gtk_myfixed_set_size( myfixed
, widget
, child
->x
, child
->y
, width
, height
);
296 gtk_myfixed_set_size (GtkMyFixed
*myfixed
,
303 GtkMyFixedChild
*child
;
305 GtkAllocation child_allocation
;
307 g_return_if_fail (myfixed
!= NULL
);
308 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
309 g_return_if_fail (widget
!= NULL
);
311 children
= myfixed
->children
;
314 child
= children
->data
;
315 children
= children
->next
;
317 if (child
->widget
== widget
)
319 if ((child
->x
== x
) &&
321 (child
->width
== width
) &&
322 (child
->height
== height
)) return;
326 child
->width
= width
;
327 child
->height
= height
;
329 if (GTK_WIDGET_VISIBLE (widget
) && GTK_WIDGET_VISIBLE (myfixed
))
331 if ( (child
->width
> 1) &&
332 (child
->height
> 1) &&
333 !(GTK_WIDGET_REALIZED(widget
) && GTK_IS_NOTEBOOK(widget
)) )
335 child_allocation
.x
= child
->x
;
336 child_allocation
.y
= child
->y
;
337 child_allocation
.width
= MAX( child
->width
, 1 );
338 child_allocation
.height
= MAX( child
->height
, 1 );
340 /* work around for GTK bug when moving widgets outside
341 the X window -> do NOT move them entirely outside */
342 if (child_allocation
.y
+ child_allocation
.height
< 0)
343 child_allocation
.y
= -child_allocation
.height
;
344 if (child_allocation
.x
+ child_allocation
.width
< 0)
345 child_allocation
.x
= -child_allocation
.width
;
347 gtk_widget_size_allocate (widget
, &child_allocation
);
351 gtk_widget_queue_resize (GTK_WIDGET (myfixed
));
360 gtk_myfixed_map (GtkWidget
*widget
)
363 GtkMyFixedChild
*child
;
366 g_return_if_fail (widget
!= NULL
);
367 g_return_if_fail (GTK_IS_MYFIXED (widget
));
369 GTK_WIDGET_SET_FLAGS (widget
, GTK_MAPPED
);
370 myfixed
= GTK_MYFIXED (widget
);
372 children
= myfixed
->children
;
375 child
= children
->data
;
376 children
= children
->next
;
378 if (GTK_WIDGET_VISIBLE (child
->widget
) && !GTK_WIDGET_MAPPED (child
->widget
))
379 gtk_widget_map (child
->widget
);
382 gdk_window_show (widget
->window
);
385 #if (GTK_MINOR_VERSION == 0)
387 gtk_myfixed_unmap (GtkWidget
*widget
)
389 g_return_if_fail (widget
!= NULL
);
390 g_return_if_fail (GTK_IS_MYFIXED (widget
));
392 GTK_WIDGET_UNSET_FLAGS (widget
, GTK_MAPPED
);
397 gtk_myfixed_realize (GtkWidget
*widget
)
400 GdkWindowAttr attributes
;
401 gint attributes_mask
;
403 g_return_if_fail (widget
!= NULL
);
404 g_return_if_fail (GTK_IS_MYFIXED (widget
));
406 myfixed
= GTK_MYFIXED (widget
);
408 GTK_WIDGET_SET_FLAGS (widget
, GTK_REALIZED
);
410 attributes
.window_type
= GDK_WINDOW_CHILD
;
412 #if (GTK_MINOR_VERSION > 0)
413 attributes
.x
= widget
->allocation
.x
;
414 attributes
.y
= widget
->allocation
.y
;
415 attributes
.width
= widget
->allocation
.width
;
416 attributes
.height
= widget
->allocation
.height
;
418 if (myfixed
->shadow_type
== GTK_MYSHADOW_NONE
)
420 /* no border, no changes to sizes */
422 if (myfixed
->shadow_type
== GTK_MYSHADOW_THIN
)
424 /* GTK_MYSHADOW_THIN == wxSIMPLE_BORDER */
427 attributes
.width
-= 2;
428 attributes
.height
-= 2;
431 /* GTK_MYSHADOW_IN == wxSUNKEN_BORDER */
432 /* GTK_MYSHADOW_OUT == wxRAISED_BORDER */
435 attributes
.width
-= 4;
436 attributes
.height
-= 4;
439 if (attributes
.width
< 2) attributes
.width
= 2;
440 if (attributes
.height
< 2) attributes
.height
= 2;
442 attributes
.x
= widget
->allocation
.x
;
443 attributes
.y
= widget
->allocation
.y
;
444 attributes
.width
= 32000;
445 attributes
.height
= 32000;
447 attributes
.wclass
= GDK_INPUT_OUTPUT
;
448 attributes
.visual
= gtk_widget_get_visual (widget
);
449 attributes
.colormap
= gtk_widget_get_colormap (widget
);
450 attributes
.event_mask
= gtk_widget_get_events (widget
);
451 attributes
.event_mask
|=
453 GDK_POINTER_MOTION_MASK
|
454 GDK_POINTER_MOTION_HINT_MASK
|
455 GDK_BUTTON_MOTION_MASK
|
456 GDK_BUTTON1_MOTION_MASK
|
457 GDK_BUTTON2_MOTION_MASK
|
458 GDK_BUTTON3_MOTION_MASK
|
459 GDK_BUTTON_PRESS_MASK
|
460 GDK_BUTTON_RELEASE_MASK
|
462 GDK_KEY_RELEASE_MASK
|
463 GDK_ENTER_NOTIFY_MASK
|
464 GDK_LEAVE_NOTIFY_MASK
|
465 GDK_FOCUS_CHANGE_MASK
;
466 attributes_mask
= GDK_WA_X
| GDK_WA_Y
| GDK_WA_VISUAL
| GDK_WA_COLORMAP
;
468 widget
->window
= gdk_window_new( gtk_widget_get_parent_window (widget
), &attributes
,
470 gdk_window_set_user_data (widget
->window
, widget
);
472 widget
->style
= gtk_style_attach (widget
->style
, widget
->window
);
473 gtk_style_set_background (widget
->style
, widget
->window
, GTK_STATE_NORMAL
);
477 gtk_myfixed_size_request (GtkWidget
*widget
,
478 GtkRequisition
*requisition
)
481 GtkMyFixedChild
*child
;
483 GtkRequisition child_requisition
;
485 g_return_if_fail (widget
!= NULL
);
486 g_return_if_fail (GTK_IS_MYFIXED (widget
));
487 g_return_if_fail (requisition
!= NULL
);
489 myfixed
= GTK_MYFIXED (widget
);
491 children
= myfixed
->children
;
494 child
= children
->data
;
495 children
= children
->next
;
497 if (GTK_WIDGET_VISIBLE (child
->widget
))
499 gtk_widget_size_request (child
->widget
, &child_requisition
);
503 /* request very little, I'm not sure if requesting nothing
504 will always have positive effects on stability... */
505 requisition
->width
= 2;
506 requisition
->height
= 2;
510 gtk_myfixed_size_allocate (GtkWidget
*widget
,
511 GtkAllocation
*allocation
)
515 GtkMyFixedChild
*child
;
516 GtkAllocation child_allocation
;
519 g_return_if_fail (widget
!= NULL
);
520 g_return_if_fail (GTK_IS_MYFIXED(widget
));
521 g_return_if_fail (allocation
!= NULL
);
523 myfixed
= GTK_MYFIXED (widget
);
525 widget
->allocation
= *allocation
;
526 #if (GTK_MINOR_VERSION > 0)
527 if (myfixed
->shadow_type
== GTK_MYSHADOW_NONE
)
530 if (myfixed
->shadow_type
== GTK_MYSHADOW_THIN
)
538 if (GTK_WIDGET_REALIZED (widget
))
540 gdk_window_move_resize( widget
->window
,
541 allocation
->x
+border
, allocation
->y
+border
,
542 #if (GTK_MINOR_VERSION > 0)
543 allocation
->width
-border
*2, allocation
->height
-border
*2
550 children
= myfixed
->children
;
553 child
= children
->data
;
554 children
= children
->next
;
556 if (GTK_WIDGET_VISIBLE (child
->widget
))
558 /* please look at the text in wxWindow::DoSetSize() on why the
559 test GTK_WIDGET_REALIZED() has to be here */
560 /* if (GTK_IS_NOTEBOOK(child->widget) && !GTK_WIDGET_REALIZED(child->widget))
562 gtk_widget_queue_resize( child->widget );
566 child_allocation
.x
= child
->x
;
567 child_allocation
.y
= child
->y
;
568 child_allocation
.width
= MAX( child
->width
, 1 );
569 child_allocation
.height
= MAX( child
->height
, 1 );
571 /* work around for GTK bug when moving widgets outside
572 the X window -> do NOT move them entirely outside */
573 if (child_allocation
.y
+ child_allocation
.height
< 0)
574 child_allocation
.y
= -child_allocation
.height
;
575 if (child_allocation
.x
+ child_allocation
.width
< 0)
576 child_allocation
.x
= -child_allocation
.width
;
578 gtk_widget_size_allocate (child
->widget
, &child_allocation
);
585 gtk_myfixed_paint (GtkWidget
*widget
,
588 g_return_if_fail (widget
!= NULL
);
589 g_return_if_fail (GTK_IS_MYFIXED (widget
));
590 g_return_if_fail (area
!= NULL
);
592 if (GTK_WIDGET_DRAWABLE (widget
))
593 gdk_window_clear_area (widget
->window
,
595 area
->width
, area
->height
);
599 gtk_myfixed_draw (GtkWidget
*widget
,
603 GtkMyFixedChild
*child
;
604 GdkRectangle child_area
;
607 g_return_if_fail (widget
!= NULL
);
608 g_return_if_fail (GTK_IS_MYFIXED (widget
));
610 if (GTK_WIDGET_DRAWABLE (widget
))
612 myfixed
= GTK_MYFIXED (widget
);
613 gtk_myfixed_paint (widget
, area
);
615 children
= myfixed
->children
;
618 child
= children
->data
;
619 children
= children
->next
;
621 if (gtk_widget_intersect (child
->widget
, area
, &child_area
))
622 gtk_widget_draw (child
->widget
, &child_area
);
628 gtk_myfixed_expose (GtkWidget
*widget
,
629 GdkEventExpose
*event
)
632 GtkMyFixedChild
*child
;
633 GdkEventExpose child_event
;
636 g_return_val_if_fail (widget
!= NULL
, FALSE
);
637 g_return_val_if_fail (GTK_IS_MYFIXED (widget
), FALSE
);
638 g_return_val_if_fail (event
!= NULL
, FALSE
);
640 if (GTK_WIDGET_DRAWABLE (widget
))
642 myfixed
= GTK_MYFIXED (widget
);
644 child_event
= *event
;
646 children
= myfixed
->children
;
649 child
= children
->data
;
650 children
= children
->next
;
652 if (GTK_WIDGET_NO_WINDOW (child
->widget
) &&
653 gtk_widget_intersect (child
->widget
, &event
->area
,
655 gtk_widget_event (child
->widget
, (GdkEvent
*) &child_event
);
663 gtk_myfixed_add (GtkContainer
*container
,
666 g_return_if_fail (container
!= NULL
);
667 g_return_if_fail (GTK_IS_MYFIXED (container
));
668 g_return_if_fail (widget
!= NULL
);
670 gtk_myfixed_put (GTK_MYFIXED (container
), widget
, 0, 0, 20, 20 );
674 gtk_myfixed_remove (GtkContainer
*container
,
678 GtkMyFixedChild
*child
;
681 g_return_if_fail (container
!= NULL
);
682 g_return_if_fail (GTK_IS_MYFIXED (container
));
683 g_return_if_fail (widget
!= NULL
);
685 myfixed
= GTK_MYFIXED (container
);
687 children
= myfixed
->children
;
690 child
= children
->data
;
692 if (child
->widget
== widget
)
694 gboolean was_visible
= GTK_WIDGET_VISIBLE (widget
);
696 gtk_widget_unparent (widget
);
698 myfixed
->children
= g_list_remove_link (myfixed
->children
, children
);
699 g_list_free (children
);
702 if (was_visible
&& GTK_WIDGET_VISIBLE (container
))
703 gtk_widget_queue_resize (GTK_WIDGET (container
));
708 children
= children
->next
;
713 gtk_myfixed_foreach (GtkContainer
*container
,
714 #if (GTK_MINOR_VERSION > 0)
715 gboolean include_internals
,
717 GtkCallback callback
,
718 gpointer callback_data
)
721 GtkMyFixedChild
*child
;
724 g_return_if_fail (container
!= NULL
);
725 g_return_if_fail (GTK_IS_MYFIXED (container
));
726 g_return_if_fail (callback
!= NULL
);
728 myfixed
= GTK_MYFIXED (container
);
730 children
= myfixed
->children
;
733 child
= children
->data
;
734 children
= children
->next
;
736 (* callback
) (child
->widget
, callback_data
);
743 #endif /* __cplusplus */