1 /* 2 * Copyright (C) 2011 Nick Schermer <nick@xfce.org> 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License along 15 * with this program; if not, write to the Free Software Foundation, Inc., 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 17 */ 18 19 #ifndef __XFCE_APPFINDER_PREFERENCES_H__ 20 #define __XFCE_APPFINDER_PREFERENCES_H__ 21 22 #include <gtk/gtk.h> 23 24 G_BEGIN_DECLS 25 26 typedef struct _XfceAppfinderPreferencesClass XfceAppfinderPreferencesClass; 27 typedef struct _XfceAppfinderPreferences XfceAppfinderPreferences; 28 29 #define XFCE_TYPE_APPFINDER_PREFERENCES (xfce_appfinder_preferences_get_type ()) 30 #define XFCE_APPFINDER_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferences)) 31 #define XFCE_APPFINDER_PREFERENCES_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferencesClass)) 32 #define XFCE_IS_APPFINDER_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_APPFINDER_PREFERENCES)) 33 #define XFCE_IS_APPFINDER_PREFERENCES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_APPFINDER_PREFERENCES)) 34 #define XFCE_APPFINDER_PREFERENCES_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferencesClass)) 35 36 GType xfce_appfinder_preferences_get_type (void) G_GNUC_CONST; 37 38 void xfce_appfinder_preferences_show (GdkScreen *screen); 39 40 G_END_DECLS 41 42 #endif /* !__XFCE_APPFINDER_PREFERENCES_H__ */ 43