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

« back to all changes in this revision

Viewing changes to src/symbols.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 SYMBOLS_H
 
21
#define SYMBOLS_H
 
22
 
 
23
void init_symbols (void);
 
24
 
 
25
// for the symbol tables
 
26
struct symbol
 
27
{
 
28
        gchar *filename;
 
29
        gchar *latex_command;
 
30
        gchar *package_required;
 
31
};
 
32
 
 
33
// for the symbol lists
 
34
enum symbols
 
35
{
 
36
        COLUMN_SYMBOL_PIXBUF,
 
37
        COLUMN_SYMBOL_COMMAND,
 
38
        COLUMN_SYMBOL_TOOLTIP,
 
39
        N_COLUMNS_SYMBOL
 
40
};
 
41
 
 
42
// for the categories
 
43
enum category_symbols
 
44
{
 
45
        COLUMN_CAT_ICON,
 
46
        COLUMN_CAT_NAME,
 
47
        COLUMN_CAT_NUM,
 
48
        N_COLUMNS_CAT
 
49
};
 
50
 
 
51
#endif /* SYMBOLS_H */