]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiToolbars.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiToolbars.h
1 // -*- C++ -*-
2 /**
3  * \file GuiToolbars.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  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef GUI_TOOLBARS_H
15 #define GUI_TOOLBARS_H
16
17 #include "support/docstring.h"
18
19 #include <map>
20
21 namespace lyx {
22
23 class DocumentClass;
24 class ToolbarInfo;
25
26 namespace frontend {
27
28 class GuiToolbar;
29 class GuiView;
30
31 class GuiToolbars
32 {
33 public:
34         ///
35         GuiToolbars(GuiView & owner);
36
37         /// Initialize the toolbars using the backend database.
38         void init();
39
40         /// Show/hide the named toolbar.
41         void display(std::string const & name, bool show);
42
43         /// get toolbar info
44         ToolbarInfo * getToolbarInfo(std::string const & name);
45
46         /** toggle the state of toolbars (on/off/auto). Skip "auto"
47          * when allowauto is false.
48          */
49         void toggleToolbarState(std::string const & name, bool allowauto);
50
51         /// Update the state of the toolbars.
52         void update(bool in_math, bool in_table, bool review, 
53                     bool in_mathmacrotemplate);
54
55         /// Is the Toolbar currently visible?
56         bool visible(std::string const & name) const;
57
58         /// save toolbar information
59         void saveToolbarInfo();
60
61         /// Show or hide the command buffer.
62         void showCommandBuffer(bool show_it);
63
64         /// toggle visibility of toolbars and save its flags for return
65         void toggleFullScreen(bool start_full_screen);
66
67 private:
68         /// Add a new toolbar. if newline==true, start from a new line
69         void add(ToolbarInfo const & tbinfo, bool newline);
70
71         /// Show or hide a toolbar.
72         void displayToolbar(ToolbarInfo const & tbinfo, bool show);
73
74         /// Update the state of the icons
75         void updateIcons();
76
77         // load flags with saved values
78         void initFlags(ToolbarInfo & tbinfo);
79
80         /// The parent window.
81         GuiView & owner_;
82
83         /// Toolbar store providing access to individual toolbars by name.
84         typedef std::map<std::string, GuiToolbar *> ToolbarsMap;
85         ToolbarsMap toolbars_;
86
87         /// The last textclass layout list in the layout choice selector
88         DocumentClass * last_textclass_;
89 };
90
91
92 } // namespace frontend
93 } // namespace lyx
94
95 #endif // GUI_TOOLBARS_H