diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-03 22:02:41 -0800 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-03 22:02:41 -0800 |
commit | 60ea7aa0f6219a69d05b658cba562d1e2c6104e2 (patch) | |
tree | 30107d5272dc0eb1226e314b5f160899059a6e97 /src/slider-menu-item.h | |
parent | 54209010fc5b99fd7074ae1271cfea86abaea5c6 (diff) | |
download | ayatana-indicator-sound-60ea7aa0f6219a69d05b658cba562d1e2c6104e2.tar.gz ayatana-indicator-sound-60ea7aa0f6219a69d05b658cba562d1e2c6104e2.tar.bz2 ayatana-indicator-sound-60ea7aa0f6219a69d05b658cba562d1e2c6104e2.zip |
slider now works from the safe side of the dbusmenu
Diffstat (limited to 'src/slider-menu-item.h')
-rw-r--r-- | src/slider-menu-item.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/slider-menu-item.h b/src/slider-menu-item.h new file mode 100644 index 0000000..48e71ff --- /dev/null +++ b/src/slider-menu-item.h @@ -0,0 +1,54 @@ +/* +Copyright 2010 Canonical Ltd. + +Authors: + Conor Curran <conor.curran@canonical.com> + Ted Gould <ted@canonical.com> + +This program is free software: you can redistribute it and/or modify it +under the terms of the GNU General Public License version 3, as published +by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranties of +MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR +PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program. If not, see <http://www.gnu.org/licenses/>. +*/ +#ifndef __SLIDER_MENU_ITEM_H__ +#define __SLIDER_MENU_ITEM_H__ + +#include <glib.h> +#include <glib-object.h> + +#include <libdbusmenu-glib/menuitem.h> + +G_BEGIN_DECLS + +#define SLIDER_MENU_ITEM_TYPE (slider_menu_item_get_type ()) +#define SLIDER_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SLIDER_MENU_ITEM_TYPE, SliderMenuItem)) +#define SLIDER_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SLIDER_MENU_ITEM_TYPE, SliderMenuItemClass)) +#define IS_SLIDER_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SLIDER_MENU_ITEM_TYPE)) +#define IS_SLIDER_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SLIDER_MENU_ITEM_TYPE)) +#define SLIDER_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SLIDER_MENU_ITEM_TYPE, SliderMenuItemClass)) + +typedef struct _SliderMenuItem SliderMenuItem; +typedef struct _SliderMenuItemClass SliderMenuItemClass; + +struct _SliderMenuItemClass { + DbusmenuMenuitemClass parent_class; +}; + +struct _SliderMenuItem { + DbusmenuMenuitem parent; +}; + +GType slider_menu_item_get_type (void); +SliderMenuItem* slider_menu_item_new(gboolean sinks_available, gdouble current_vol); + +G_END_DECLS + +#endif + |