1 /* ///////////////////////////////////////////////////////////////////////////
3 // Purpose: Native GTK+ widget for wxWindows, based on GtkLayout and
4 // GtkFixed. It makes use of the gravity window property and
5 // therefore does not work with GTK 1.0.
6 // Author: Robert Roebling
8 // Copyright: (c) 1998 Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////// */
12 #include "wx/gtk/win_gtk.h"
13 #include "gtk/gtksignal.h"
14 #include "gtk/gtkprivate.h"
19 #endif /* __cplusplus */
21 #define IS_ONSCREEN(x,y) ((x >= G_MINSHORT) && (x <= G_MAXSHORT) && \
22 (y >= G_MINSHORT) && (y <= G_MAXSHORT))
24 typedef struct _GtkMyFixedAdjData GtkMyFixedAdjData
;
25 typedef struct _GtkMyFixedChild GtkMyFixedChild
;
27 struct _GtkMyFixedAdjData
33 struct _GtkMyFixedChild
42 static void gtk_myfixed_class_init (GtkMyFixedClass
*klass
);
43 static void gtk_myfixed_init (GtkMyFixed
*myfixed
);
45 static void gtk_myfixed_realize (GtkWidget
*widget
);
46 static void gtk_myfixed_unrealize (GtkWidget
*widget
);
48 static void gtk_myfixed_map (GtkWidget
*widget
);
50 static void gtk_myfixed_size_request (GtkWidget
*widget
,
51 GtkRequisition
*requisition
);
52 static void gtk_myfixed_size_allocate (GtkWidget
*widget
,
53 GtkAllocation
*allocation
);
54 static void gtk_myfixed_draw (GtkWidget
*widget
,
56 static gint
gtk_myfixed_expose (GtkWidget
*widget
,
57 GdkEventExpose
*event
);
58 static void gtk_myfixed_add (GtkContainer
*container
,
60 static void gtk_myfixed_remove (GtkContainer
*container
,
62 static void gtk_myfixed_forall (GtkContainer
*container
,
63 gboolean include_internals
,
65 gpointer callback_data
);
67 static void gtk_myfixed_position_child (GtkMyFixed
*myfixed
,
68 GtkMyFixedChild
*child
);
69 static void gtk_myfixed_allocate_child (GtkMyFixed
*myfixed
,
70 GtkMyFixedChild
*child
);
71 static void gtk_myfixed_position_children (GtkMyFixed
*myfixed
);
73 static void gtk_myfixed_adjust_allocations_recurse (GtkWidget
*widget
,
75 static void gtk_myfixed_adjust_allocations (GtkMyFixed
*myfixed
,
80 static void gtk_myfixed_expose_area (GtkMyFixed
*myfixed
,
85 static void gtk_myfixed_adjustment_changed (GtkAdjustment
*adjustment
,
87 static GdkFilterReturn
gtk_myfixed_filter (GdkXEvent
*gdk_xevent
,
90 static GdkFilterReturn
gtk_myfixed_main_filter (GdkXEvent
*gdk_xevent
,
95 static GtkType
gtk_myfixed_child_type (GtkContainer
*container
);
97 static void gtk_myfixed_scroll_set_adjustments (GtkMyFixed
*myfixed
,
102 static GtkContainerClass
*parent_class
= NULL
;
103 static gboolean gravity_works
;
106 gtk_myfixed_get_type ()
108 static guint myfixed_type
= 0;
112 GtkTypeInfo myfixed_info
=
116 sizeof (GtkMyFixedClass
),
117 (GtkClassInitFunc
) gtk_myfixed_class_init
,
118 (GtkObjectInitFunc
) gtk_myfixed_init
,
119 /* reserved_1 */ NULL
,
120 /* reserved_2 */ NULL
,
121 (GtkClassInitFunc
) NULL
,
123 myfixed_type
= gtk_type_unique (gtk_container_get_type (), &myfixed_info
);
130 gtk_myfixed_class_init (GtkMyFixedClass
*klass
)
132 GtkObjectClass
*object_class
;
133 GtkWidgetClass
*widget_class
;
134 GtkContainerClass
*container_class
;
136 object_class
= (GtkObjectClass
*) klass
;
137 widget_class
= (GtkWidgetClass
*) klass
;
138 container_class
= (GtkContainerClass
*) klass
;
139 parent_class
= gtk_type_class (GTK_TYPE_CONTAINER
);
141 widget_class
->map
= gtk_myfixed_map
;
142 widget_class
->realize
= gtk_myfixed_realize
;
143 widget_class
->unrealize
= gtk_myfixed_unrealize
;
144 widget_class
->size_request
= gtk_myfixed_size_request
;
145 widget_class
->size_allocate
= gtk_myfixed_size_allocate
;
146 widget_class
->draw
= gtk_myfixed_draw
;
147 widget_class
->expose_event
= gtk_myfixed_expose
;
149 container_class
->add
= gtk_myfixed_add
;
150 container_class
->remove
= gtk_myfixed_remove
;
151 container_class
->forall
= gtk_myfixed_forall
;
153 container_class
->child_type
= gtk_myfixed_child_type
;
155 klass
->set_scroll_adjustments
= gtk_myfixed_scroll_set_adjustments
;
157 widget_class
->set_scroll_adjustments_signal
=
158 gtk_signal_new ("set_scroll_adjustments",
161 GTK_SIGNAL_OFFSET (GtkMyFixedClass
, set_scroll_adjustments
),
162 gtk_marshal_NONE__POINTER_POINTER
,
163 GTK_TYPE_NONE
, 2, GTK_TYPE_ADJUSTMENT
, GTK_TYPE_ADJUSTMENT
);
167 gtk_myfixed_child_type (GtkContainer
*container
)
169 return GTK_TYPE_WIDGET
;
173 gtk_myfixed_init (GtkMyFixed
*myfixed
)
175 GTK_WIDGET_UNSET_FLAGS (myfixed
, GTK_NO_WINDOW
);
177 myfixed
->shadow_type
= GTK_MYSHADOW_NONE
;
179 myfixed
->children
= NULL
;
182 myfixed
->height
= 20;
184 myfixed
->bin_window
= NULL
;
186 myfixed
->configure_serial
= 0;
187 myfixed
->scroll_x
= 0;
188 myfixed
->scroll_y
= 0;
189 myfixed
->visibility
= GDK_VISIBILITY_PARTIAL
;
191 myfixed
->clear_on_draw
= TRUE
;
199 myfixed
= gtk_type_new (gtk_myfixed_get_type ());
201 return GTK_WIDGET (myfixed
);
205 gtk_myfixed_scroll_set_adjustments (GtkMyFixed
*myfixed
,
209 /* We handle scrolling in the wxScrolledWindow, not here. */
213 gtk_myfixed_set_shadow_type (GtkMyFixed
*myfixed
,
214 GtkMyShadowType type
)
216 g_return_if_fail (myfixed
!= NULL
);
217 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
219 if ((GtkMyShadowType
) myfixed
->shadow_type
!= type
)
221 myfixed
->shadow_type
= type
;
223 if (GTK_WIDGET_VISIBLE (myfixed
))
225 gtk_widget_size_allocate (GTK_WIDGET (myfixed
), &(GTK_WIDGET (myfixed
)->allocation
));
226 gtk_widget_queue_draw (GTK_WIDGET (myfixed
));
232 gtk_my_fixed_set_clear (GtkMyFixed
*myfixed
,
235 g_return_if_fail (myfixed
!= NULL
);
236 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
238 myfixed
->clear_on_draw
= clear
;
242 gtk_myfixed_put (GtkMyFixed
*myfixed
,
249 GtkMyFixedChild
*child_info
;
251 g_return_if_fail (myfixed
!= NULL
);
252 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
253 g_return_if_fail (widget
!= NULL
);
255 child_info
= g_new (GtkMyFixedChild
, 1);
257 child_info
->widget
= widget
;
260 child_info
->width
= width
;
261 child_info
->height
= height
;
263 myfixed
->children
= g_list_append (myfixed
->children
, child_info
);
265 gtk_widget_set_parent (widget
, GTK_WIDGET (myfixed
));
267 if (GTK_WIDGET_REALIZED (myfixed
))
268 gtk_widget_set_parent_window (widget
, myfixed
->bin_window
);
270 if (!IS_ONSCREEN (x
, y
))
271 GTK_PRIVATE_SET_FLAG (widget
, GTK_IS_OFFSCREEN
);
273 if (GTK_WIDGET_REALIZED (myfixed
))
274 gtk_widget_realize (widget
);
276 gtk_widget_set_usize (widget
, width
, height
);
278 if (GTK_WIDGET_VISIBLE (myfixed
) && GTK_WIDGET_VISIBLE (widget
))
280 if (GTK_WIDGET_MAPPED (myfixed
))
281 gtk_widget_map (widget
);
283 gtk_widget_queue_resize (widget
);
288 gtk_myfixed_move (GtkMyFixed
*myfixed
,
293 GtkMyFixedChild
*child
;
296 g_return_if_fail (myfixed
!= NULL
);
297 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
298 g_return_if_fail (widget
!= NULL
);
300 children
= myfixed
->children
;
303 child
= children
->data
;
304 children
= children
->next
;
306 if (child
->widget
== widget
)
308 if ((child
->x
== x
) && (child
->y
== y
))
314 if (GTK_WIDGET_VISIBLE (widget
) && GTK_WIDGET_VISIBLE (myfixed
))
315 gtk_widget_queue_resize (widget
);
322 gtk_myfixed_resize (GtkMyFixed
*myfixed
,
327 GtkMyFixedChild
*child
;
330 g_return_if_fail (myfixed
!= NULL
);
331 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
332 g_return_if_fail (widget
!= NULL
);
334 children
= myfixed
->children
;
337 child
= children
->data
;
338 children
= children
->next
;
340 if (child
->widget
== widget
)
342 if ((child
->width
== width
) && (child
->height
== height
))
345 child
->width
= width
;
346 child
->height
= height
;
348 gtk_widget_set_usize (widget
, width
, height
);
350 if (GTK_WIDGET_VISIBLE (widget
) && GTK_WIDGET_VISIBLE (myfixed
))
351 gtk_widget_queue_resize (widget
);
358 gtk_myfixed_set_size (GtkMyFixed
*myfixed
,
365 GtkMyFixedChild
*child
;
367 GtkAllocation child_allocation
;
369 g_return_if_fail (myfixed
!= NULL
);
370 g_return_if_fail (GTK_IS_MYFIXED (myfixed
));
371 g_return_if_fail (widget
!= NULL
);
373 children
= myfixed
->children
;
376 child
= children
->data
;
377 children
= children
->next
;
379 if (child
->widget
== widget
)
381 if ((child
->x
== x
) &&
383 (child
->width
== width
) &&
384 (child
->height
== height
)) return;
388 child
->width
= width
;
389 child
->height
= height
;
391 gtk_widget_set_usize (widget
, width
, height
);
393 if (GTK_WIDGET_VISIBLE (widget
) && GTK_WIDGET_VISIBLE (myfixed
))
394 gtk_widget_queue_resize (widget
);
402 gtk_myfixed_map (GtkWidget
*widget
)
405 GtkMyFixedChild
*child
;
408 g_return_if_fail (widget
!= NULL
);
409 g_return_if_fail (GTK_IS_MYFIXED (widget
));
411 GTK_WIDGET_SET_FLAGS (widget
, GTK_MAPPED
);
412 myfixed
= GTK_MYFIXED (widget
);
414 children
= myfixed
->children
;
417 child
= children
->data
;
418 children
= children
->next
;
420 if ( GTK_WIDGET_VISIBLE (child
->widget
) &&
421 !GTK_WIDGET_MAPPED (child
->widget
) &&
422 !GTK_WIDGET_IS_OFFSCREEN (child
->widget
))
424 gtk_widget_map (child
->widget
);
428 gdk_window_show (widget
->window
);
429 gdk_window_show (myfixed
->bin_window
);
433 gtk_myfixed_realize (GtkWidget
*widget
)
436 GdkWindowAttr attributes
;
437 gint attributes_mask
;
438 GtkMyFixedChild
*child
;
441 g_return_if_fail (widget
!= NULL
);
442 g_return_if_fail (GTK_IS_MYFIXED (widget
));
444 myfixed
= GTK_MYFIXED (widget
);
446 GTK_WIDGET_SET_FLAGS (widget
, GTK_REALIZED
);
448 attributes
.window_type
= GDK_WINDOW_CHILD
;
450 attributes
.x
= widget
->allocation
.x
;
451 attributes
.y
= widget
->allocation
.y
;
452 attributes
.width
= widget
->allocation
.width
;
453 attributes
.height
= widget
->allocation
.height
;
455 if (myfixed
->shadow_type
== GTK_MYSHADOW_NONE
)
457 /* no border, no changes to sizes */
459 if (myfixed
->shadow_type
== GTK_MYSHADOW_THIN
)
461 /* GTK_MYSHADOW_THIN == wxSIMPLE_BORDER */
464 attributes
.width
-= 2;
465 attributes
.height
-= 2;
468 /* GTK_MYSHADOW_IN == wxSUNKEN_BORDER */
469 /* GTK_MYSHADOW_OUT == wxRAISED_BORDER */
472 attributes
.width
-= 4;
473 attributes
.height
-= 4;
477 if (attributes
.width
< 2) attributes
.width
= 2;
478 if (attributes
.height
< 2) attributes
.height
= 2;
480 attributes
.wclass
= GDK_INPUT_OUTPUT
;
481 attributes
.visual
= gtk_widget_get_visual (widget
);
482 attributes
.colormap
= gtk_widget_get_colormap (widget
);
483 attributes
.event_mask
=
484 GDK_VISIBILITY_NOTIFY_MASK
;
485 attributes_mask
= GDK_WA_X
| GDK_WA_Y
| GDK_WA_VISUAL
| GDK_WA_COLORMAP
;
487 widget
->window
= gdk_window_new (gtk_widget_get_parent_window (widget
),
488 &attributes
, attributes_mask
);
489 gdk_window_set_user_data (widget
->window
, widget
);
494 attributes
.event_mask
= gtk_widget_get_events (widget
);
495 attributes
.event_mask
|=
497 GDK_POINTER_MOTION_MASK
|
498 GDK_POINTER_MOTION_HINT_MASK
|
499 GDK_BUTTON_MOTION_MASK
|
500 GDK_BUTTON1_MOTION_MASK
|
501 GDK_BUTTON2_MOTION_MASK
|
502 GDK_BUTTON3_MOTION_MASK
|
503 GDK_BUTTON_PRESS_MASK
|
504 GDK_BUTTON_RELEASE_MASK
|
506 GDK_KEY_RELEASE_MASK
|
507 GDK_ENTER_NOTIFY_MASK
|
508 GDK_LEAVE_NOTIFY_MASK
|
509 GDK_FOCUS_CHANGE_MASK
;
511 myfixed
->bin_window
= gdk_window_new (widget
->window
,
512 &attributes
, attributes_mask
);
513 gdk_window_set_user_data (myfixed
->bin_window
, widget
);
515 widget
->style
= gtk_style_attach (widget
->style
, widget
->window
);
516 gtk_style_set_background (widget
->style
, widget
->window
, GTK_STATE_NORMAL
);
517 gtk_style_set_background (widget
->style
, myfixed
->bin_window
, GTK_STATE_NORMAL
);
519 /* add filters for intercepting visibility and expose events */
520 gdk_window_add_filter (widget
->window
, gtk_myfixed_main_filter
, myfixed
);
521 gdk_window_add_filter (myfixed
->bin_window
, gtk_myfixed_filter
, myfixed
);
523 /* we NEED gravity or we'll give up */
524 gravity_works
= gdk_window_set_static_gravities (myfixed
->bin_window
, TRUE
);
526 /* cannot be done before realisation */
527 children
= myfixed
->children
;
530 child
= children
->data
;
531 children
= children
->next
;
533 gtk_widget_set_parent_window (child
->widget
, myfixed
->bin_window
);
538 gtk_myfixed_unrealize (GtkWidget
*widget
)
542 g_return_if_fail (widget
!= NULL
);
543 g_return_if_fail (GTK_IS_MYFIXED (widget
));
545 myfixed
= GTK_MYFIXED (widget
);
547 gdk_window_set_user_data (myfixed
->bin_window
, NULL
);
548 gdk_window_destroy (myfixed
->bin_window
);
549 myfixed
->bin_window
= NULL
;
551 if (GTK_WIDGET_CLASS (parent_class
)->unrealize
)
552 (* GTK_WIDGET_CLASS (parent_class
)->unrealize
) (widget
);
556 gtk_myfixed_size_request (GtkWidget
*widget
,
557 GtkRequisition
*requisition
)
560 GtkMyFixedChild
*child
;
562 GtkRequisition child_requisition
;
564 g_return_if_fail (widget
!= NULL
);
565 g_return_if_fail (GTK_IS_MYFIXED (widget
));
566 g_return_if_fail (requisition
!= NULL
);
568 myfixed
= GTK_MYFIXED (widget
);
570 children
= myfixed
->children
;
573 child
= children
->data
;
574 children
= children
->next
;
576 if (GTK_WIDGET_VISIBLE (child
->widget
))
578 gtk_widget_size_request (child
->widget
, &child_requisition
);
582 /* request very little, I'm not sure if requesting nothing
583 will always have positive effects on stability... */
584 requisition
->width
= 2;
585 requisition
->height
= 2;
589 gtk_myfixed_size_allocate (GtkWidget
*widget
,
590 GtkAllocation
*allocation
)
595 GtkMyFixedChild
*child
;
596 GtkAllocation child_allocation
;
599 g_return_if_fail (widget
!= NULL
);
600 g_return_if_fail (GTK_IS_MYFIXED(widget
));
601 g_return_if_fail (allocation
!= NULL
);
603 myfixed
= GTK_MYFIXED (widget
);
605 children
= myfixed
->children
;
608 child
= children
->data
;
609 children
= children
->next
;
611 gtk_myfixed_position_child (myfixed
, child
);
612 gtk_myfixed_allocate_child (myfixed
, child
);
615 widget
->allocation
= *allocation
;
617 if (myfixed
->shadow_type
== GTK_MYSHADOW_NONE
)
620 if (myfixed
->shadow_type
== GTK_MYSHADOW_THIN
)
625 x
= allocation
->x
+ border
;
626 y
= allocation
->y
+ border
;
627 w
= allocation
->width
- border
*2;
628 h
= allocation
->height
- border
*2;
630 if (GTK_WIDGET_REALIZED (widget
))
632 gdk_window_move_resize( widget
->window
, x
, y
, w
, h
);
633 gdk_window_move_resize( myfixed
->bin_window
, 0, 0, w
, h
);
638 gtk_myfixed_draw (GtkWidget
*widget
,
642 GtkMyFixedChild
*child
;
643 GdkRectangle child_area
;
646 g_return_if_fail (widget
!= NULL
);
647 g_return_if_fail (GTK_IS_MYFIXED (widget
));
649 myfixed
= GTK_MYFIXED (widget
);
651 children
= myfixed
->children
;
652 if ( !(GTK_WIDGET_APP_PAINTABLE (widget
)) &&
653 (myfixed
->clear_on_draw
))
655 gdk_window_clear_area( myfixed
->bin_window
,
656 area
->x
, area
->y
, area
->width
, area
->height
);
661 child
= children
->data
;
662 children
= children
->next
;
664 if (gtk_widget_intersect (child
->widget
, area
, &child_area
))
665 gtk_widget_draw (child
->widget
, &child_area
);
671 gtk_myfixed_draw_border (GtkMyFixed *myfixed)
675 widget = GTK_WIDGET(myfixed);
677 if (myfixed->shadow_type == GTK_MYSHADOW_NONE)
680 if (myfixed->shadow_type == GTK_MYSHADOW_OUT)
682 gtk_draw_shadow( widget->style,
687 widget->allocation.width,
688 widget->allocation.height );
692 if (myfixed->shadow_type == GTK_MYSHADOW_IN)
694 gtk_draw_shadow( widget->style,
699 widget->allocation.width,
700 widget->allocation.height );
704 if (myfixed->shadow_type == GTK_MYSHADOW_THIN)
707 gc = gdk_gc_new( widget->window );
708 gdk_gc_set_foreground( gc, &widget->style->black );
709 gdk_draw_rectangle( widget->window, gc, FALSE,
711 widget->allocation.width-1,
712 widget->allocation.height-1 );
720 gtk_myfixed_expose (GtkWidget
*widget
,
721 GdkEventExpose
*event
)
724 GtkMyFixedChild
*child
;
725 GdkEventExpose child_event
;
728 g_return_val_if_fail (widget
!= NULL
, FALSE
);
729 g_return_val_if_fail (GTK_IS_MYFIXED (widget
), FALSE
);
730 g_return_val_if_fail (event
!= NULL
, FALSE
);
732 myfixed
= GTK_MYFIXED (widget
);
735 if (event->window == widget->window)
737 gtk_myfixed_draw_border( myfixed );
742 if (event
->window
!= myfixed
->bin_window
)
745 children
= myfixed
->children
;
748 child
= children
->data
;
749 children
= children
->next
;
751 child_event
= *event
;
753 if (GTK_WIDGET_NO_WINDOW (child
->widget
) &&
754 GTK_WIDGET_DRAWABLE (child
->widget
) &&
755 gtk_widget_intersect (child
->widget
, &event
->area
, &child_event
.area
))
757 gtk_widget_event (child
->widget
, (GdkEvent
*) &child_event
);
765 gtk_myfixed_add (GtkContainer
*container
,
768 g_return_if_fail (container
!= NULL
);
769 g_return_if_fail (GTK_IS_MYFIXED (container
));
770 g_return_if_fail (widget
!= NULL
);
772 gtk_myfixed_put (GTK_MYFIXED (container
), widget
, 0, 0, 20, 20 );
776 gtk_myfixed_remove (GtkContainer
*container
,
780 GtkMyFixedChild
*child
;
783 g_return_if_fail (container
!= NULL
);
784 g_return_if_fail (GTK_IS_MYFIXED (container
));
785 g_return_if_fail (widget
!= NULL
);
787 myfixed
= GTK_MYFIXED (container
);
789 children
= myfixed
->children
;
792 child
= children
->data
;
794 if (child
->widget
== widget
)
796 gtk_widget_unparent (widget
);
798 /* security checks */
799 g_return_if_fail (GTK_IS_WIDGET (widget
));
801 myfixed
->children
= g_list_remove_link (myfixed
->children
, children
);
802 g_list_free (children
);
805 /* security checks */
806 g_return_if_fail (GTK_IS_WIDGET (widget
));
808 GTK_PRIVATE_UNSET_FLAG (widget
, GTK_IS_OFFSCREEN
);
813 children
= children
->next
;
818 gtk_myfixed_forall (GtkContainer
*container
,
819 gboolean include_internals
,
820 GtkCallback callback
,
821 gpointer callback_data
)
824 GtkMyFixedChild
*child
;
827 g_return_if_fail (container
!= NULL
);
828 g_return_if_fail (GTK_IS_MYFIXED (container
));
829 g_return_if_fail (callback
!= NULL
);
831 myfixed
= GTK_MYFIXED (container
);
833 children
= myfixed
->children
;
836 child
= children
->data
;
837 children
= children
->next
;
839 (* callback
) (child
->widget
, callback_data
);
844 /* Operations on children
848 gtk_myfixed_position_child (GtkMyFixed
*myfixed
,
849 GtkMyFixedChild
*child
)
854 x
= child
->x
- myfixed
->xoffset
;
855 y
= child
->y
- myfixed
->yoffset
;
857 if (IS_ONSCREEN (x
,y
))
859 if (GTK_WIDGET_MAPPED (myfixed
) &&
860 GTK_WIDGET_VISIBLE (child
->widget
))
862 if (!GTK_WIDGET_MAPPED (child
->widget
))
863 gtk_widget_map (child
->widget
);
866 if (GTK_WIDGET_IS_OFFSCREEN (child
->widget
))
867 GTK_PRIVATE_UNSET_FLAG (child
->widget
, GTK_IS_OFFSCREEN
);
871 if (!GTK_WIDGET_IS_OFFSCREEN (child
->widget
))
872 GTK_PRIVATE_SET_FLAG (child
->widget
, GTK_IS_OFFSCREEN
);
874 if (GTK_WIDGET_MAPPED (child
->widget
))
875 gtk_widget_unmap (child
->widget
);
880 gtk_myfixed_allocate_child (GtkMyFixed
*myfixed
,
881 GtkMyFixedChild
*child
)
883 GtkAllocation allocation
;
884 GtkRequisition requisition
;
886 allocation
.x
= child
->x
- myfixed
->xoffset
;
887 allocation
.y
= child
->y
- myfixed
->yoffset
;
888 gtk_widget_get_child_requisition (child
->widget
, &requisition
);
889 allocation
.width
= requisition
.width
;
890 allocation
.height
= requisition
.height
;
892 gtk_widget_size_allocate (child
->widget
, &allocation
);
896 gtk_myfixed_position_children (GtkMyFixed
*myfixed
)
900 tmp_list
= myfixed
->children
;
903 GtkMyFixedChild
*child
= tmp_list
->data
;
904 tmp_list
= tmp_list
->next
;
906 gtk_myfixed_position_child (myfixed
, child
);
911 gtk_myfixed_adjust_allocations_recurse (GtkWidget
*widget
,
914 GtkMyFixedAdjData
*data
= cb_data
;
916 widget
->allocation
.x
+= data
->dx
;
917 widget
->allocation
.y
+= data
->dy
;
919 if (GTK_WIDGET_NO_WINDOW (widget
) &&
920 GTK_IS_CONTAINER (widget
))
921 gtk_container_forall (GTK_CONTAINER (widget
),
922 gtk_myfixed_adjust_allocations_recurse
,
927 gtk_myfixed_adjust_allocations (GtkMyFixed
*myfixed
,
932 GtkMyFixedAdjData data
;
937 tmp_list
= myfixed
->children
;
940 GtkMyFixedChild
*child
= tmp_list
->data
;
941 tmp_list
= tmp_list
->next
;
943 child
->widget
->allocation
.x
+= dx
;
944 child
->widget
->allocation
.y
+= dy
;
946 if (GTK_WIDGET_NO_WINDOW (child
->widget
) &&
947 GTK_IS_CONTAINER (child
->widget
))
948 gtk_container_forall (GTK_CONTAINER (child
->widget
),
949 gtk_myfixed_adjust_allocations_recurse
,
956 /* Send a synthetic expose event to the widget
959 gtk_myfixed_expose_area (GtkMyFixed
*myfixed
,
960 gint x
, gint y
, gint width
, gint height
)
962 if (myfixed
->visibility
== GDK_VISIBILITY_UNOBSCURED
)
964 GdkEventExpose event
;
966 event
.type
= GDK_EXPOSE
;
967 event
.send_event
= TRUE
;
968 event
.window
= myfixed
->bin_window
;
973 event
.area
.width
= width
;
974 event
.area
.height
= height
;
976 gdk_window_ref (event
.window
);
977 gtk_widget_event (GTK_WIDGET (myfixed
), (GdkEvent
*)&event
);
978 gdk_window_unref (event
.window
);
982 /* This function is used to find events to process while scrolling
986 gtk_myfixed_expose_predicate (Display
*display
,
990 if ((xevent
->type
== Expose
) ||
991 ((xevent
->xany
.window
== *(Window
*)arg
) &&
992 (xevent
->type
== ConfigureNotify
)))
998 /* This is the main routine to do the scrolling. Scrolling is
999 * done by "Guffaw" scrolling, as in the Mozilla XFE, with
1000 * a few modifications.
1002 * The main improvement is that we keep track of whether we
1003 * are obscured or not. If not, we ignore the generated expose
1004 * events and instead do the exposes ourself, without having
1005 * to wait for a roundtrip to the server. This also provides
1006 * a limited form of expose-event compression, since we do
1007 * the affected area as one big chunk.
1011 gtk_myfixed_scroll (GtkMyFixed
*myfixed
, gint dx
, gint dy
)
1016 gint x
,y
,w
,h
,border
;
1018 widget
= GTK_WIDGET (myfixed
);
1020 myfixed
->xoffset
+= dx
;
1021 myfixed
->yoffset
+= dy
;
1023 if (!GTK_WIDGET_MAPPED (myfixed
))
1025 gtk_myfixed_position_children (myfixed
);
1029 gtk_myfixed_adjust_allocations (myfixed
, -dx
, -dy
);
1031 if (myfixed
->shadow_type
== GTK_MYSHADOW_NONE
)
1034 if (myfixed
->shadow_type
== GTK_MYSHADOW_THIN
)
1041 w
= widget
->allocation
.width
- 2*border
;
1042 h
= widget
->allocation
.height
- 2*border
;
1048 gdk_window_resize (myfixed
->bin_window
,
1051 gdk_window_move (myfixed
->bin_window
, x
-dx
, y
);
1052 gdk_window_move_resize (myfixed
->bin_window
, x
, y
, w
, h
);
1059 gtk_myfixed_expose_area (myfixed
,
1060 MAX ((gint
)w
- dx
, 0),
1069 gdk_window_move_resize (myfixed
->bin_window
,
1074 gdk_window_move (myfixed
->bin_window
, x
, y
);
1075 gdk_window_resize (myfixed
->bin_window
, w
, h
);
1082 gtk_myfixed_expose_area (myfixed
,
1093 gdk_window_resize (myfixed
->bin_window
, w
, h
+ dy
);
1094 gdk_window_move (myfixed
->bin_window
, x
, y
-dy
);
1095 gdk_window_move_resize (myfixed
->bin_window
,
1103 gtk_myfixed_expose_area (myfixed
,
1105 MAX ((gint
)h
- dy
, 0),
1113 gdk_window_move_resize (myfixed
->bin_window
,
1114 x
, y
+dy
, w
, h
- dy
);
1115 gdk_window_move (myfixed
->bin_window
, x
, y
);
1116 gdk_window_resize (myfixed
->bin_window
, w
, h
);
1122 gtk_myfixed_expose_area (myfixed
,
1126 MIN (-dy
, (gint
)h
));
1129 gtk_myfixed_position_children (myfixed
);
1131 /* We have to make sure that all exposes from this scroll get
1132 * processed before we scroll again, or the expose events will
1133 * have invalid coordinates.
1135 * We also do expose events for other windows, since otherwise
1136 * their updating will fall behind the scrolling
1138 * This also avoids a problem in pre-1.0 GTK where filters don't
1139 * have access to configure events that were compressed.
1143 while (XCheckIfEvent(GDK_WINDOW_XDISPLAY (myfixed
->bin_window
),
1145 gtk_myfixed_expose_predicate
,
1146 (XPointer
)&GDK_WINDOW_XWINDOW (myfixed
->bin_window
)))
1149 GtkWidget
*event_widget
;
1151 if ((xevent
.xany
.window
== GDK_WINDOW_XWINDOW (myfixed
->bin_window
)) &&
1152 (gtk_myfixed_filter (&xevent
, &event
, myfixed
) == GDK_FILTER_REMOVE
))
1155 if (xevent
.type
== Expose
)
1157 event
.expose
.window
= gdk_window_lookup (xevent
.xany
.window
);
1158 gdk_window_get_user_data (event
.expose
.window
,
1159 (gpointer
*)&event_widget
);
1163 event
.expose
.type
= GDK_EXPOSE
;
1164 event
.expose
.area
.x
= xevent
.xexpose
.x
;
1165 event
.expose
.area
.y
= xevent
.xexpose
.y
;
1166 event
.expose
.area
.width
= xevent
.xexpose
.width
;
1167 event
.expose
.area
.height
= xevent
.xexpose
.height
;
1168 event
.expose
.count
= xevent
.xexpose
.count
;
1170 gdk_window_ref (event
.expose
.window
);
1171 gtk_widget_event (event_widget
, &event
);
1172 gdk_window_unref (event
.expose
.window
);
1178 /* The main event filter. Actually, we probably don't really need
1179 * to install this as a filter at all, since we are calling it
1180 * directly above in the expose-handling hack. But in case scrollbars
1181 * are fixed up in some manner...
1183 * This routine identifies expose events that are generated when
1184 * we've temporarily moved the bin_window_origin, and translates
1185 * them or discards them, depending on whether we are obscured
1188 static GdkFilterReturn
1189 gtk_myfixed_filter (GdkXEvent
*gdk_xevent
,
1194 GtkMyFixed
*myfixed
;
1196 xevent
= (XEvent
*)gdk_xevent
;
1197 myfixed
= GTK_MYFIXED (data
);
1199 switch (xevent
->type
)
1202 if (xevent
->xexpose
.serial
== myfixed
->configure_serial
)
1204 if (myfixed
->visibility
== GDK_VISIBILITY_UNOBSCURED
)
1205 return GDK_FILTER_REMOVE
;
1208 xevent
->xexpose
.x
+= myfixed
->scroll_x
;
1209 xevent
->xexpose
.y
+= myfixed
->scroll_y
;
1216 case ConfigureNotify
:
1217 if ((xevent
->xconfigure
.x
!= 0) || (xevent
->xconfigure
.y
!= 0))
1219 myfixed
->configure_serial
= xevent
->xconfigure
.serial
;
1220 myfixed
->scroll_x
= xevent
->xconfigure
.x
;
1221 myfixed
->scroll_y
= xevent
->xconfigure
.y
;
1226 return GDK_FILTER_CONTINUE
;
1229 /* Although GDK does have a GDK_VISIBILITY_NOTIFY event,
1230 * there is no corresponding event in GTK, so we have
1231 * to get the events from a filter
1233 static GdkFilterReturn
1234 gtk_myfixed_main_filter (GdkXEvent
*gdk_xevent
,
1239 GtkMyFixed
*myfixed
;
1241 xevent
= (XEvent
*)gdk_xevent
;
1242 myfixed
= GTK_MYFIXED (data
);
1244 if (xevent
->type
== VisibilityNotify
)
1246 switch (xevent
->xvisibility
.state
)
1248 case VisibilityFullyObscured
:
1249 myfixed
->visibility
= GDK_VISIBILITY_FULLY_OBSCURED
;
1252 case VisibilityPartiallyObscured
:
1253 myfixed
->visibility
= GDK_VISIBILITY_PARTIAL
;
1256 case VisibilityUnobscured
:
1257 myfixed
->visibility
= GDK_VISIBILITY_UNOBSCURED
;
1261 return GDK_FILTER_REMOVE
;
1265 return GDK_FILTER_CONTINUE
;
1273 #endif /* __cplusplus */