Blame src/nautilus-desktop-item-properties.h

Packit a189e0
/*
Packit a189e0
 *  fm-ditem-page.h - A property page for desktop items
Packit a189e0
 * 
Packit a189e0
 *  Copyright (C) 2004 James Willcox
Packit a189e0
 *
Packit a189e0
 *  This library is free software; you can redistribute it and/or
Packit a189e0
 *  modify it under the terms of the GNU General Public
Packit a189e0
 *  License as published by the Free Software Foundation; either
Packit a189e0
 *  version 2 of the License, or (at your option) any later version.
Packit a189e0
 *
Packit a189e0
 *  This library is distributed in the hope that it will be useful,
Packit a189e0
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a189e0
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a189e0
 *  Library General Public License for more details.
Packit a189e0
 *
Packit a189e0
 *  You should have received a copy of the GNU General Public
Packit a189e0
 *  License along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit a189e0
 *
Packit a189e0
 *  Authors: James Willcox <james@gnome.org>
Packit a189e0
 * 
Packit a189e0
 */
Packit a189e0
Packit a189e0
#ifndef NAUTILUS_DESKTOP_ITEM_PROPERTIES_H
Packit a189e0
#define NAUTILUS_DESKTOP_ITEM_PROPERTIES_H
Packit a189e0
Packit a189e0
#include <glib.h>
Packit a189e0
#include <glib-object.h>
Packit a189e0
#include <gtk/gtk.h>
Packit a189e0
Packit a189e0
G_BEGIN_DECLS
Packit a189e0
Packit a189e0
/* This is a mis-nomer. Launcher editables initially were displayed on separate
Packit a189e0
 * a property notebook page, which implemented the NautilusPropertyPageProvider
Packit a189e0
 * interface.
Packit a189e0
 *
Packit a189e0
 * Nowadays, they are displayed on the "Basic" page, so just the setup
Packit a189e0
 * routines are left.
Packit a189e0
 */
Packit a189e0
Packit a189e0
GtkWidget *nautilus_desktop_item_properties_make_box (GtkSizeGroup *label_size_group,
Packit a189e0
                                                      GList *files);
Packit a189e0
gboolean   nautilus_desktop_item_properties_should_show (GList *files);
Packit a189e0
Packit a189e0
G_END_DECLS
Packit a189e0
Packit a189e0
#endif /* NAUTILUS_DESKTOP_ITEM_PROPERTIES_H */