]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Toolbar_pimpl.h
remove unused toolbar (de)activate()
[lyx.git] / src / frontends / qt2 / Toolbar_pimpl.h
1 // -*- C++ -*-
2 /**
3  * \file Toolbar_pimpl.h
4  * Copyright 2002 the LyX Team
5  * Copyright 1996-2001 Lars Gullik Bjønnes
6  * Read the file COPYING
7  *
8  * \author Lars Gullik Bjønnes, larsbj@lyx.org
9  */
10
11 #ifndef TOOLBAR_PIMPL_H
12 #define TOOLBAR_PIMPL_H
13
14 #include <config.h>
15 #include <map>
16 #include <vector>
17
18 #include <boost/smart_ptr.hpp>
19  
20 #include "frontends/Toolbar.h"
21
22 #ifdef __GNUG__
23 #pragma interface
24 #endif
25
26 #include <qobject.h>
27 #include <qtoolbutton.h>
28  
29 class QtView;
30 class QToolBar;
31 class QComboBox;
32 class ToolbarProxy;
33
34 struct Toolbar::Pimpl {
35  
36         friend class ToolbarProxy;
37  
38 public:
39         ///
40         Pimpl(LyXView * o, Dialogs &, int x, int y);
41         ///
42         ~Pimpl();
43         
44         /// (re)sets the toolbar
45         void set(bool doingmain = false);
46
47         void reset() { }
48  
49         /** this is to be the entry point to the toolbar
50             frame, where you can change the toolbar realtime.
51         */
52         void edit();
53         /// add a new button to the toolbar.
54         void add(int, bool doclean = true);
55         /// invokes the n'th icon in the toolbar
56         void push(int);
57         /// update the state of the icons
58         void update();
59
60         /// select the right layout in the combox
61         void setLayout(string const & layout);
62         /// Populate the layout combox; re-do everything if force is true.
63         void updateLayoutList(bool force);
64         /// Drop down the layout list
65         void openLayoutList();
66         /// Erase the layout list
67         void clearLayoutList();
68
69 private:
70         void changed_layout(string const & sel);
71
72         void button_selected(QToolButton * button);
73  
74         QtView * owner_; 
75
76         boost::scoped_ptr<ToolbarProxy> proxy_;
77
78         std::vector<QToolBar *> toolbars_;
79
80         QComboBox * combo_;
81
82         typedef std::map<QToolButton *, int> ButtonMap;
83
84         ButtonMap map_;
85  
86 };
87
88  
89 // moc is mind-numbingly stupid
90 class ToolbarProxy : public QObject {
91         Q_OBJECT
92
93 public:
94         ToolbarProxy(Toolbar::Pimpl & owner)
95                 : owner_(owner) { };
96  
97 public slots:
98  
99         void layout_selected(const QString & str) {
100                 owner_.changed_layout(str.latin1());
101         }
102
103         void button_selected() {
104                 owner_.button_selected(
105                         const_cast<QToolButton *>(
106                         static_cast<QToolButton const *>(sender()))
107                 );
108         }
109
110 private:
111         Toolbar::Pimpl & owner_;
112 };
113  
114 #endif