RAGS - v1.10.0
    Preparing search index...

    Type Alias EventBoxProps<Child, Attr, Self>

    EventBoxProps: BaseProps<
        Self,
        Gtk.EventBox.ConstructorProps & {
            child?: Child;
            on_hover?: EventHandler<Self>;
            on_hover_lost?: EventHandler<Self>;
            on_middle_click?: EventHandler<Self>;
            on_middle_click_release?: EventHandler<Self>;
            on_primary_click?: EventHandler<Self>;
            on_primary_click_release?: EventHandler<Self>;
            on_scroll_down?: EventHandler<Self>;
            on_scroll_up?: EventHandler<Self>;
            on_secondary_click?: EventHandler<Self>;
            on_secondary_click_release?: EventHandler<Self>;
        },
        Attr,
    >

    Props for the EventBox widget with hover, click, and scroll handlers.

    Type Parameters