]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.h
Better parbox use in tabulars, add of scrolling of inset and automatic
[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         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 private:
63         ///
64         FL_OBJECT * frame_;
65         /// 
66         LyXView * owner_;
67         ///
68         MenuBackend const * menubackend_;
69         ///
70         string current_menu;
71         ///
72         struct ItemInfo {
73                 ///
74                 ItemInfo(Menubar::Pimpl * p, MenuItem const * i, 
75                            FL_OBJECT * o) 
76                         : pimpl_(p), item_(i), obj_(o) {}
77                 ///
78                 Menubar::Pimpl * pimpl_;
79                 ///
80                 MenuItem const * item_;
81                 ///
82                 FL_OBJECT * obj_;
83         };
84
85         ///
86         typedef std::vector<ItemInfo *> ButtonList;
87         ///
88         ButtonList buttonlist_;
89 };
90 #endif