]> git.lyx.org Git - lyx.git/blob - src/lyx_cb.h
Small changes; ChangeLog is your friend
[lyx.git] / src / lyx_cb.h
1 // -*- C++ -*-
2 #ifndef LYX_CB_H
3 #define LYX_CB_H
4
5 #include FORMS_H_LOCATION
6
7 #include "LString.h"
8
9 class Inset;
10 class BufferView;
11
12 ///
13 extern bool quitting;
14
15 // When still false after reading lyxrc, warn user
16 //about failing \bind_file command. RVDK_PATCH_5
17 extern bool BindFileSet;
18
19 ///
20 extern void Foot(BufferView *);
21 ///
22 extern void Emph();
23 ///
24 extern void Bold();
25 ///
26 extern void Noun();
27 ///
28 extern void Margin(BufferView *);
29 ///
30 extern void Figure();
31 ///
32 extern void LangCB(string const &);
33 ///
34 extern void Table();
35 ///
36 extern void Melt(BufferView *);
37 ///
38 extern void Tex();
39 ///
40 extern void changeDepth(BufferView *, int);
41 ///
42 extern void Free();
43 ///
44 extern void HtmlUrl();
45 ///
46 extern void Url();
47 ///
48 extern void ProhibitInput();
49 ///
50 extern void Code();
51 ///
52 extern void Sans();
53 ///
54 extern void Roman();
55 ///
56 extern void StyleReset();
57 ///
58 extern void Underline();
59 ///
60 extern void FontSize(string const &);
61 ///
62 extern string CurrentState();
63 ///
64 extern void AllowInput();
65
66 #endif
67