Updated Spanish translation
[anjuta-git-plugin.git] / plugins / project-manager / plugin.h
blobb9c9bfd542add4eacad906fa4aa645533631786c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 plugin.h
4 Copyright (C) 2000 Naba Kumar
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef _PROJECT_MANAGER_PLUGIN_H_
22 #define _PROJECT_MANAGER_PLUGIN_H_
24 #include <libanjuta/anjuta-plugin.h>
25 #include <gbf/gbf-project.h>
26 #include <gbf/gbf-project-model.h>
27 #include <gbf/gbf-project-view.h>
29 extern GType project_manager_plugin_get_type (GTypeModule *module);
30 #define ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER (project_manager_plugin_get_type (NULL))
31 #define ANJUTA_PLUGIN_PROJECT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER, ProjectManagerPlugin))
32 #define ANJUTA_PLUGIN_PROJECT_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER, ProjectManagerPluginClass))
33 #define ANJUTA_IS_PLUGIN_PROJECT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER))
34 #define ANJUTA_IS_PLUGIN_PROJECT_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER))
35 #define ANJUTA_PLUGIN_PROJECT_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ANJUTA_TYPE_PLUGIN_PROJECT_MANAGER, ProjectManagerPluginClass))
37 typedef struct _ProjectManagerPlugin ProjectManagerPlugin;
38 typedef struct _ProjectManagerPluginClass ProjectManagerPluginClass;
40 struct _ProjectManagerPlugin{
41 AnjutaPlugin parent;
43 AnjutaUI *ui;
44 AnjutaPreferences *prefs;
45 GbfProject *project;
46 GtkWidget *view;
47 GbfProjectModel *model;
48 GtkWidget *scrolledwindow;
50 GtkActionGroup *pm_action_group;
51 GtkActionGroup *popup_action_group;
52 gint merge_id;
54 gint fm_watch_id;
55 gint editor_watch_id;
57 gchar *fm_current_uri;
58 gchar *current_editor_uri;
59 gchar *project_root_uri;
60 gchar *project_uri;
62 /* Update state recording */
63 GList *pre_update_sources;
64 GList *pre_update_targets;
65 GList *pre_update_groups;
67 /* Session flag */
68 gboolean session_by_me;
70 /* Idle callback id */
71 guint close_project_idle;
74 struct _ProjectManagerPluginClass{
75 AnjutaPluginClass parent_class;
78 #endif