diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-24 23:25:44 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-24 23:25:44 +0800 |
commit | 4e1fe266e73c23d628ebf4765ae931a7b91b4e3f (patch) | |
tree | 6a8e246b945d4af7666c5729f45882ce36e94acb /shell/e-task-widget.h | |
parent | ea40bb0823d313579eb992f441d6fd08f7ef23a7 (diff) | |
download | gsoc2013-evolution-4e1fe266e73c23d628ebf4765ae931a7b91b4e3f.tar.gz gsoc2013-evolution-4e1fe266e73c23d628ebf4765ae931a7b91b4e3f.tar.zst gsoc2013-evolution-4e1fe266e73c23d628ebf4765ae931a7b91b4e3f.zip |
Derive ETaskWidget from GtkEventBox instead of GtkFrame so that we can
get button_press events from it. Also, get the EActivtyHandler to
properly dispatch "Clicked" events when the user clicks on an
ETaskWidget.
svn path=/trunk/; revision=10450
Diffstat (limited to 'shell/e-task-widget.h')
-rw-r--r-- | shell/e-task-widget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-task-widget.h b/shell/e-task-widget.h index cc177252ce..dacb09fbdd 100644 --- a/shell/e-task-widget.h +++ b/shell/e-task-widget.h @@ -24,7 +24,7 @@ #ifndef _E_TASK_WIDGET_H_ #define _E_TASK_WIDGET_H_ -#include <gtk/gtkframe.h> +#include <gtk/gtkeventbox.h> #include <gdk-pixbuf/gdk-pixbuf.h> #ifdef __cplusplus @@ -44,13 +44,13 @@ typedef struct _ETaskWidgetPrivate ETaskWidgetPrivate; typedef struct _ETaskWidgetClass ETaskWidgetClass; struct _ETaskWidget { - GtkFrame parent; + GtkEventBox parent; ETaskWidgetPrivate *priv; }; struct _ETaskWidgetClass { - GtkFrameClass parent_class; + GtkEventBoxClass parent_class; }; |