* plugins/project-wizard/templates/terminal.wiz,
[anjuta-git-plugin.git] / src / shell.h
blobd951be617dc456d19958fcce620120ac7a71f0e4
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * shell.h
4 * Copyright (C) 2003 Naba Kumar <naba@gnome.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc., 59
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef _ANJUTA_TEST_SHELL_H_
22 #define _ANJUTA_TEST_SHELL_H_
24 #include <glib.h>
25 #include <gtk/gtkwindow.h>
26 #include <libanjuta/anjuta-ui.h>
27 #include <libanjuta/anjuta-preferences.h>
29 #define ANJUTA_TYPE_TEST_SHELL (anjuta_test_shell_get_type ())
30 #define ANJUTA_TEST_SHELL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ANJUTA_TYPE_TEST_SHELL, AnjutaTestShell))
31 #define ANJUTA_TEST_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), ANJUTA_TYPE_TEST_SHELL, AnjutaTestShellClass))
32 #define ANJUTA_IS_TEST_SHELL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ANJUTA_TYPE_TEST_SHELL))
33 #define ANJUTA_IS_TEST_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ANJUTA_TYPE_TEST_SHELL))
35 typedef struct _AnjutaTestShell AnjutaTestShell;
36 typedef struct _AnjutaTestShellClass AnjutaTestShellClass;
38 struct _AnjutaTestShell
40 GtkWindow parent;
41 GtkWidget *box;
43 GHashTable *values;
44 GHashTable *widgets;
45 AnjutaStatus *status;
46 AnjutaUI *ui;
47 AnjutaPreferences *preferences;
48 AnjutaPluginManager *plugin_manager;
50 gint merge_id;
53 struct _AnjutaTestShellClass {
54 GtkWindowClass klass;
57 GType anjuta_test_shell_get_type (void);
58 GtkWidget* anjuta_test_shell_new (void);
60 #endif