summaryrefslogtreecommitdiff
path: root/gladeui/glade-named-icon-chooser-dialog.h
blob: f42db3488c5faba606d892e1fedf31e73d0271bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * glade-named-icon-chooser-dialog.h - Named icon chooser dialog
 *
 * Copyright (C) 2007 Vincent Geddes
 *
 * Author:  Vincent Geddes <vgeddes@gnome.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
 * MERCHANNAMED_ICON_CHOOSERILITY 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 __GLADE_NAMED_ICON_CHOOSER_DIALOG_H__
#define __GLADE_NAMED_ICON_CHOOSER_DIALOG_H__

#include <gtk/gtk.h>

G_BEGIN_DECLS

#define GLADE_TYPE_NAMED_ICON_CHOOSER_DIALOG glade_named_icon_chooser_dialog_get_type ()
G_DECLARE_DERIVABLE_TYPE (GladeNamedIconChooserDialog, glade_named_icon_chooser_dialog, GLADE, NAMED_ICON_CHOOSER_DIALOG, GtkDialog)

struct _GladeNamedIconChooserDialogClass
{
  GtkDialogClass parent_class;

  void  (* icon_activated)      (GladeNamedIconChooserDialog *dialog);

  void  (* selection_changed)   (GladeNamedIconChooserDialog *dialog);

  gpointer padding[4];
};

GtkWidget  *glade_named_icon_chooser_dialog_new            (const gchar      *title,
                                                            GtkWindow        *parent,
                                                            const gchar      *first_button_text,
                                                            ...) G_GNUC_NULL_TERMINATED;

gchar      *glade_named_icon_chooser_dialog_get_icon_name  (GladeNamedIconChooserDialog *chooser);

void        glade_named_icon_chooser_dialog_set_icon_name  (GladeNamedIconChooserDialog *chooser,
                                                            const gchar                 *icon_name);

gboolean    glade_named_icon_chooser_dialog_set_context    (GladeNamedIconChooserDialog *chooser,
                                                            const gchar                 *context);

gchar      *glade_named_icon_chooser_dialog_get_context    (GladeNamedIconChooserDialog *chooser);

G_END_DECLS

#endif /* __GLADE_NAMED_ICON_CHOOSER_DIALOG_H__ */