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

« back to all changes in this revision

Viewing changes to src/cb_latex.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 CB_LATEX_H
 
21
#define CB_LATEX_H
 
22
 
 
23
void cb_sectioning_part (void);
 
24
void cb_sectioning_chapter (void);
 
25
void cb_sectioning_section (void);
 
26
void cb_sectioning_subsection (void);
 
27
void cb_sectioning_subsubsection (void);
 
28
void cb_sectioning_paragraph (void);
 
29
void cb_sectioning_subparagraph (void);
 
30
 
 
31
void cb_ref_label (void);
 
32
void cb_ref_ref (void);
 
33
void cb_ref_pageref (void);
 
34
void cb_ref_index (void);
 
35
void cb_ref_footnote (void);
 
36
void cb_ref_cite (void);
 
37
 
 
38
void cb_env_center (void);
 
39
void cb_env_left (void);
 
40
void cb_env_right (void);
 
41
void cb_env_minipage (void);
 
42
void cb_env_quote (void);
 
43
void cb_env_quotation (void);
 
44
void cb_env_verse (void);
 
45
 
 
46
void cb_list_env_itemize (void);
 
47
void cb_list_env_enumerate (void);
 
48
void cb_list_env_description (void);
 
49
void cb_list_env_item (void);
 
50
 
 
51
void cb_size_tiny (void);
 
52
void cb_size_scriptsize (void);
 
53
void cb_size_footnotesize (void);
 
54
void cb_size_small (void);
 
55
void cb_size_normalsize (void);
 
56
void cb_size_large (void);
 
57
void cb_size_Large (void);
 
58
void cb_size_LARGE (void);
 
59
void cb_size_huge (void);
 
60
void cb_size_Huge (void);
 
61
 
 
62
void cb_text_bold (void);
 
63
void cb_text_italic (void);
 
64
void cb_text_typewriter (void);
 
65
void cb_text_underline (void);
 
66
void cb_text_slanted (void);
 
67
void cb_text_small_caps (void);
 
68
void cb_text_emph (void);
 
69
void cb_text_font_family_roman (void);
 
70
void cb_text_font_family_sans_serif (void);
 
71
void cb_text_font_family_monospace (void);
 
72
void cb_text_font_series_medium (void);
 
73
void cb_text_font_series_bold (void);
 
74
void cb_text_font_shape_upright (void);
 
75
void cb_text_font_shape_italic (void);
 
76
void cb_text_font_shape_slanted (void);
 
77
void cb_text_font_shape_small_caps (void);
 
78
 
 
79
void cb_math_env_normal (void);
 
80
void cb_math_env_centered (void);
 
81
void cb_math_env_numbered (void);
 
82
void cb_math_env_array (void);
 
83
void cb_math_env_numbered_array (void);
 
84
void cb_math_superscript (void);
 
85
void cb_math_subscript (void);
 
86
void cb_math_frac (void);
 
87
void cb_math_square_root (void);
 
88
void cb_math_nth_root (void);
 
89
void cb_math_left_delimiter_1 (void);
 
90
void cb_math_left_delimiter_2 (void);
 
91
void cb_math_left_delimiter_3 (void);
 
92
void cb_math_left_delimiter_4 (void);
 
93
void cb_math_left_delimiter_5 (void);
 
94
void cb_math_left_delimiter_6 (void);
 
95
void cb_math_left_delimiter_7 (void);
 
96
void cb_math_left_delimiter_8 (void);
 
97
void cb_math_left_delimiter_9 (void);
 
98
void cb_math_right_delimiter_1 (void);
 
99
void cb_math_right_delimiter_2 (void);
 
100
void cb_math_right_delimiter_3 (void);
 
101
void cb_math_right_delimiter_4 (void);
 
102
void cb_math_right_delimiter_5 (void);
 
103
void cb_math_right_delimiter_6 (void);
 
104
void cb_math_right_delimiter_7 (void);
 
105
void cb_math_right_delimiter_8 (void);
 
106
void cb_math_right_delimiter_9 (void);
 
107
 
 
108
#endif /* CB_LATEX_H */