language-support-python: Use common settings for indentation
[anjuta.git] / plugins / language-support-python / plugin.h
blobb3ca2037fc2d208cda7d3adf188045c21b175c52
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * plugin.h
4 * Copyright (C) Ishan Chattopadhyaya 2009 <ichattopadhyaya@gmail.com>
5 *
6 * plugin.h is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
11 * any later version.
13 * plugin.h is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with plugin.h. If not, write to:
20 * The Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02110-1301, USA.
25 #ifndef _PYTHON_PLUGIN_H_
26 #define _PYTHON_PLUGIN_H_
28 #include <libanjuta/anjuta-plugin.h>
29 #include <libanjuta/interfaces/ianjuta-editor.h>
30 #include <libanjuta/interfaces/ianjuta-symbol-manager.h>
31 #include <libanjuta/interfaces/ianjuta-file-manager.h>
32 #include <libanjuta/interfaces/ianjuta-project-manager.h>
33 #include <libanjuta/interfaces/ianjuta-file.h>
34 #include <libanjuta/anjuta-shell.h>
36 #include "python-assist.h"
38 extern GType python_plugin_get_type (GTypeModule *module);
39 #define ANJUTA_TYPE_PLUGIN_PYTHON (python_plugin_get_type (NULL))
40 #define ANJUTA_PLUGIN_PYTHON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ANJUTA_TYPE_PLUGIN_PYTHON, PythonPlugin))
41 #define ANJUTA_PLUGIN_PYTHON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), ANJUTA_TYPE_PLUGIN_PYTHON, PythonPluginClass))
42 #define ANJUTA_IS_PLUGIN_PYTHON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ANJUTA_TYPE_PLUGIN_PYTHON))
43 #define ANJUTA_IS_PLUGIN_PYTHON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ANJUTA_TYPE_PLUGIN_PYTHON))
44 #define ANJUTA_PLUGIN_PYTHON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ANJUTA_TYPE_PLUGIN_PYTHON, PythonPluginClass))
47 typedef struct _PythonPlugin PythonPlugin;
48 typedef struct _PythonPluginClass PythonPluginClass;
50 struct _PythonPlugin{
51 AnjutaPlugin parent;
52 gint uiid;
53 GtkActionGroup *action_group;
55 AnjutaPreferences *prefs;
56 GObject *current_editor;
57 gboolean support_installed;
58 const gchar *current_language;
60 gchar *project_root_directory;
61 gchar *current_editor_filename;
62 gchar *current_fm_filename;
64 /* Watches */
65 gint project_root_watch_id;
66 gint editor_watch_id;
69 /* Adaptive indentation parameters */
70 gint param_tab_size;
71 gint param_use_spaces;
72 gint param_statement_indentation;
73 gint param_brace_indentation;
74 gint param_case_indentation;
75 gint param_label_indentation;
77 /* Assist */
78 PythonAssist *assist;
80 /* Preferences */
81 GtkBuilder* bxml;
82 GSettings* settings;
83 GSettings* editor_settings;
86 struct _PythonPluginClass{
87 AnjutaPluginClass parent_class;
90 #endif