indentation-c-style: Update preferences UI file to gtk+-3
[anjuta.git] / plugins / project-manager / project-chooser.h
blob70af996b97fa3322f5d18aaad5fed42157437354
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4; coding: utf-8 -*- */
3 /* project-chooser.h
5 * Copyright (C) 2011 Sébastien Granjoux
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public
18 * License along with this program; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 #ifndef _PM_CHOOSER_H_
25 #define _PM_CHOOSER_H_
27 #include <gtk/gtk.h>
29 #include "libanjuta/anjuta-tree-combo.h"
31 G_BEGIN_DECLS
33 #define ANJUTA_TYPE_PM_CHOOSER_BUTTON (anjuta_pm_chooser_button_get_type ())
34 #define ANJUTA_PM_CHOOSER_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_PM_CHOOSER_BUTTON, AnjutaPmChooserButton))
35 #define ANJUTA_PM_CHOOSER_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_PM_CHOOSER_BUTTON, AnjutaPmChooserButtonClass))
36 #define ANJUTA_IS_PM_CHOOSER_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_PM_CHOOSER_BUTTON))
37 #define ANJUTA_IS_PM_CHOOSER_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_PM_CHOOSER_BUTTON))
38 #define ANJUTA_PM_CHOOSER_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_PM_CHOOSER_BUTTON, AnjutaPmChooserButtonClass))
40 typedef struct _AnjutaPmChooserButton AnjutaPmChooserButton;
41 typedef struct _AnjutaPmChooserButtonPrivate AnjutaPmChooserButtonPrivate;
42 typedef struct _AnjutaPmChooserButtonClass AnjutaPmChooserButtonClass;
44 struct _AnjutaPmChooserButton
46 AnjutaTreeComboBox parent;
48 /*< private >*/
49 AnjutaPmChooserButtonPrivate *priv;
52 struct _AnjutaPmChooserButtonClass
54 /*< private >*/
55 AnjutaTreeComboBoxClass parent_class;
59 GType anjuta_pm_chooser_button_get_type (void) G_GNUC_CONST;
61 GtkWidget * anjuta_pm_chooser_button_new (void);
63 void anjuta_pm_chooser_button_register (GTypeModule *module);
66 G_END_DECLS
68 #endif /* _ANJUTA_PM_CHOOSER_BUTTON_H_ */