]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.h
0b4a472264d800c06a2f07582c7a6be29f7075ba
[lyx.git] / src / frontends / xforms / Menubar_pimpl.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2000 The LyX Team.
8  *
9  *           This file is Copyright 1996-2000
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== */
13
14 #ifndef MENUBAR_PIMPL_H
15 #define MENUBAR_PIMPL_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include <vector>
22 #include "LString.h"
23 #include "frontends/Menubar.h"
24 #include FORMS_H_LOCATION
25 class LyXView;
26 class MenuBackend;
27 class MenuItem;
28 class StrPool;
29
30 #include "debug.h"
31
32 /** The LyX GUI independent menubar class
33   The GUI interface is implemented in the corresponding Menubar_pimpl class. 
34   */
35 struct Menubar::Pimpl {
36 public:
37         ///
38         Pimpl(LyXView *, MenuBackend const &);
39         ///
40         ~Pimpl();
41         ///
42         void set(string const &);
43         /// Opens a top-level submenu given its name
44         void openByName(string const &);
45
46         ///
47         static void MenuCallback(FL_OBJECT *, long);
48
49         /** Add to "menu" the list of last opened files
50             (add "extra_label" to the last entry)
51         */
52         void add_lastfiles(int menu, string const & extra_label,
53                            std::vector<int> & smn, StrPool & strpool);
54         /** Add to "menu" the list of opened documents
55             (add "extra_label" to the last entry)
56         */
57         void add_documents(int menu, string const & extra_label,
58                            std::vector<int> & smn, StrPool & strpool);
59         ///
60         int create_submenu(Window win, LyXView * view, 
61                            string const & menuname, 
62                            std::vector<int> & smn, StrPool & strpool);
63
64         /// update the state of the menuitems
65         void update() {}
66
67 private:
68         ///
69         FL_OBJECT * frame_;
70         /// 
71         LyXView * owner_;
72         ///
73         MenuBackend const * menubackend_;
74         ///
75         string current_menu;
76         ///
77         struct ItemInfo {
78                 ///
79                 ItemInfo(Menubar::Pimpl * p, MenuItem const * i, 
80                            FL_OBJECT * o) 
81                         : pimpl_(p), item_(i), obj_(o) {}
82                 ///
83                 Menubar::Pimpl * pimpl_;
84                 ///
85                 MenuItem const * item_;
86                 ///
87                 FL_OBJECT * obj_;
88         };
89
90         ///
91         typedef std::vector<ItemInfo *> ButtonList;
92         ///
93         ButtonList buttonlist_;
94 };
95 #endif