~ubuntu-branches/ubuntu/precise/latexila/precise

« back to all changes in this revision

Viewing changes to src/prefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Tanguy Ortolo
  • Date: 2010-04-26 22:13:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100426221300-6pa79a1yk5tino7y
Tags: upstream-0.2.0
Import upstream version 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of LaTeXila.
 
3
 *
 
4
 * Copyright © 2009 Sébastien Wilmet
 
5
 *
 
6
 * LaTeXila 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 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * LaTeXila 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.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with LaTeXila.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef PREFS_H
 
21
#define PREFS_H
 
22
 
 
23
void load_preferences (preferences_t *prefs);
 
24
void save_preferences (preferences_t *prefs);
 
25
void set_current_font_prefs (preferences_t *prefs);
 
26
void cb_preferences (void);
 
27
 
 
28
enum style_schemes
 
29
{
 
30
        COLUMN_STYLE_SCHEME_ID,
 
31
        COLUMN_STYLE_SCHEME_DESC,
 
32
        N_COLUMNS_STYLE_SCHEMES
 
33
};
 
34
 
 
35
#endif /* PREFS_H */