forked from AuroraMiddleware/gtk
separatortoolitem: Remove button-event/motion-event handlers
These only exist for the window dragging which does not exist anymore currently. It will be reintroduced later in a form that does not require these handlers.
This commit is contained in:
parent
4c12c4ba02
commit
c4a6c37767
@ -88,10 +88,6 @@ static void gtk_separator_tool_item_realize (GtkWidget
|
||||
static void gtk_separator_tool_item_unrealize (GtkWidget *widget);
|
||||
static void gtk_separator_tool_item_map (GtkWidget *widget);
|
||||
static void gtk_separator_tool_item_unmap (GtkWidget *widget);
|
||||
static gboolean gtk_separator_tool_item_button_event (GtkWidget *widget,
|
||||
GdkEventButton *event);
|
||||
static gboolean gtk_separator_tool_item_motion_event (GtkWidget *widget,
|
||||
GdkEventMotion *event);
|
||||
|
||||
G_DEFINE_TYPE_WITH_PRIVATE (GtkSeparatorToolItem, gtk_separator_tool_item, GTK_TYPE_TOOL_ITEM)
|
||||
|
||||
@ -129,9 +125,6 @@ gtk_separator_tool_item_class_init (GtkSeparatorToolItemClass *class)
|
||||
widget_class->unrealize = gtk_separator_tool_item_unrealize;
|
||||
widget_class->map = gtk_separator_tool_item_map;
|
||||
widget_class->unmap = gtk_separator_tool_item_unmap;
|
||||
widget_class->button_press_event = gtk_separator_tool_item_button_event;
|
||||
widget_class->button_release_event = gtk_separator_tool_item_button_event;
|
||||
widget_class->motion_notify_event = gtk_separator_tool_item_motion_event;
|
||||
|
||||
toolitem_class->create_menu_proxy = gtk_separator_tool_item_create_menu_proxy;
|
||||
|
||||
@ -332,32 +325,6 @@ gtk_separator_tool_item_unmap (GtkWidget *widget)
|
||||
GTK_WIDGET_CLASS (gtk_separator_tool_item_parent_class)->unmap (widget);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_separator_tool_item_motion_event (GtkWidget *widget,
|
||||
GdkEventMotion *event)
|
||||
{
|
||||
GtkSeparatorToolItem *separator = GTK_SEPARATOR_TOOL_ITEM (widget);
|
||||
GtkSeparatorToolItemPrivate *priv = separator->priv;
|
||||
|
||||
/* We want window dragging to work on empty toolbar areas,
|
||||
* so we only eat button events on visible separators
|
||||
*/
|
||||
return priv->draw;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_separator_tool_item_button_event (GtkWidget *widget,
|
||||
GdkEventButton *event)
|
||||
{
|
||||
GtkSeparatorToolItem *separator = GTK_SEPARATOR_TOOL_ITEM (widget);
|
||||
GtkSeparatorToolItemPrivate *priv = separator->priv;
|
||||
|
||||
/* We want window dragging to work on empty toolbar areas,
|
||||
* so we only eat button events on visible separators
|
||||
*/
|
||||
return priv->draw;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gtk_separator_tool_item_draw (GtkWidget *widget,
|
||||
cairo_t *cr)
|
||||
|
Loading…
Reference in New Issue
Block a user