]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.h
fix tooltips in toolbar
[lyx.git] / src / frontends / xforms / Menubar_pimpl.h
1 // -*- C++ -*-
2 /**
3  * \file Menubar_pimpl.h
4  * Copyright 1995 Matthias Ettrich
5  * Copyright 1995-2002 the LyX Team
6  * Copyright 1996-2001 Lars Gullik Bjønnes
7  * Read the file COPYING
8  *
9  * \author Lars Gullik Bjønnes, larsbj@lyx.org
10  */
11
12 #ifndef MENUBAR_PIMPL_H
13 #define MENUBAR_PIMPL_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "LString.h"
20 #include "frontends/Menubar.h"
21
22 #include <boost/shared_ptr.hpp>
23
24 #include "forms_fwd.h"
25 #include <X11/X.h> // Window
26
27 #include <vector>
28 #include <map>
29
30 class LyXView;
31 class XFormsView;
32 class Menu;
33 class MenuItem;
34
35 /** The LyX GUI independent menubar class
36   The GUI interface is implemented in the corresponding Menubar_pimpl class.
37   */
38 struct Menubar::Pimpl {
39 public:
40         ///
41         Pimpl(LyXView *, MenuBackend const &);
42
43         /// update the state of the menuitems
44         void update();
45
46         /// Opens a top-level submenu given its name
47         void openByName(string const &);
48
49         ///
50         static void MenuCallback(FL_OBJECT *, long);
51
52 private:
53         ///
54         void add_toc(int menu, string const & extra_label,
55                      std::vector<int> & smn, Window win);
56         ///
57         void add_references(int menu, string const & extra_label,
58                             std::vector<int> & smn, Window win);
59         ///
60         int create_submenu(Window win, XFormsView * view,
61                            Menu const & menu, std::vector<int> & smn);
62
63         //
64         void makeMenubar(Menu const &menu);
65
66         ///
67         XFormsView * owner_;
68         ///
69         MenuBackend const * menubackend_;
70         ///
71         struct ItemInfo {
72                 ///
73                 ItemInfo(Menubar::Pimpl * p, MenuItem const * i,
74                          FL_OBJECT * o)
75
76                         : pimpl_(p), obj_(o) { item_.reset(i); }
77                 ///
78                 Menubar::Pimpl * pimpl_;
79                 ///
80                 boost::shared_ptr<MenuItem const> item_;
81                 ///
82                 FL_OBJECT * obj_;
83         };
84
85         ///
86         typedef std::vector<boost::shared_ptr<ItemInfo> > ButtonList;
87         ///
88         ButtonList buttonlist_;
89 };
90 #endif