]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/lyx_gui.C
Some Qt graphics dialog improvements. Yet more work needed :/
[lyx.git] / src / frontends / qt2 / lyx_gui.C
1 /**
2  * \file lyx_gui.C
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author unknown
7  * \author John Levon <moz@compsoc.man.ac.uk>
8  */
9
10 #include <config.h>
11
12 #include "support/lyxlib.h"
13 #include "support/os.h"
14 #include "support/filetools.h"
15 #include "support/lstrings.h"
16 #include "debug.h"
17 #include "gettext.h"
18
19 #include <fcntl.h>
20 #include <boost/bind.hpp>
21
22 #include "lyx_gui.h"
23 #include "lyx_main.h"
24 #include "lyxrc.h"
25 #include "lyxfont.h"
26
27 // FIXME: move this stuff out again
28 #include "bufferlist.h"
29 #include "lyxfunc.h"
30 #include "lyxserver.h"
31 #include "BufferView.h"
32
33 // Dear Lord, deliver us from Evil,
34 // aka the Qt headers
35 #include <boost/shared_ptr.hpp>
36 #include <boost/function/function0.hpp>
37 #include <boost/signals/signal1.hpp>
38
39 #include "QtView.h"
40 #include "QLImage.h"
41 #include "qfont_loader.h"
42 #include "io_callback.h"
43
44 #include <qapplication.h>
45
46 #ifndef CXX_GLOBAL_CSTD
47 using std::exit;
48 #endif
49
50 using std::vector;
51 using std::map;
52 using std::endl;
53
54 extern BufferList bufferlist;
55
56 // FIXME: wrong place !
57 LyXServer * lyxserver;
58
59 void lyx_gui::parse_init(int & argc, char * argv[])
60 {
61         static QApplication a(argc, argv);
62
63         using namespace grfx;
64
65         Image::newImage = boost::bind(&QLImage::newImage);
66         Image::loadableFormats = boost::bind(&QLImage::loadableFormats);
67 }
68
69
70 void lyx_gui::parse_lyxrc()
71 {
72         // FIXME !!!!
73         lyxrc.dpi = 95;
74 }
75
76
77 void lyx_gui::start(string const & batch, vector<string> files)
78 {
79         // initial geometry
80         int xpos = -1;
81         int ypos = -1;
82         unsigned int width = 690;
83         unsigned int height = 510;
84
85         QtView view(width, height);
86         view.show(xpos, ypos, "LyX");
87         view.init();
88
89         Buffer * last = 0;
90
91         // FIXME: some code below needs moving
92
93         lyxserver = new LyXServer(&view.getLyXFunc(), lyxrc.lyxpipes);
94
95         vector<string>::const_iterator cit = files.begin();
96         vector<string>::const_iterator end = files.end();
97         for (; cit != end; ++cit) {
98                 Buffer * b = bufferlist.loadLyXFile(*cit);
99                 if (b) {
100                         last = b;
101                 }
102         }
103
104         // switch to the last buffer successfully loaded
105         if (last) {
106                 view.view()->buffer(last);
107         }
108
109         // handle the batch commands the user asked for
110         if (!batch.empty()) {
111                 view.getLyXFunc().dispatch(batch);
112         }
113
114         qApp->exec();
115
116         // FIXME
117         delete lyxserver;
118 }
119
120
121 void lyx_gui::exit()
122 {
123         qApp->exit(0);
124 }
125
126
127 string const lyx_gui::hexname(LColor::color col)
128 {
129         QColor color(lcolor.getX11Name(col).c_str());
130         return ltrim(color.name().latin1(), "#");
131 }
132
133
134 void lyx_gui::update_color(LColor::color)
135 {
136         // no need
137 }
138
139
140 void lyx_gui::update_fonts()
141 {
142         fontloader.update();
143 }
144
145
146 bool lyx_gui::font_available(LyXFont const & font)
147 {
148         return fontloader.available(font);
149 }
150
151  
152 namespace {
153         map<int, io_callback *> io_callbacks;
154 }
155
156  
157 void lyx_gui::set_read_callback(int fd, LyXComm * comm)
158 {
159         io_callbacks[fd] = new io_callback(fd, comm);
160 }
161
162
163 void lyx_gui::remove_read_callback(int fd)
164 {
165         map<int, io_callback *>::iterator it = io_callbacks.find(fd);
166         if (it != io_callbacks.end()) {
167                 delete it->second;
168                 io_callbacks.erase(it);
169         }
170 }