diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-05-06 00:08:04 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-05-06 00:08:04 +0800 |
commit | 7457f676155191be13664f62ccbe2e1fcb184de4 (patch) | |
tree | 9016424e330af2cbda9c28872d178848d3da60e3 /lib/egg/egg-toolbar-editor.h | |
parent | 781a2569005c985af2ac82f329fc35d9e0e5d268 (diff) | |
download | gsoc2013-epiphany-7457f676155191be13664f62ccbe2e1fcb184de4.tar.gz gsoc2013-epiphany-7457f676155191be13664f62ccbe2e1fcb184de4.tar.zst gsoc2013-epiphany-7457f676155191be13664f62ccbe2e1fcb184de4.zip |
Update (removing toolbars with context menu works again).
2003-05-05 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/egg/egg-editable-toolbar.c:
* lib/egg/egg-toolbar-editor.c:
* lib/egg/egg-toolbar-editor.h:
* lib/egg/egg-toolbars-model.c:
* lib/egg/egg-toolbars-model.h:
Update (removing toolbars with context menu works again).
* src/window-commands.c: (toolbar_editor_help_cb),
(window_cmd_edit_toolbar):
Build the tbe dialog, update for new egg api.
Fix position of new toolbars to be before bookmarks toolbar.
Diffstat (limited to 'lib/egg/egg-toolbar-editor.h')
-rwxr-xr-x | lib/egg/egg-toolbar-editor.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/egg/egg-toolbar-editor.h b/lib/egg/egg-toolbar-editor.h index 6c6861153..b351fcb89 100755 --- a/lib/egg/egg-toolbar-editor.h +++ b/lib/egg/egg-toolbar-editor.h @@ -19,7 +19,7 @@ #ifndef EGG_TOOLBAR_EDITOR_H #define EGG_TOOLBAR_EDITOR_H -#include <gtk/gtkdialog.h> +#include <gtk/gtkvbox.h> #include "egg-menu-merge.h" #include "egg-toolbars-model.h" @@ -41,19 +41,18 @@ typedef struct EggToolbarEditorPrivate EggToolbarEditorPrivate; struct EggToolbarEditor { - GtkDialog parent_object; + GtkVBox parent_object; EggToolbarEditorPrivate *priv; }; struct EggToolbarEditorClass { - GtkDialogClass parent_class; + GtkVBoxClass parent_class; }; GType egg_toolbar_editor_get_type (void); -GtkWidget *egg_toolbar_editor_new (GtkWindow *parent, - EggMenuMerge *merge, +GtkWidget *egg_toolbar_editor_new (EggMenuMerge *merge, EggToolbarsModel *model); void egg_toolbar_editor_load_actions (EggToolbarEditor *editor, const char *xml_file); |