]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/XFormsView.C
refactor topCursorVisible() prototype a little. Compile fix
[lyx.git] / src / frontends / xforms / XFormsView.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "XFormsView.h"
18 #if FL_VERSION < 1 && (FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5))
19 #include "frontends/xforms/lyxlookup.h"
20 #endif
21 #include "minibuffer.h"
22 #include "debug.h"
23 #include "intl.h"
24 #include "lyxrc.h"
25 #include "support/filetools.h"        // OnlyFilename()
26 #include "frontends/Toolbar.h"
27 #include "frontends/Menubar.h"
28 #include "frontends/Timeout.h"
29 #include "MenuBackend.h"
30 #include "ToolbarDefaults.h"
31 #include "lyxfunc.h"
32 #include "BufferView.h"
33
34 #include <boost/bind.hpp>
35
36 using std::abs;
37 using std::endl;
38
39 //extern void AutoSave(BufferView *);
40 extern void QuitLyX();
41
42 // This is very temporary
43 BufferView * current_view;
44
45 extern "C" {
46
47 static
48 int C_XFormsView_atCloseMainFormCB(FL_FORM * form, void * p)
49 {
50         return XFormsView::atCloseMainFormCB(form, p);
51 }
52
53 }
54
55
56 XFormsView::XFormsView(int width, int height)
57         : LyXView()
58 {
59         create_form_form_main(width, height);
60         fl_set_form_atclose(getForm(), C_XFormsView_atCloseMainFormCB, 0);
61
62         // Connect the minibuffer signals
63         minibuffer_->stringReady.connect(boost::bind(&LyXFunc::miniDispatch, getLyXFunc(), _1));
64         minibuffer_->timeout.connect(boost::bind(&LyXFunc::initMiniBuffer, getLyXFunc()));
65
66         // Make sure the buttons are disabled if needed.
67         updateToolbar();
68 }
69
70
71 XFormsView::~XFormsView() {}
72
73
74 /// Redraw the main form.
75 void XFormsView::redraw() {
76         lyxerr[Debug::INFO] << "XFormsView::redraw()" << endl;
77         fl_redraw_form(getForm());
78         getMiniBuffer()->redraw();
79 }
80
81
82 FL_FORM * XFormsView::getForm() const
83 {
84         return form_.get();
85 }
86
87
88 // Callback for close main form from window manager
89 int XFormsView::atCloseMainFormCB(FL_FORM *, void *)
90 {
91         QuitLyX();
92         return FL_IGNORE;
93 }
94
95
96 void XFormsView::show(int x, int y, string const & title)
97 {
98         FL_FORM * form = getForm();
99  
100         fl_set_form_minsize(form, form->w, form->h);
101  
102         int placement = FL_PLACE_CENTER | FL_FREE_SIZE;
103  
104         // Did we get a valid geometry position ?
105         if (x >= 0 && y >= 0) {
106                 fl_set_form_position(form, x, y);
107                 placement = FL_PLACE_POSITION;
108         }
109  
110         fl_show_form(form, placement, FL_FULLBORDER, title.c_str());
111  
112         getLyXFunc()->initMiniBuffer();
113 #if FL_VERSION < 1 && (FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5))
114         InitLyXLookup(fl_get_display(), form_->window);
115 #endif 
116 }
117
118
119 void XFormsView::create_form_form_main(int width, int height)
120         /* to make this work as it should, .lyxrc should have been
121          * read first; OR maybe this one should be made dynamic.
122          * Hmmmm. Lgb.
123          * We will probably not have lyxrc before the main form is
124          * initialized, because error messages from lyxrc parsing
125          * are presented (and rightly so) in GUI popups. Asger.
126          */
127 {
128         // the main form
129         form_.reset(fl_bgn_form(FL_NO_BOX, width, height));
130         getForm()->u_vdata = this;
131         FL_OBJECT * obj = fl_add_box(FL_FLAT_BOX, 0, 0, width, height, "");
132         fl_set_object_color(obj, FL_MCOL, FL_MCOL);
133
134         // Parameters for the appearance of the main form
135         int const air = 2;
136         int const bw = abs(fl_get_border_width());
137
138         menubar_.reset(new Menubar(this, menubackend));
139
140         toolbar_.reset(new Toolbar(this, air, 30 + air + bw, toolbardefaults));
141         toolbar_->set(true);
142
143         int const ywork = 60 + 2 * air + bw;
144         int const workheight = height - ywork - (25 + 2 * air);
145
146         bufferview_.reset(new BufferView(this, air, ywork,
147                 width - 3 * air, workheight));
148         ::current_view = bufferview_.get();
149
150         minibuffer_.reset(new MiniBuffer(this, air, height - (25 + air),
151                 width - (2 * air), 25));
152
153         // FIXME: why do this in xforms/ ?
154         autosave_timeout_->timeout.connect(boost::bind(&XFormsView::AutoSave, this));
155
156         //  assign an icon to main form
157         string iconname = LibFileSearch("images", "lyx", "xpm");
158         if (!iconname.empty()) {
159                 unsigned int w, h;
160                 Pixmap lyx_p, lyx_mask;
161                 lyx_p = fl_read_pixmapfile(fl_root,
162                                            iconname.c_str(),
163                                            &w,
164                                            &h,
165                                            &lyx_mask,
166                                            0,
167                                            0,
168                                            0); // this leaks
169                 fl_set_form_icon(getForm(), lyx_p, lyx_mask);
170         }
171
172         // set min size
173         fl_set_form_minsize(getForm(), 50, 50);
174
175         fl_end_form();
176
177         minibuffer_->dd_init();
178 }
179
180
181 void XFormsView::init()
182 {
183         // Set the textclass choice
184         invalidateLayoutChoice();
185         updateLayoutChoice();
186         updateMenubar();
187
188         // Start autosave timer
189         if (lyxrc.autosave) {
190                 autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
191                 autosave_timeout_->start();
192         }
193
194         intl_->InitKeyMapper(lyxrc.use_kbmap);
195 }
196
197
198 void XFormsView::setWindowTitle(string const & title, string const & icon_title)
199 {
200         fl_set_form_title(getForm(), title.c_str());
201         fl_winicontitle(form_->window, icon_title.c_str());
202 }
203
204
205 // How should this actually work? Should it prohibit input in all BufferViews,
206 // or just in the current one? If "just the current one", then it should be
207 // placed in BufferView. If "all BufferViews" then LyXGUI (I think) should
208 // run "prohibitInput" on all LyXViews which will run prohibitInput on all
209 // BufferViews. Or is it perhaps just the (input in) BufferViews in the
210 // current LyxView that should be prohibited (Lgb) (This applies to
211 // "allowInput" as well.)
212 void XFormsView::prohibitInput() const
213 {
214         view()->hideCursor();
215
216         static Cursor cursor;
217         static bool cursor_undefined = true;
218
219         if (cursor_undefined) {
220                 cursor = XCreateFontCursor(fl_get_display(), XC_watch);
221                 XFlush(fl_get_display());
222                 cursor_undefined = false;
223         }
224
225         /* set the cursor to the watch for all forms and the canvas */
226         XDefineCursor(fl_get_display(), getForm()->window, cursor);
227
228         XFlush(fl_get_display());
229         fl_deactivate_all_forms();
230 }
231
232
233 void XFormsView::allowInput() const
234 {
235         /* reset the cursor from the watch for all forms and the canvas */
236
237         XUndefineCursor(fl_get_display(), getForm()->window);
238
239         XFlush(fl_get_display());
240         fl_activate_all_forms();
241 }