From 5185103c7acac7f6f291bbd5f7c969c8809237e7 Mon Sep 17 00:00:00 2001 From: Konstantin Pugin Date: Fri, 20 Jun 2014 00:34:43 +0700 Subject: Fix expanded panels and size allocation --- libmate-panel-applet/mate-panel-applet.c | 8 ++++++-- libmate-panel-applet/mate-panel-applet.h | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'libmate-panel-applet') diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c index 7a514c58..34f10a5f 100644 --- a/libmate-panel-applet/mate-panel-applet.c +++ b/libmate-panel-applet/mate-panel-applet.c @@ -2133,7 +2133,9 @@ mate_panel_applet_class_init (MatePanelAppletClass *klass) g_param_spec_uint ("orient", "Orient", "Panel Applet Orientation", - 0, G_MAXUINT, 0, /* FIXME */ + MATE_PANEL_APPLET_ORIENT_FIRST, + MATE_PANEL_APPLET_ORIENT_LAST, + MATE_PANEL_APPLET_ORIENT_UP, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_SIZE, @@ -2154,7 +2156,9 @@ mate_panel_applet_class_init (MatePanelAppletClass *klass) g_param_spec_uint ("flags", "Flags", "Panel Applet flags", - 0, G_MAXUINT, 0, /* FIXME */ + MATE_PANEL_APPLET_FLAGS_NONE, + MATE_PANEL_APPLET_FLAGS_ALL, + MATE_PANEL_APPLET_FLAGS_NONE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_SIZE_HINTS, diff --git a/libmate-panel-applet/mate-panel-applet.h b/libmate-panel-applet/mate-panel-applet.h index a5f91be2..1842164d 100644 --- a/libmate-panel-applet/mate-panel-applet.h +++ b/libmate-panel-applet/mate-panel-applet.h @@ -42,6 +42,8 @@ typedef enum { MATE_PANEL_APPLET_ORIENT_DOWN, MATE_PANEL_APPLET_ORIENT_LEFT, MATE_PANEL_APPLET_ORIENT_RIGHT +#define MATE_PANEL_APPLET_ORIENT_FIRST MATE_PANEL_APPLET_ORIENT_UP +#define MATE_PANEL_APPLET_ORIENT_LAST MATE_PANEL_APPLET_ORIENT_RIGHT } MatePanelAppletOrient; #define PANEL_TYPE_APPLET (mate_panel_applet_get_type ()) @@ -62,6 +64,7 @@ typedef enum { MATE_PANEL_APPLET_EXPAND_MAJOR = 1 << 0, MATE_PANEL_APPLET_EXPAND_MINOR = 1 << 1, MATE_PANEL_APPLET_HAS_HANDLE = 1 << 2 +#define MATE_PANEL_APPLET_FLAGS_ALL (MATE_PANEL_APPLET_EXPAND_MAJOR|MATE_PANEL_APPLET_EXPAND_MINOR|MATE_PANEL_APPLET_HAS_HANDLE) } MatePanelAppletFlags; typedef struct _MatePanelApplet MatePanelApplet; -- cgit v1.2.1