]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Menubar_pimpl.h
69ff06e8425df0214aed65445667017da4d01943
[features.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         void add_lastfiles(int menu, string const & extra_label,
52                            std::vector<int> & smn, StrPool & strpool);
53         /// Add to "menu" the list of opened documents
54         /// (add "extra_label" to the last entry)
55         void add_documents(int menu, string const & extra_label,
56                            std::vector<int> & smn, StrPool & strpool);
57         ///
58         int create_submenu(Window win, LyXView * view, 
59                            string const & menuname, 
60                            std::vector<int> & smn, StrPool & strpool);
61
62         /// update the state of the menuitems
63         void update() { }
64
65 private:
66         ///
67         FL_OBJECT * frame_;
68         /// 
69         LyXView * owner_;
70         ///
71         MenuBackend const * menubackend_;
72         ///
73         string current_menu;
74         ///
75         struct ItemInfo {
76                 ///
77                 ItemInfo(Menubar::Pimpl * p, MenuItem const * i, 
78                            FL_OBJECT * o) 
79                         : pimpl_(p), item_(i), obj_(o) {}
80                 ///
81                 Menubar::Pimpl * pimpl_;
82                 ///
83                 MenuItem const * item_;
84                 ///
85                 FL_OBJECT * obj_;
86         };
87
88         ///
89         typedef std::vector<ItemInfo *> ButtonList;
90         ///
91         ButtonList buttonlist_;
92 };
93 #endif