]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.h
use more specific smart_ptr headers
[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 #include "commandtags.h"
22 #include "MenuBackend.h"
23
24 #include <boost/shared_ptr.hpp>
25
26 #include FORMS_H_LOCATION
27
28 #include <vector>
29 #include <map>
30
31 class LyXView;
32
33 /** The LyX GUI independent menubar class
34   The GUI interface is implemented in the corresponding Menubar_pimpl class.
35   */
36 struct Menubar::Pimpl {
37 public:
38         ///
39         Pimpl(LyXView *, MenuBackend const &);
40         ///
41         void set(string const &);
42         /// Opens a top-level submenu given its name
43         void openByName(string const &);
44
45         ///
46         static void MenuCallback(FL_OBJECT *, long);
47
48         ///
49         void add_toc(int menu, string const & extra_label,
50                      std::vector<int> & smn, Window win);
51         ///
52         void add_references(int menu, string const & extra_label,
53                             std::vector<int> & smn, Window win);
54         ///
55         int create_submenu(Window win, LyXView * view,
56                            string const & menuname,
57                            std::vector<int> & smn);
58
59         /// update the state of the menuitems
60         void update() {}
61 private:
62         //
63         void makeMenubar(Menu const &menu);
64
65         ///
66         LyXView * owner_;
67         ///
68         MenuBackend const * menubackend_;
69         ///
70         struct ItemInfo {
71                 ///
72                 ItemInfo(Menubar::Pimpl * p, MenuItem const * i,
73                          FL_OBJECT * o)
74
75                         : pimpl_(p), obj_(o) { item_.reset(i); }
76                 ///
77                 Menubar::Pimpl * pimpl_;
78                 ///
79                 boost::shared_ptr<MenuItem const> item_;
80                 ///
81                 FL_OBJECT * obj_;
82         };
83
84         ///
85         typedef std::vector<boost::shared_ptr<ItemInfo> > ButtonList;
86         ///
87         ButtonList buttonlist_;
88
89         ///
90         typedef std::map<string, FL_OBJECT *> MenubarMap;
91         ///
92         MenubarMap menubarmap_;
93         ///
94         string current_menu_name_;
95         ///
96         FL_OBJECT * current_group_;
97 };
98 #endif