aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-page-menu-action.h
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-01-17 07:23:12 +0800
committerXan Lopez <xan@igalia.com>2012-01-17 07:23:12 +0800
commita24c1cee4db530a0a9b2a833e41d726497d642a0 (patch)
treec409ad397fdea07e7e4b45887e0785affd22688f /src/ephy-page-menu-action.h
parent390196098579f2b5ad70d43b738e04184d9cbac1 (diff)
downloadgsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar.gz
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar.bz2
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar.lz
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar.xz
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.tar.zst
gsoc2013-epiphany-a24c1cee4db530a0a9b2a833e41d726497d642a0.zip
ephy-page-menu: set a style class when our menu is visible
To aid with styling.
Diffstat (limited to 'src/ephy-page-menu-action.h')
-rw-r--r--src/ephy-page-menu-action.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/ephy-page-menu-action.h b/src/ephy-page-menu-action.h
index c510f944b..ca96d73c3 100644
--- a/src/ephy-page-menu-action.h
+++ b/src/ephy-page-menu-action.h
@@ -34,15 +34,18 @@ G_BEGIN_DECLS
#define EPHY_IS_PAGE_MENU_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EPHY_TYPE_PAGE_MENU_ACTION))
#define EPHY_PAGE_MENU_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EPHY_TYPE_PAGE_MENU_ACTION, EphyPageMenuActionClass))
-typedef struct _EphyPageMenuAction EphyPageMenuAction;
-typedef struct _EphyPageMenuActionClass EphyPageMenuActionClass;
+typedef struct _EphyPageMenuAction EphyPageMenuAction;
+typedef struct _EphyPageMenuActionClass EphyPageMenuActionClass;
+typedef struct _EphyPageMenuActionPrivate EphyPageMenuActionPrivate;
struct _EphyPageMenuActionClass {
- EphyWindowActionClass parent_class;
+ EphyWindowActionClass parent_class;
};
struct _EphyPageMenuAction {
- EphyWindowAction parent_instance;
+ EphyWindowAction parent_instance;
+
+ EphyPageMenuActionPrivate *priv;
};
GType ephy_page_menu_action_get_type (void) G_GNUC_CONST;