1 /*
2  *  fm-ditem-page.h - A property page for desktop items
3  *
4  *  Copyright (C) 2004 James Willcox
5  *
6  *  This library is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU General Public
8  *  License as published by the Free Software Foundation; either
9  *  version 2 of the License, or (at your option) any later version.
10  *
11  *  This library is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  *  Library General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public
17  *  License along with this library; if not, write to the Free
18  *  Software Foundation, Inc., 51 Franklin Street, Suite 500, MA 02110-1335, USA.
19  *
20  *  Authors: James Willcox <james@gnome.org>
21  *
22  */
23 
24 #ifndef NEMO_DESKTOP_ITEM_PROPERTIES_H
25 #define NEMO_DESKTOP_ITEM_PROPERTIES_H
26 
27 #include <glib.h>
28 #include <glib-object.h>
29 #include <gtk/gtk.h>
30 
31 G_BEGIN_DECLS
32 
33 /* This is a mis-nomer. Launcher editables initially were displayed on separate
34  * a property notebook page, which implemented the NemoPropertyPageProvider
35  * interface.
36  *
37  * Nowadays, they are displayed on the "Basic" page, so just the setup
38  * routines are left.
39  */
40 
41 GtkWidget *nemo_desktop_item_properties_make_box (GtkSizeGroup *label_size_group,
42                                                       GList *files);
43 gboolean   nemo_desktop_item_properties_should_show (GList *files);
44 
45 G_END_DECLS
46 
47 #endif /* NEMO_DESKTOP_ITEM_PROPERTIES_H */
48