fix .desktop file
[gconf-editor] / src / gconf-bookmarks-dialog.h
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /*
3  * Copyright (C) 2001, 2002 Anders Carlsson <andersca@gnu.org>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #ifndef __GCONF_BOOKMARKS_DIALOG_H__
21 #define __GCONF_BOOKMARKS_DIALOG_H__
22
23 #include <gtk/gtk.h>
24
25 #define GCONF_TYPE_BOOKMARKS_DIALOG               (gconf_bookmarks_dialog_get_type ())
26 #define GCONF_BOOKMARKS_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCONF_TYPE_BOOKMARKS_DIALOG, GConfBookmarksDialog))
27 #define GCONF_BOOKMARKS_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GCONF_TYPE_BOOKMARKS_DIALOG, GConfBookmarksDialogClass))
28 #define GCONF_IS_BOOKMARKS_DIALOG(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCONF_TYPE_BOOKMARKS_DIALOG))
29 #define GCONF_IS_BOOKMARKS_DIALOG_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((obj), GCONF_TYPE_BOOKMARKS_DIALOG))
30 #define GCONF_BOOKMARKS_DIALOG_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GCONF_TYPE_BOOKMARKS_DIALOG, GConfBookmarksDialogClass))
31
32 typedef struct _GConfBookmarksDialog GConfBookmarksDialog;
33 typedef struct _GConfBookmarksDialogClass GConfBookmarksDialogClass;
34
35 struct _GConfBookmarksDialog {
36         GtkDialog parent_instance;
37
38         GtkWidget *tree_view;
39         GtkListStore *list_store;
40         
41         GtkWidget *delete_button;
42
43         gboolean changing_model;
44         gboolean changing_key;
45         guint notify_id;
46 };
47
48 struct _GConfBookmarksDialogClass {
49         GtkDialogClass parent_class;
50 };
51
52 GType gconf_bookmarks_dialog_get_type (void);
53 GtkWidget *gconf_bookmarks_dialog_new (GtkWindow *parent);
54
55 #endif /* __GCONF_BOOKMARKS_DIALOG_H__ */
56