]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Toolbar_pimpl.C
fix starting up which binary is really a symlink; make sure insetinclude file browser...
[lyx.git] / src / frontends / xforms / Toolbar_pimpl.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  *           This file is Copyright 1996-1998
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== */
13
14 //  Added pseudo-action handling, asierra 180296
15
16 #include <config.h>
17
18 #ifdef __GNUG__
19 #pragma implementation
20 #endif
21
22 #include "Toolbar_pimpl.h"
23 #include "debug.h"
24 #include "XFormsView.h"
25 #include "lyxfunc.h"
26 #include "FuncStatus.h"
27 #include "BufferView.h"
28 #include "buffer.h"
29 #include "lyxtextclasslist.h"
30 #include "LyXAction.h"
31 #include "MathsSymbols.h" 
32 #include "gettext.h"
33
34 #include "support/filetools.h"
35 #include "support/lstrings.h" 
36
37 using std::endl;
38
39 extern LyXAction lyxaction;
40
41 // some constants
42 const int standardspacing = 2; // the usual space between items
43 const int sepspace = 6; // extra space
44 const int buttonwidth = 30; // the standard button width
45 const int height = 30; // the height of all items in the toolbar
46
47 Toolbar::Pimpl::toolbarItem::toolbarItem()
48 {
49         action = LFUN_NOACTION;
50         icon = 0;
51 }
52
53
54 Toolbar::Pimpl::toolbarItem::~toolbarItem()
55 {
56         clean();
57 }
58
59
60 void Toolbar::Pimpl::toolbarItem::clean()
61 {
62         if (icon) {
63                 fl_delete_object(icon);
64                 fl_free_object(icon);
65                 icon = 0;
66         }
67 }
68
69
70 Toolbar::Pimpl::toolbarItem & 
71 Toolbar::Pimpl::toolbarItem::operator=(toolbarItem const & ti)
72 {
73         // Are we assigning the object onto itself?
74         if (this == &ti)
75                 return *this;
76
77         // If we already have an icon, release it.
78         clean();
79     
80         // do we have to check icon too?
81         action = ti.action;
82         icon = 0; // locally we need to get the icon anew
83         
84         return *this;
85 }
86
87
88
89 Toolbar::Pimpl::Pimpl(LyXView * o, int x, int y)
90         : owner(static_cast<XFormsView *>(o)), sxpos(x), sypos(y)
91 {
92         combox = 0;
93 #if FL_REVISION < 89
94         bubble_timer = 0;
95 #endif
96 }
97
98
99 namespace {
100
101 #if FL_REVISION < 89
102 // timer-cb for bubble-help (Matthias)
103 void BubbleTimerCB(FL_OBJECT *, long data)
104 {
105         FL_OBJECT * ob = reinterpret_cast<FL_OBJECT*>(data);
106         // The trick we use to get the help text is to read the
107         // argument of the callback that has been registered for
108         // ToolBarCB.  (JMarc)
109         string help = _(lyxaction.helpText(ob->argument));
110         fl_show_oneliner(help.c_str(), ob->form->x + ob->x,
111                          ob->form->y + ob->y + ob->h);
112 }
113
114
115 extern "C" {
116         
117 static
118 void C_Toolbar_BubbleTimerCB(FL_OBJECT * ob, long data)
119 {
120         BubbleTimerCB(ob, data);
121 }
122
123 }
124
125 // post_handler for bubble-help (Matthias)
126 int BubblePost(FL_OBJECT *ob, int event,
127                FL_Coord /*mx*/, FL_Coord /*my*/,
128                int /*key*/, void * /*xev*/)
129 {
130         FL_OBJECT * bubble_timer = reinterpret_cast<FL_OBJECT *>(ob->u_cdata);
131         
132         // We do not test for empty help here, since this can never happen
133         if (event == FL_ENTER){
134                 fl_set_object_callback(bubble_timer,
135                                        C_Toolbar_BubbleTimerCB,
136                                        reinterpret_cast<long>(ob));
137                 fl_set_timer(bubble_timer, 1);
138         }
139         else if (event != FL_MOTION){
140                 fl_set_timer(bubble_timer, 0);
141                 fl_hide_oneliner();
142         }
143         return 0;
144 }
145
146
147 extern "C" {
148         
149 static
150 int C_Toolbar_BubblePost(FL_OBJECT * ob, int event,
151                          FL_Coord /*mx*/, FL_Coord /*my*/, 
152                          int key, void * xev)
153 {
154         return BubblePost(ob, event, 0, 0, key, xev);
155 }
156
157 }
158 #endif
159
160 } // namespace anon
161
162
163 void Toolbar::Pimpl::activate()
164 {
165         ToolbarList::const_iterator p = toollist.begin();
166         ToolbarList::const_iterator end = toollist.end();
167         for (; p != end; ++p) {
168                 if (p->icon) {
169                         fl_activate_object(p->icon);
170                 }
171         }
172 }
173
174
175 void Toolbar::Pimpl::deactivate()
176 {
177         ToolbarList::const_iterator p = toollist.begin();
178         ToolbarList::const_iterator end = toollist.end();
179         for (; p != end; ++p) {
180                 if (p->icon) {
181                         fl_deactivate_object(p->icon);
182                 }
183         }
184 }
185
186
187 void Toolbar::Pimpl::update()
188 {
189         ToolbarList::const_iterator p = toollist.begin();
190         ToolbarList::const_iterator end = toollist.end();
191         for (; p != end; ++p) {
192                 if (p->icon) {
193                         FuncStatus status = owner->getLyXFunc()->getStatus(p->action);
194                         if (status.onoff(true)) {
195                                 // I'd like to use a different color
196                                 // here, but then the problem is to
197                                 // know how to use transparency with
198                                 // Xpm library. It seems pretty
199                                 // complicated to me (JMarc)
200                                 fl_set_object_color(p->icon, FL_LEFT_BCOL, FL_BLUE);
201                                 fl_set_object_boxtype(p->icon, FL_DOWN_BOX);
202                         } else {
203                                 fl_set_object_color(p->icon, FL_MCOL, FL_BLUE);
204                                 fl_set_object_boxtype(p->icon, FL_UP_BOX);
205                         }
206                         if (status.disabled()) {
207                                 // Is there a way here to specify a
208                                 // mask in order to show that the
209                                 // button is disabled? (JMarc)
210                                 fl_deactivate_object(p->icon);
211                         }
212                         else
213                                 fl_activate_object(p->icon);
214                 }
215         }
216 }
217
218
219 // this one is not "C" because combox callbacks are really C++ %-|
220 void Toolbar::Pimpl::layoutSelectedCB(int, void * arg, Combox *)
221 {
222         Toolbar::Pimpl * tb = reinterpret_cast<Toolbar::Pimpl *>(arg);
223
224         tb->layoutSelected();
225 }
226
227
228 void Toolbar::Pimpl::layoutSelected()
229 {
230         string const & layoutguiname = combox->getline();
231         LyXTextClass const & tc =
232                 textclasslist.TextClass(owner->buffer()->
233                                         params.textclass);
234         
235         LyXTextClass::const_iterator end = tc.end();
236         for (LyXTextClass::const_iterator cit = tc.begin();
237              cit != end; ++cit) {
238                 if (_(cit->name()) == layoutguiname) {
239                         owner->getLyXFunc()->dispatch(LFUN_LAYOUT, cit->name());
240                         return;
241                 }
242         }
243         lyxerr << "ERROR (Toolbar::Pimpl::layoutSelected): layout not found!"
244                << endl;
245 }
246  
247
248 void Toolbar::Pimpl::setLayout(int layout)
249 {
250         if (combox) {
251                 LyXTextClass const & tc =
252                         textclasslist.TextClass(owner->buffer()->
253                                                 params.textclass);
254                 combox->select(_(tc[layout].name()));
255         }
256 }
257
258
259 void Toolbar::Pimpl::updateLayoutList(bool force)
260 {
261         // Update the layout display
262         if (!combox) return;
263
264         // If textclass is different, we need to update the list
265         if (combox->empty() || force) {
266                 combox->clear();
267                 LyXTextClass const & tc =
268                         textclasslist.TextClass(owner->buffer()->
269                                                 params.textclass);
270                 LyXTextClass::const_iterator end = tc.end();
271                 for (LyXTextClass::const_iterator cit = tc.begin();
272                      cit != end; ++cit) {
273                         // ignore obsolete entries
274                         if (cit->obsoleted_by().empty())
275                                 combox->addline(_(cit->name()));
276                 }
277         }
278         // we need to do this.
279         combox->redraw();
280 }
281
282
283 void Toolbar::Pimpl::clearLayoutList()
284 {
285         if (combox) {
286                 combox->clear();
287                 combox->redraw();
288         }
289 }
290
291
292 void Toolbar::Pimpl::openLayoutList()
293 {
294         if (combox)
295                 combox->show();
296 }
297
298
299 namespace {
300
301 void ToolbarCB(FL_OBJECT * ob, long ac)
302 {
303         XFormsView * owner = static_cast<XFormsView *>(ob->u_vdata);
304         
305         owner->getLyXFunc()->verboseDispatch(int(ac), true);
306 }
307
308
309 extern "C" {
310         
311         static
312         void C_Toolbar_ToolbarCB(FL_OBJECT * ob, long data)
313         {
314                 ToolbarCB(ob, data);
315         }
316         
317 }
318
319
320 void setPixmap(FL_OBJECT * obj, int action, int buttonwidth, int height)
321 {
322         string arg;
323         string xpm_name;
324
325         const kb_action act = lyxaction.retrieveActionArg(action, arg);
326         string const name = lyxaction.getActionName(act);
327         if (!arg.empty())
328                 xpm_name = subst(name + ' ' + arg, ' ','_');
329         else 
330                 xpm_name = name;
331
332         string fullname = LibFileSearch("images", xpm_name, "xpm");
333
334         if (!fullname.empty()) {
335                 lyxerr[Debug::GUI] << "Full icon name is `" 
336                                        << fullname << "'" << endl;
337                 fl_set_pixmapbutton_file(obj, fullname.c_str());
338                 return;
339         }
340
341         if (act == LFUN_INSERT_MATH && !arg.empty()) {
342                 char const ** pixmap = get_pixmap_from_symbol(arg.c_str(),
343                                                         buttonwidth,
344                                                         height);
345                 if (pixmap) {
346                         lyxerr[Debug::GUI] << "Using mathed-provided icon"
347                                            << endl;
348                         fl_set_pixmapbutton_data(obj,
349                                                  const_cast<char **>(pixmap));
350                         return;
351                 }
352         }
353         
354         lyxerr << "Unable to find icon `" << xpm_name << "'" << endl;
355         fullname = LibFileSearch("images", "unknown", "xpm");
356         if (!fullname.empty()) {
357                 lyxerr[Debug::GUI] << "Using default `unknown' icon" 
358                                        << endl;
359                 fl_set_pixmapbutton_file(obj, fullname.c_str());
360         }
361 }
362
363 } // namespace anon
364
365
366 void Toolbar::Pimpl::set(bool doingmain)
367 {
368         // we shouldn't set if we have not cleaned
369         if (!cleaned) return;
370         
371         FL_OBJECT * obj;
372         
373         if (!doingmain) {
374                 fl_freeze_form(owner->getForm());
375                 fl_addto_form(owner->getForm());
376         }
377
378 #if FL_REVISION < 89
379         // add the time if it don't exist
380         if (bubble_timer == 0)
381                 bubble_timer = fl_add_timer(FL_HIDDEN_TIMER,
382                                             xpos, ypos, 0, 0, "Timer");
383 #endif
384         
385         ToolbarList::iterator item = toollist.begin();
386         ToolbarList::iterator end = toollist.end();
387         for (; item != end; ++item) {
388                 switch (item->action){
389                 case ToolbarDefaults::SEPARATOR:
390                         xpos += sepspace;
391                         break;
392                 case ToolbarDefaults::NEWLINE:
393                         // Not supported yet.
394                         break;
395                 case ToolbarDefaults::LAYOUTS:
396                         xpos += standardspacing;
397                         if (!combox)
398                                 combox = new Combox(FL_COMBOX_DROPLIST);
399                         combox->add(xpos, ypos, 135, height, 400);
400                         combox->setcallback(layoutSelectedCB, this);
401                         combox->resize(FL_RESIZE_ALL);
402                         combox->gravity(NorthWestGravity, NorthWestGravity);
403                         xpos += 135;
404                         break;
405                 default:
406                         xpos += standardspacing;
407                         item->icon = obj = 
408                                 fl_add_pixmapbutton(FL_NORMAL_BUTTON,
409                                                     xpos, ypos,
410                                                     buttonwidth,
411                                                     height, "");
412                         fl_set_object_resize(obj, FL_RESIZE_ALL);
413                         fl_set_object_gravity(obj,
414                                               NorthWestGravity,
415                                               NorthWestGravity);
416                         fl_set_object_callback(obj, C_Toolbar_ToolbarCB,
417                                                static_cast<long>(item->action));
418                         // Remove the blue feedback rectangle
419                         fl_set_pixmapbutton_focus_outline(obj, 0);
420
421                         // Set the tooltip
422 #if FL_REVISION >= 89
423                         string const help(_(lyxaction.helpText(item->action)));
424                         fl_set_object_helper(obj, help.c_str());        
425 #else
426                         fl_set_object_posthandler(obj, C_Toolbar_BubblePost);
427                         obj->u_cdata = reinterpret_cast<char *>(bubble_timer);
428 #endif
429
430                         // The view that this object belongs to.
431                         obj->u_vdata = owner;
432
433                         setPixmap(obj, item->action, buttonwidth, height);
434                         // we must remember to update the positions
435                         xpos += buttonwidth;
436                         // ypos is constant
437                         /* Here will come a check to see if the new
438                          * pos is within the bounds of the main frame,
439                          * and perhaps wrap the toolbar if not.
440                          */
441                         break;
442                 }
443         }
444
445         if (!doingmain) {
446                 fl_end_form();
447                 fl_unfreeze_form(owner->getForm());
448                 // Should be safe to do this here.
449                 owner->updateLayoutChoice();
450         }
451
452         // set the state of the icons
453         //update();
454
455         cleaned = false;
456 }
457
458
459 void Toolbar::Pimpl::add(int action, bool doclean)
460 {
461         if (doclean && !cleaned) clean();
462
463         // this is what we do if we want to add to an existing
464         // toolbar.
465         if (!doclean && owner) {
466                 // first "hide" the toolbar buttons. This is not a real hide
467                 // actually it deletes and frees the button altogether.
468                 lyxerr << "Toolbar::add: \"hide\" the toolbar buttons." 
469                        << endl;
470
471                 lightReset();
472                 
473                 fl_freeze_form(owner->getForm());
474
475                 ToolbarList::iterator p = toollist.begin();
476                 ToolbarList::iterator end = toollist.end();
477                 for (; p != end; ++p) {
478                         p->clean();
479                 }
480
481                 if (combox) {
482                         delete combox;
483                         combox = 0;
484                 }
485                 fl_unfreeze_form(owner->getForm());
486                 cleaned = true; // this is not completely true, but OK anyway
487         }
488         
489         // there exist some special actions not part of
490         // kb_action: SEPARATOR, LAYOUTS
491
492         toolbarItem newItem;
493         newItem.action = action;
494         toollist.push_back(newItem);
495 }
496
497
498 void Toolbar::Pimpl::clean()
499 {
500         //reset(); // I do not understand what this reset() is, anyway
501
502         //now delete all the objects..
503         if (owner)
504                 fl_freeze_form(owner->getForm());
505
506         // G++ vector does not have clear defined
507         //toollist.clear();
508         toollist.erase(toollist.begin(), toollist.end());
509
510         lyxerr[Debug::GUI] << "Combox: " << combox << endl;
511         if (combox) {
512                 delete combox;
513                 combox = 0;
514         }
515
516         if (owner)
517                 fl_unfreeze_form(owner->getForm());
518         lyxerr[Debug::GUI] << "toolbar cleaned" << endl;
519         cleaned = true;
520 }
521
522
523 void Toolbar::Pimpl::push(int nth)
524 {
525         lyxerr[Debug::GUI] << "Toolbar::push: trying to trigger no `"
526                                << nth << '\'' << endl;
527         
528         if (nth <= 0 || nth >= int(toollist.size())) {
529                 // item nth not found...
530                 return;
531         }
532
533         fl_trigger_object(toollist[nth - 1].icon);
534 }
535
536
537 void Toolbar::Pimpl::reset() 
538 {
539         //toollist = 0; // what is this supposed to do?
540         cleaned = false;
541         lightReset();
542 }
543
544
545 void Toolbar::Pimpl::lightReset() {
546         xpos = sxpos - standardspacing;
547         ypos = sypos;
548 }