]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Toolbar_pimpl.h
remove LFUN_TOOLBAR_PUSH
[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 QLComboBox;
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         /// update the state of the icons
56         void update();
57
58         /// select the right layout in the combox
59         void setLayout(string const & layout);
60         /// Populate the layout combox; re-do everything if force is true.
61         void updateLayoutList(bool force);
62         /// Drop down the layout list
63         void openLayoutList();
64         /// Erase the layout list
65         void clearLayoutList();
66
67 private:
68         void changed_layout(string const & sel);
69
70         void button_selected(QToolButton * button);
71  
72         QtView * owner_; 
73
74         boost::scoped_ptr<ToolbarProxy> proxy_;
75
76         std::vector<QToolBar *> toolbars_;
77
78         QLComboBox * combo_;
79
80         typedef std::map<QToolButton *, int> ButtonMap;
81
82         ButtonMap map_;
83  
84 };
85
86  
87 // moc is mind-numbingly stupid
88 class ToolbarProxy : public QObject {
89         Q_OBJECT
90
91 public:
92         ToolbarProxy(Toolbar::Pimpl & owner)
93                 : owner_(owner) { };
94  
95 public slots:
96  
97         void layout_selected(const QString & str) {
98                 owner_.changed_layout(str.latin1());
99         }
100
101         void button_selected() {
102                 owner_.button_selected(
103                         const_cast<QToolButton *>(
104                         static_cast<QToolButton const *>(sender()))
105                 );
106         }
107
108 private:
109         Toolbar::Pimpl & owner_;
110 };
111  
112 #endif