]> git.lyx.org Git - features.git/blob - src/toolbar.C
5ceb7a800fed01555894f2e88fd3b2fc149c1f65
[features.git] / src / toolbar.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-1999 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 "toolbar.h"
20 #endif
21
22 #include "lyx_main.h"
23 #include "lyx_gui_misc.h"
24 #include "lyx.h"
25 #include "toolbar.h"
26 #include "lyxfunc.h"
27 #include "lyxlex.h"
28 #include "debug.h"
29 #include "combox.h"
30 #include "lyx_cb.h"
31 #include "LyXView.h"
32 #include "LyXAction.h"
33 #include "support/lstrings.h"
34
35 #ifdef TWO_COLOR_ICONS
36 #include "cut_bw.xpm"
37 #include "emph_bw.xpm"
38 #include "fig_bw.xpm"
39 #include "foot_bw.xpm"
40 #include "math_bw.xpm"
41 #include "depth_bw.xpm"
42 #include "margin_bw.xpm"
43 #include "melt_bw.xpm"
44 #include "copy_bw.xpm"
45 #include "noun_bw.xpm"
46 #include "paste_bw.xpm"
47 #include "free_bw.xpm"
48 #include "tab_bw.xpm"
49 #include "tex_bw.xpm"
50 #include "open_bw.xpm"
51 #include "close_bw.xpm"
52 #include "save_bw.xpm"
53 #include "print1_bw.xpm"
54 #include "quit_bw.xpm"
55 #include "typeset_ps_bw.xpm"
56 #include "unknown_bw.xpm"
57 #else 
58 #include "cut.xpm"
59 #include "emph.xpm"
60 #include "fig.xpm"
61 #include "foot.xpm"
62 #include "math.xpm"
63 #include "depth.xpm"
64 #include "margin.xpm"
65 #include "melt.xpm"
66 #include "copy.xpm"
67 #include "noun.xpm"
68 #include "paste.xpm"
69 #include "free.xpm"
70 #include "tab.xpm"
71 #include "tex.xpm"
72 #include "open.xpm"
73 #include "close.xpm"
74 #include "save.xpm"
75 #include "print1.xpm"
76 #include "quit.xpm"
77 #include "typeset_ps.xpm"
78 #include "unknown.xpm"
79 #endif
80
81 // These pixmaps are the same regardless of color:
82 #include "bold_bw.xpm"
83 #include "make_ascii_bw.xpm"
84 #include "make_latex_bw.xpm"
85 #include "run_latex_bw.xpm"
86 #include "sans_bw.xpm"
87 #include "view_dvi_bw.xpm"
88 #include "view_ps_bw.xpm"
89 #include "layout_code.xpm"
90 #include "layout_latex.xpm"
91 #include "layout_scrap.xpm"
92 #include "layout_sec.xpm"
93 #include "layout_std.xpm"
94 #include "build.xpm"
95
96 // this one is not "C" because combox callbacks are really C++ %-|
97 extern void LayoutsCB(int, void *);
98 extern char const ** get_pixmap_from_symbol(char const * arg, int, int);
99 extern LyXAction lyxaction;
100
101
102 enum _tooltags {
103         TO_ADD = 1,
104         TO_ENDTOOLBAR,
105         TO_SEPARATOR,
106         TO_LAYOUTS,
107         TO_NEWLINE,
108         TO_LAST
109 };
110
111
112 struct keyword_item toolTags[TO_LAST - 1] = {
113         { "\\add", TO_ADD },
114         { "\\end_toolbar", TO_ENDTOOLBAR },
115         { "\\layouts", TO_LAYOUTS },
116         { "\\newline", TO_NEWLINE },
117         { "\\separator", TO_SEPARATOR }
118 };
119
120
121 Toolbar::Toolbar(Toolbar const &rct, LyXView *o, int x, int y)
122         : owner(o), sxpos(x), sypos(y)
123 {
124         combox = 0;
125         bubble_timer = 0;
126         reset();
127
128         // extracts the toolbar struct form rct.
129         toolbarItem * tmplist = rct.toollist;
130         while (tmplist != 0) {
131                 add(tmplist->action);
132                 lyxerr[Debug::TOOLBAR] << "tool action: "
133                                        << tmplist->action << endl;
134                 tmplist= tmplist->next;
135         }
136 }
137
138
139 // timer-cb for bubble-help (Matthias)
140 void Toolbar::BubbleTimerCB(FL_OBJECT *, long data)
141 {
142         FL_OBJECT * ob = reinterpret_cast<FL_OBJECT*>(data);
143         char * help = static_cast<char*>(ob->u_vdata);
144         fl_show_oneliner(help, ob->form->x + ob->x,
145                          ob->form->y + ob->y + ob->h);
146 }
147
148
149 extern "C" void C_Toolbar_BubbleTimerCB(FL_OBJECT * ob, long data)
150 {
151         Toolbar::BubbleTimerCB(ob, data);
152 }
153
154
155 // post_handler for bubble-help (Matthias)
156 int Toolbar::BubblePost(FL_OBJECT *ob, int event,
157                         FL_Coord /*mx*/, FL_Coord /*my*/,
158                         int /*key*/, void */*xev*/)
159 {
160         string help = static_cast<char *>(ob->u_vdata);
161         Toolbar * t = reinterpret_cast<Toolbar*>(ob->u_ldata);
162         
163         if(event == FL_ENTER && !help.empty()){
164                 fl_set_object_callback(t->bubble_timer,
165                                        C_Toolbar_BubbleTimerCB,
166                                        reinterpret_cast<long>(ob));
167                 fl_set_timer(t->bubble_timer, 1);
168         }
169         else if(event != FL_MOTION){
170                 fl_set_timer(t->bubble_timer, 0);
171                 fl_hide_oneliner();
172         }
173         return 0;
174 }
175
176
177 extern "C" int C_Toolbar_BubblePost(FL_OBJECT * ob, int event,
178                                     FL_Coord /*mx*/, FL_Coord /*my*/, 
179                                     int key, void * xev)
180 {
181         return Toolbar::BubblePost(ob, event, 0, 0, key, xev);
182 }
183
184
185 void Toolbar::activate()
186 {
187         toolbarItem * tmp= 0;
188         toolbarItem * item = toollist;
189         while(item){
190                 tmp = item->next;
191                 if (item->icon) {
192                         fl_activate_object(item->icon);
193                 }
194                 item = tmp;
195         }
196 }
197
198
199 void Toolbar::deactivate()
200 {
201         toolbarItem * tmp= 0;
202         toolbarItem * item = toollist;
203         while(item){
204                 tmp = item->next;
205                 if (item->icon) {
206                         fl_deactivate_object(item->icon);
207                 }
208                 item = tmp;
209         }
210 }
211
212
213 void Toolbar::ToolbarCB(FL_OBJECT * ob, long ac)
214 {
215         Toolbar * t = reinterpret_cast<Toolbar*>(ob->u_ldata);
216         
217         string res = t->owner->getLyXFunc()->Dispatch(int(ac));
218         if(!res.empty())
219                 lyxerr[Debug::TOOLBAR] << res << endl;
220 }
221
222
223 extern "C" void C_Toolbar_ToolbarCB(FL_OBJECT * ob, long data)
224 {
225         Toolbar::ToolbarCB(ob, data);
226 }
227
228
229 int Toolbar::get_toolbar_func(string const & func)
230 {
231         int action = lyxaction.LookupFunc(func.c_str());
232         if (action == -1) {
233                 if (func == "separator"){
234                         action = TOOL_SEPARATOR;
235                 } else if (func == "layouts"){
236                         action = TOOL_LAYOUTS;
237                 } else action = 0;
238         }
239         return action;
240 }
241
242
243 void Toolbar::init()
244 {
245         add(TOOL_LAYOUTS);
246         add(LFUN_MENUOPEN);
247         //add(LFUN_CLOSEBUFFER);
248         add(LFUN_MENUWRITE);
249         add(LFUN_MENUPRINT);
250         add(TOOL_SEPARATOR);
251
252         add(LFUN_CUT);
253         add(LFUN_COPY);
254         add(LFUN_PASTE);
255         add(TOOL_SEPARATOR);
256         
257         add(LFUN_EMPH);
258         add(LFUN_NOUN);
259         add(LFUN_FREE);
260         add(TOOL_SEPARATOR);
261         
262         add(LFUN_FOOTMELT);
263         add(LFUN_MARGINMELT);
264         add(LFUN_DEPTH);
265         add(TOOL_SEPARATOR);
266
267         add(LFUN_TEX);
268         add(LFUN_MATH_MODE);
269         add(TOOL_SEPARATOR);
270
271         add(LFUN_FIGURE);
272         add(LFUN_TABLE);
273         //add(LFUN_MELT);
274 }
275
276
277 void Toolbar::set(bool doingmain)
278 {
279         // we shouldn't set if we have not cleaned
280         if (!cleaned) return;
281         
282         FL_OBJECT * obj;
283         toolbarItem * item = toollist;
284         
285         if (!doingmain) {
286                 fl_freeze_form(owner->getForm());
287                 fl_addto_form(owner->getForm());
288         }
289
290         // add the time if it don't exist
291         if (bubble_timer == 0)
292                 bubble_timer = fl_add_timer(FL_HIDDEN_TIMER,
293                                             xpos, ypos, 0, 0, "Timer");
294         
295         while(item != 0) {
296                 switch(item->action){
297                 case TOOL_SEPARATOR:
298                         xpos += sepspace;
299                         item = item->next;
300                         break;
301                 case TOOL_LAYOUTS:
302                         xpos += standardspacing;
303                         if (!combox)
304                                 combox = new Combox(FL_COMBOX_DROPLIST);
305                         combox->add(xpos, ypos, 135, height, 400);
306                         combox->setcallback(LayoutsCB);
307                         combox->resize(FL_RESIZE_ALL);
308                         combox->gravity(NorthWestGravity, NorthWestGravity);
309                         item = item->next;
310                         xpos += 135;
311                         break;
312                 default:
313                         xpos += standardspacing;
314                         item->icon = obj = 
315                                 fl_add_pixmapbutton(FL_NORMAL_BUTTON,
316                                                     xpos, ypos,
317                                                     buttonwidth,
318                                                     height, "");
319                         fl_set_object_boxtype(obj, FL_UP_BOX);
320                         fl_set_object_color(obj, FL_MCOL, FL_BLUE);
321                         fl_set_object_resize(obj, FL_RESIZE_ALL);
322                         fl_set_object_gravity(obj,
323                                               NorthWestGravity,
324                                               NorthWestGravity);
325                         fl_set_object_callback(obj, C_Toolbar_ToolbarCB,
326                                                static_cast<long>(item->action));
327                         // Remove the blue feedback rectangle
328                         fl_set_pixmapbutton_focus_outline(obj, 0);
329
330                         // set the bubble-help (Matthias)
331 #ifdef WITH_WARNINGS
332 #warning This is dangerous!
333 #endif
334                         obj->u_vdata = const_cast<char*>(item->help.c_str());
335                         // we need to know what toolbar this item
336                         // belongs too. (Lgb)
337                         obj->u_ldata = reinterpret_cast<long>(this);
338                           
339                         fl_set_object_posthandler(obj, C_Toolbar_BubblePost);
340
341                         fl_set_pixmapbutton_data(obj, const_cast<char**>(item->pixmap));
342                         item = item->next;
343                         // we must remember to update the positions
344                         xpos += buttonwidth;
345                         // ypos is constant
346                         /* Here will come a check to see if the new
347                          * pos is within the bounds of the main frame,
348                          * and perhaps wrap the toolbar if not.
349                          */
350                         break;
351                 }
352         }
353
354         if (!doingmain) {
355                 fl_end_form();
356                 fl_unfreeze_form(owner->getForm());
357                 // Should be safe to do this here.
358                 owner->updateLayoutChoice();
359         }
360         
361         cleaned = false;
362 }
363
364
365 char const ** Toolbar::getPixmap(kb_action action, string const & arg)
366 {
367         char const ** pixmap = unknown_xpm; //0
368         switch(action){
369         case LFUN_MENUOPEN:    pixmap = open_xpm; break;
370         case LFUN_CLOSEBUFFER: pixmap = close_xpm; break;
371         case LFUN_MENUPRINT:   pixmap = print1_xpm; break;
372         case LFUN_MENUWRITE:   pixmap = save_xpm; break;
373         case LFUN_EMPH:  pixmap = emph_xpm; break;
374         case LFUN_NOUN:        pixmap = noun_xpm; break;
375         case LFUN_FREE:        pixmap = free_xpm; break;
376         case LFUN_FOOTMELT:    pixmap = foot_xpm; break;
377         case LFUN_DEPTH:       pixmap = depth_xpm; break;
378         case LFUN_COPY:        pixmap = copy_xpm; break;
379         case LFUN_CUT:         pixmap = cut_xpm; break;
380         case LFUN_PASTE:       pixmap = paste_xpm; break;
381         case LFUN_TEX:         pixmap = tex_xpm; break;
382         case LFUN_MATH_MODE:   pixmap = math_xpm; break;
383         case LFUN_MARGINMELT:  pixmap = margin_xpm; break;
384         case LFUN_FIGURE:      pixmap = fig_xpm; break;
385         case LFUN_TABLE:       pixmap = tab_xpm; break;
386         case LFUN_MELT:        pixmap = melt_xpm; break;
387         case LFUN_QUIT:        pixmap = quit_xpm; break;
388         case LFUN_RUNDVIPS:    pixmap = update_ps_xpm; break;
389         case LFUN_EXPORT:
390         {
391                 if (arg == "ascii")
392                         pixmap = make_ascii_xpm;
393                 else if (arg == "latex")
394                         pixmap = make_latex_xpm;
395         }
396         break; 
397         case LFUN_LAYOUT:
398         {
399                 if (arg == "Section")
400                         pixmap = layout_sec_xpm;
401                 else if (arg == "LaTeX")
402                         pixmap = layout_latex_xpm;
403                 else if (arg == "LyX-Code")
404                         pixmap = layout_code_xpm;
405                 else if (arg == "Scrap")
406                         pixmap = layout_scrap_xpm;
407                 else
408                         pixmap = layout_std_xpm;
409         }
410         break;
411
412         case LFUN_BOLD : pixmap = bold_xpm; break; 
413         case LFUN_SANS: pixmap = sans_xpm; break; 
414         case LFUN_RUNLATEX: pixmap = run_latex_xpm; break; 
415         case LFUN_BUILDPROG: pixmap = build_xpm; break; 
416         case LFUN_PREVIEWPS: pixmap = view_ps_xpm; break; 
417         case LFUN_PREVIEW: pixmap = view_dvi_xpm; break; 
418         case LFUN_INSERT_MATH:
419         {
420                 if (!arg.empty())
421                         pixmap = get_pixmap_from_symbol(arg.c_str(),
422                                                         buttonwidth,
423                                                         height);
424         }
425         break;
426         default:
427                 //pixmap = unknown_xpm;
428                 break;
429         }
430         return pixmap;
431 }
432
433
434 void Toolbar::add(int action, bool doclean)
435 {
436         if (doclean && !cleaned) clean();
437
438         // this is what we do if we want to add to an existing
439         // toolbar.
440         if (!doclean && owner) {
441                 // first «hide» the toolbar buttons. This is not a real hide
442                 // actually it deletes and frees the button altogether.
443                 lyxerr << "Toolbar::add: «hide» the toolbar buttons." << endl;
444                 toolbarItem * tmp= 0;
445                 toolbarItem * item = toollist;
446
447                 lightReset();
448                 
449                 fl_freeze_form(owner->getForm());
450                 while(item){
451                         tmp = item->next;
452                         if (item->icon) {
453                                 fl_delete_object(item->icon);
454                                 fl_free_object(item->icon);
455                         }
456                         item = tmp;
457                 }
458                 if (combox) {
459                         delete combox;
460                         combox = 0;
461                 }
462                 fl_unfreeze_form(owner->getForm());
463                 cleaned = true; // this is not completely true, but OK anyway
464         }
465         
466         // there exist some special actions not part of
467         // kb_action: SEPARATOR, LAYOUTS
468         char const ** pixmap = 0;
469         string help;
470
471         toolbarItem * newItem, * tmp;
472
473         if (lyxaction.isPseudoAction(action)) {
474                 string arg;
475                 kb_action act = static_cast<kb_action>
476                         (lyxaction.retrieveActionArg(action, arg));
477                 pixmap = getPixmap(act, arg);
478                 help = lyxaction.helpText(act);
479                 help += " ";
480                 help += arg;
481                 lyxerr.debug() << "Pseudo action " << action << endl;
482         } else {
483                 pixmap = getPixmap(static_cast<kb_action>(action));
484                 help = lyxaction.helpText(static_cast<kb_action>(action));
485         }
486         
487         // adds an item to the list
488         if (pixmap != 0
489             || action == TOOL_SEPARATOR
490             || action == TOOL_LAYOUTS)
491                 {
492                         newItem = new toolbarItem;
493                         newItem->action = action;
494                         newItem->pixmap = pixmap;
495                         newItem->help = help;
496                         // the new item is placed at the end of the list
497                         tmp = toollist;
498                         if (tmp != 0){
499                                 while(tmp->next != 0)
500                                         tmp = tmp->next;
501                                 // here is tmp->next == 0
502                                 tmp->next = newItem;
503                         } else
504                                 toollist = newItem;
505                 }
506         //if (action == TOOL_LAYOUTS) {
507         //      combox = new Combox(FL_COMBOX_DROPLIST);
508         //}
509 }
510
511
512 void Toolbar::add(string const & func, bool doclean)
513 {
514         int tf = lyxaction.LookupFunc(func.c_str());
515
516         if (tf == -1){
517                 lyxerr << "Toolbar::add: no LyX command called`"
518                        << func << "'exists!" << endl; 
519         } else {
520                 add(tf, doclean);
521         }
522 }
523
524
525 void Toolbar::clean()
526 {
527         toolbarItem * tmp = 0;
528         toolbarItem * item = toollist;
529
530         reset();
531
532         //now delete all the objects..
533         if (owner)
534                 fl_freeze_form(owner->getForm());
535         while (item) {
536                 tmp = item->next;
537                 delete item;
538                 item = tmp;
539         }
540         lyxerr[Debug::TOOLBAR] << "Combox: " << combox << endl;
541         if (combox) {
542                 delete combox;
543                 combox = 0;
544         }
545         if (owner)
546                 fl_unfreeze_form(owner->getForm());
547         lyxerr[Debug::TOOLBAR] << "toolbar cleaned" << endl;
548         cleaned = true;
549 }
550
551
552 void Toolbar::push(int nth)
553 {
554         lyxerr[Debug::TOOLBAR] << "Toolbar::push: trying to trigger no `"
555                                << nth << '\'' << endl;
556         
557         if (nth == 0) return;
558
559         int count = 0;
560         toolbarItem * tmp = toollist;
561         while (tmp) {
562                 ++count;
563                 if (count == nth) {
564                         fl_trigger_object(tmp->icon);
565                         return;
566                 }
567                 tmp = tmp->next;
568         }
569         // item nth not found...
570         LyXBell();
571 }
572
573
574 void Toolbar::read(LyXLex & lex)
575 {
576         //consistency check
577         if (lex.GetString() != "\\begin_toolbar")
578                 lyxerr << "Toolbar::read: ERROR wrong token:`"
579                        << lex.GetString() << '\'' << endl;
580
581         clean();
582         string func;
583         bool quit = false;
584         
585         lex.pushTable(toolTags, TO_LAST - 1);
586
587         if (lyxerr.debugging(Debug::PARSER))
588                 lex.printTable();
589         
590         while (lex.IsOK() && !quit) {
591                 
592                 lyxerr[Debug::TOOLBAR] << "Toolbar::read: current lex text: `"
593                                        << lex.GetString() << '\'' << endl;
594
595                 switch(lex.lex()) {
596                 case TO_ADD:
597                         if (lex.EatLine()) {
598                                 func = lex.GetString();
599                                 lyxerr[Debug::TOOLBAR]
600                                         << "Toolbar::read TO_ADD func: `"
601                                         << func << "'" << endl;
602                                 add(func);
603                         }
604                         break;
605                    
606                 case TO_SEPARATOR:
607                         add(TOOL_SEPARATOR);
608                         break;
609                    
610                 case TO_LAYOUTS:
611                         add(TOOL_LAYOUTS);
612                         break;
613                    
614                 case TO_NEWLINE:
615                         add(TOOL_NEWLINE);
616                         break;
617                         
618                 case TO_ENDTOOLBAR:
619                         // should not set automatically
620                         //set();
621                         quit = true;
622                         break;
623                 default:
624                         lex.printError("Toolbar::read: "
625                                        "Unknown toolbar tag: `$$Token'");
626                         break;
627                 }
628         }
629         lex.popTable();
630 }