/* $Id: xfce-menu-rules.h 25273 2007-03-23 19:20:47Z jannis $ */ /*- * vi:set sw=2 sts=2 et ai cindent: * * Copyright (c) 2006-2007 Jannis Pohlmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #if !defined(LIBXFCE4MENU_INSIDE_LIBXFCE4MENU_H) && !defined(LIBXFCE4MENU_COMPILATION) #error "Only can be included directly. This file may disappear or change contents." #endif #ifndef __XFCE_MENU_RULES_H__ #define __XFCE_MENU_RULES_H__ #include G_BEGIN_DECLS; typedef struct _XfceMenuRules XfceMenuRules; typedef struct _XfceMenuRulesIface XfceMenuRulesIface; #define XFCE_TYPE_MENU_RULES (xfce_menu_rules_get_type ()) #define XFCE_MENU_RULES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_MENU_RULES, XfceMenuRules)) #define XFCE_IS_MENU_RULES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_MENU_RULES)) #define XFCE_MENU_RULES_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), XFCE_TYPE_MENU_RULES, XfceMenuRulesIface)) struct _XfceMenuRulesIface { GTypeInterface __parent__; /* Virtual methods */ gboolean (*match) (XfceMenuRules *rules, XfceMenuItem *item); void (*add_rules) (XfceMenuRules *rules, XfceMenuRules *additional_rules); void (*add_all) (XfceMenuRules *rules); void (*add_filename) (XfceMenuRules *rules, const gchar *filename); void (*add_category) (XfceMenuRules *rules, const gchar *category); }; GType xfce_menu_rules_get_type (void) G_GNUC_CONST; gboolean xfce_menu_rules_match (XfceMenuRules *rules, XfceMenuItem *item); void xfce_menu_rules_add_all (XfceMenuRules *rules); void xfce_menu_rules_add_rules (XfceMenuRules *rules, XfceMenuRules *additional_rules); void xfce_menu_rules_add_filename (XfceMenuRules *rules, const gchar *filename); void xfce_menu_rules_add_category (XfceMenuRules *rules, const gchar *category); G_END_DECLS; #endif /* !__XFCE_MENU_RULES_H__ */