diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2004-04-03 06:41:41 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2004-04-03 06:41:41 +0800 |
commit | 76b869d6e0ff46160db9175408c3a0a0ea138bea (patch) | |
tree | 281074e43251b3707eeabe416ca42d371826a27b /lib/egg/egg-toolbars-model.h | |
parent | 1d907809af0cd53713c8e8891e686acaa104ad8f (diff) | |
download | gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar.gz gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar.bz2 gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar.lz gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar.xz gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.tar.zst gsoc2013-epiphany-76b869d6e0ff46160db9175408c3a0a0ea138bea.zip |
Synchronise changes from galeon, this fixes simple usage, stops crashes
2004-04-03 Crispin Flowerday <gnome@flowerday.cx>
* lib/egg/egg-editable-toolbar.c: (set_fixed_style),
(unset_fixed_style), (toolbar_changed_cb), (unparent_fixed),
(update_fixed), (toolbars_clean), (egg_editable_toolbar_construct),
(egg_editable_toolbar_set_model):
* lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_load_actions):
* lib/egg/egg-toolbars-model.h:
Synchronise changes from galeon, this fixes simple usage, stops
crashes when dragging items to and from other applications, and
adds the ability to override the toolbar style.
Diffstat (limited to 'lib/egg/egg-toolbars-model.h')
-rwxr-xr-x | lib/egg/egg-toolbars-model.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/egg/egg-toolbars-model.h b/lib/egg/egg-toolbars-model.h index 07146cb38..1f5451585 100755 --- a/lib/egg/egg-toolbars-model.h +++ b/lib/egg/egg-toolbars-model.h @@ -42,7 +42,10 @@ typedef struct EggToolbarsModelPrivate EggToolbarsModelPrivate; typedef enum { EGG_TB_MODEL_NOT_REMOVABLE = 1 << 0, - EGG_TB_MODEL_ICONS_ONLY = 1 << 1 + EGG_TB_MODEL_ICONS_ONLY = 1 << 1, + EGG_TB_MODEL_TEXT_ONLY = 1 << 2, + EGG_TB_MODEL_ICONS_TEXT = 1 << 3, + EGG_TB_MODEL_ICONS_TEXT_HORIZ = 1 << 4, } EggTbModelFlags; struct EggToolbarsModel |