summaryrefslogtreecommitdiff
path: root/src/appfinder-preferences.h
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2011-08-01 19:49:37 +0200
committerNick Schermer <nick@xfce.org>2011-09-20 21:54:21 +0200
commit5149c5c98de6c71943e51a1a131a9dcb573da662 (patch)
treee76b2266c4ebdefc0dfc94cb0477d7622361c5ee /src/appfinder-preferences.h
parentc68f8e7784306070b7d9a0ed7aa33b47b1ac8270 (diff)
downloadxfce4-appfinder-5149c5c98de6c71943e51a1a131a9dcb573da662.tar.gz
Add properties dialog with basic settings.
Diffstat (limited to 'src/appfinder-preferences.h')
-rw-r--r--src/appfinder-preferences.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/appfinder-preferences.h b/src/appfinder-preferences.h
new file mode 100644
index 0000000..301e3de
--- /dev/null
+++ b/src/appfinder-preferences.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2011 Nick Schermer <nick@xfce.org>
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef __XFCE_APPFINDER_PREFERENCES_H__
+#define __XFCE_APPFINDER_PREFERENCES_H__
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+typedef struct _XfceAppfinderPreferencesClass XfceAppfinderPreferencesClass;
+typedef struct _XfceAppfinderPreferences XfceAppfinderPreferences;
+
+#define XFCE_TYPE_APPFINDER_PREFERENCES (xfce_appfinder_preferences_get_type ())
+#define XFCE_APPFINDER_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferences))
+#define XFCE_APPFINDER_PREFERENCES_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferencesClass))
+#define XFCE_IS_APPFINDER_PREFERENCES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_APPFINDER_PREFERENCES))
+#define XFCE_IS_APPFINDER_PREFERENCES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_APPFINDER_PREFERENCES))
+#define XFCE_APPFINDER_PREFERENCES_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_APPFINDER_PREFERENCES, XfceAppfinderPreferencesClass))
+
+GType xfce_appfinder_preferences_get_type (void) G_GNUC_CONST;
+
+void xfce_appfinder_preferences_show (GdkScreen *screen);
+
+G_END_DECLS
+
+#endif /* !__XFCE_APPFINDER_PREFERENCES_H__ */