/* * panel-menu.h: A GtkMenu with an ugly stripe down the side * * Copyright (C) 2003 Sun Microsystems, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * Authors: * Mark McLoughlin * Erwann Chenede */ #ifndef __PANEL_MENU_H__ #define __PANEL_MENU_H__ #include G_BEGIN_DECLS #define PANEL_TYPE_MENU (panel_menu_get_type ()) #define PANEL_MENU(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PANEL_TYPE_MENU, PanelMenu)) #define PANEL_MENU_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PANEL_TYPE_MENU, PanelMenuClass)) #define PANEL_IS_MENU(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PANEL_TYPE_MENU)) #define PANEL_IS_MENU_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PANEL_TYPE_MENU)) #define PANEL_MENU_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PANEL_TYPE_MENU, PanelMenuClass)) typedef struct _PanelMenu PanelMenu; typedef struct _PanelMenuClass PanelMenuClass; typedef struct _PanelMenuPrivate PanelMenuPrivate; struct _PanelMenu { GtkMenu parent_instance; PanelMenuPrivate *priv; }; struct _PanelMenuClass { GtkMenuClass parent_class; }; GType panel_menu_get_type (void) G_GNUC_CONST; GtkWidget *panel_menu_new (gboolean stripe_enabled); void panel_menu_set_stripe_enabled (PanelMenu *menu, gboolean stripe_enabled); gboolean panel_menu_get_stripe_enabled (PanelMenu *menu); G_END_DECLS #endif /* __PANEL_MENU_H__ */