message-view: bgo #727634 - Cannot copy build output
[anjuta.git] / plugins / indentation-python-style / python-indentation.h
bloba794bbcccc34e5393dc7c08906ee6ff5bd0cdc79
1 /*
2 * python-indentation.h
4 * Copyright (C) 2011 - Johannes Schmid
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, see <http://www.gnu.org/licenses/>.
20 #ifndef PYTHON_INDENTATION_H
21 #define PYTHON_INDENTATION_H
23 #include "plugin.h"
25 #include <libanjuta/interfaces/ianjuta-iterable.h>
26 #include <libanjuta/interfaces/ianjuta-editor.h>
28 void python_indent_init (IndentPythonPlugin* lang_plugin);
30 void python_indent (IndentPythonPlugin* lang_plugin,
31 IAnjutaEditor* editor,
32 IAnjutaIterable* insert_pos,
33 gchar ch);
35 void python_indent_auto (IndentPythonPlugin* lang_plugin,
36 IAnjutaIterable* start,
37 IAnjutaIterable* end);
39 #endif