]> git.lyx.org Git - lyx.git/blob - src/frontends/lyx_gui.h
This new citation dialog follows a new design similar to lyx-1.3:
[lyx.git] / src / frontends / lyx_gui.h
1 // -*- C++ -*-
2 /**
3  * \file lyx_gui.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_GUI_H
13 #define LYX_GUI_H
14
15
16 #include "FuncStatus.h"
17
18 #include <boost/function.hpp>
19
20 #include <string>
21 #include <vector>
22
23 class Dialogs;
24 class LColor_color;
25 class LyXFont;
26 class LyXComm;
27 class LyXDataSocket;
28 class LyXServerSocket;
29 class FuncRequest;
30 namespace lyx {
31 struct RGBColor;
32 }
33
34 /// GUI interaction
35 namespace lyx_gui {
36
37 /// are we using the GUI at all
38 extern bool use_gui;
39
40 /// return a suitable serif font name (called from non-gui context too !)
41 std::string const roman_font_name();
42
43 /// return a suitable sans serif font name (called from non-gui context too !)
44 std::string const sans_font_name();
45
46 /// return a suitable monospaced font name (called from non-gui context too !)
47 std::string const typewriter_font_name();
48
49 /// parse command line and do basic initialisation
50 void parse_init(int & argc, char * argv[]);
51
52 /**
53  * set up GUI parameters. At this point lyxrc may
54  * be used.
55  */
56 void parse_lyxrc();
57
58 /**
59  * Start the main event loop, after executing the given
60  * batch commands, and loading the given documents
61  */
62 void start(std::string const & batch, std::vector<std::string> const & files);
63
64 /**
65  * Synchronise all pending events.
66  */
67 void sync_events();
68
69 /**
70  * quit running LyX
71  */
72 void exit();
73
74 /**
75  * return the status flag for a given action. This can be used to tell
76  * that a given lfun is not implemented by a frontend
77  */
78 FuncStatus getStatus(FuncRequest const & ev);
79
80 /**
81  * Given col, fills r, g, b in the range 0-255.
82  * The function returns true if successful.
83  * It returns false on failure and sets r, g, b to 0.
84  */
85 bool getRGBColor(LColor_color col, lyx::RGBColor & rgbcol);
86
87 /** Eg, passing LColor::black returns "000000",
88  *      passing LColor::white returns "ffffff".
89  */
90 std::string const hexname(LColor_color col);
91
92 /**
93  * update an altered GUI color
94  */
95 void update_color(LColor_color col);
96
97 /**
98  * update the font cache
99  */
100 void update_fonts();
101
102 /**
103  * is the given font available ?
104  */
105 bool font_available(LyXFont const & font);
106
107 /**
108  * add a callback for socket read notification
109  * @param fd socket descriptor (file/socket/etc)
110  */
111 void register_socket_callback(int fd, boost::function<void()> func);
112
113 /**
114  * remove a I/O read callback
115  * @param fd socket descriptor (file/socket/etc)
116  */
117 void unregister_socket_callback(int fd);
118
119 } // namespace lyx_gui
120
121 #endif // LYX_GUI_H