Support individual files and folders in log output.
[anjuta-git-plugin.git] / plugins / editor / style-editor.h
blob279d5ec090c9d18500fc3750a9d43bcbbb90ad04
1 /*
2 style-editor.h
3 Copyright (C) 2000 Naba Kumar <gnome.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _STYLE_EDITOR_H_
21 #define _STYLE_EDITOR_H_
23 #ifdef HAVE_CONFIG_H
24 # include <config.h>
25 #endif
27 #include <libanjuta/anjuta-preferences.h>
28 #include "properties.h"
30 typedef struct _StyleEditor StyleEditor;
31 typedef struct _StyleEditorPriv StyleEditorPriv;
33 struct _StyleEditor
36 PropsID props_global;
37 PropsID props_local;
38 PropsID props_session;
40 PropsID props;
41 StyleEditorPriv *priv;
42 AnjutaPreferences *prefs;
45 StyleEditor *
46 style_editor_new (AnjutaPreferences *prefs);
48 void style_editor_destroy (StyleEditor *se);
50 void style_editor_show (StyleEditor *se);
52 void style_editor_hide (StyleEditor *se);
54 void style_editor_save (StyleEditor *se, FILE *stream);
56 #endif