]> git.lyx.org Git - lyx.git/blob - src/frontends/Toolbars.h
Session/Toolbars:
[lyx.git] / src / frontends / Toolbars.h
1 // -*- C++ -*-
2 /**
3  * \file Toolbars.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * The Toolbars class is a container of toolbars.
13  * It provides accessors to each Toolbar and to the LayoutBox.
14  *
15  * Each GUI frontend should provide toolbar and layout boxes by derivation
16  * from the LayoutBox and Toolbar pure abstract classes.
17  *
18  * The Toolbars class has no knowledge at all of the details of each
19  * frontend's implementation, which requires that each frontend should
20  * provide a 'make_toolbar' function, signature below.
21  */
22
23 #ifndef TOOLBARS_H
24 #define TOOLBARS_H
25
26 #include "ToolbarBackend.h"
27 #include <boost/shared_ptr.hpp>
28 #include <map>
29 #include "session.h"
30
31
32 namespace lyx {
33
34 class LyXView;
35
36 class LayoutBox {
37 public:
38         virtual ~LayoutBox() {}
39         /// Select the correct layout in the combox.
40         virtual void set(std::string const & layout) = 0;
41         /// Populate the layout combox.
42         virtual void update() = 0;
43         /// Erase the layout list.
44         virtual void clear() = 0;
45         /// Display the layout list.
46         virtual void open() = 0;
47         /// Set the activation status of the combox.
48         virtual void setEnabled(bool) = 0;
49 };
50
51
52 class Toolbar {
53 public:
54         virtual ~Toolbar() {}
55         /// Add a button to the bar.
56         virtual void add(FuncRequest const & func, docstring const & tooltip) = 0;
57
58         /** Hide the bar.
59          *  \param update_metrics is a hint to the layout engine that the
60          *  metrics should be updated.
61          */
62         virtual void hide(bool update_metrics) = 0;
63         /** Show the bar.
64          *  \param update_metrics is a hint to the layout engine that the
65          *  metrics should be updated.
66          */
67         virtual void show(bool update_metrics) = 0;
68         /** update toolbar information
69         * ToolbarInfo will then be saved by session
70         */
71         virtual void saveInfo(ToolbarSection::ToolbarInfo & info) = 0;
72
73         /// Refresh the contents of the bar.
74         virtual void update() = 0;
75         /// Accessor to the layout combox, if any.
76         virtual LayoutBox * layout() const = 0;
77 };
78
79
80 class Toolbars {
81 public:
82         ///
83         Toolbars(LyXView & owner);
84
85         /// Initialize the toolbars using the backend database.
86         void init();
87
88         /// Show/hide the named toolbar.
89         void display(std::string const & name, bool show);
90
91         /// toggle the state of toolbars (on/off/auto)
92         void toggleToolbarState(std::string const & name);
93
94         /// Update the state of the toolbars.
95         void update(bool in_math, bool in_table, bool review);
96
97         /// save toolbar information
98         void saveToolbarInfo();
99
100         /// Select the right layout in the combox.
101         void setLayout(std::string const & layout);
102
103         /** Populate the layout combox - returns whether we did a full
104          *  update or not
105          */
106         bool updateLayoutList(int textclass);
107
108         /// Drop down the layout list.
109         void openLayoutList();
110         /// Erase the layout list.
111         void clearLayoutList();
112
113         ///
114         typedef boost::shared_ptr<Toolbar> ToolbarPtr;
115
116 private:
117         /// Add a new toolbar.
118         void add(ToolbarBackend::Toolbar const & tb);
119         /// Show or hide a toolbar.
120         void displayToolbar(ToolbarBackend::Toolbar const & tb, bool show);
121         /// Update the state of the icons
122         void update();
123
124         /// The parent window.
125         LyXView & owner_;
126
127         /** The layout box is actually owned by whichever toolbar
128          *  contains it. All the Toolbars class needs is a means of
129          *  accessing it.
130          *
131          *  We don't need to use boost::weak_ptr here because the toolbars
132          *  are also stored here. There are, therefore, no lifetime issues.
133          */
134         LayoutBox * layout_;
135
136         /// Toolbar store providing access to individual toolbars by name.
137         typedef std::map<std::string, ToolbarPtr> ToolbarsMap;
138         ToolbarsMap toolbars_;
139
140         /// The last textclass layout list in the layout choice selector
141         int last_textclass_;
142
143         // load flags with saved values
144         void initFlags(ToolbarBackend::Toolbar & tbb);
145 };
146
147 /// Set the layout in the kernel when an entry has been selected
148 void layoutSelected(LyXView & lv, std::string const & name);
149
150
151 } // namespace lyx
152
153 #endif // NOT TOOLBARS_H