]> git.lyx.org Git - lyx.git/blob - src/frontends/Toolbar.h
remove LFUN_TOOLBAR_PUSH
[lyx.git] / src / frontends / Toolbar.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  *           This file is Copyright 1996-2001
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== */
13
14 #ifndef TOOLBAR_H
15 #define TOOLBAR_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "LString.h"
22
23 class LyXView;
24 class ToolbarDefaults;
25 class Dialogs;
26
27 /** The LyX GUI independent toolbar class
28   The GUI interface is implemented in the corresponding Toolbar_pimpl class.
29   */
30 class Toolbar {
31 public:
32         ///
33         Toolbar(LyXView * o, Dialogs & d,
34                 int x, int y, ToolbarDefaults const &);
35
36         ///
37         ~Toolbar();
38
39         /// (re)sets the toolbar
40         void set(bool doingmain = false);
41
42         /** this is to be the entry point to the toolbar
43           frame, where you can change the toolbar realtime. */
44         void edit();
45         /// add a new button to the toolbar.
46         void add(int , bool doclean = true);
47         /// name of func instead of kb_action
48         void add(string const & , bool doclean = true);
49         /// update the state of the icons
50         void update();
51
52         /// update the layout combox
53         void setLayout(string const & layout);
54         /**
55          * Populate the layout combox - returns whether we did a full
56          * update or not
57          */
58         bool updateLayoutList(int textclass);
59         /// Drop down the layout list
60         void openLayoutList();
61         /// Erase the layout list
62         void clearLayoutList();
63
64         /// Compaq cxx 6.5 requires this to be public
65         struct Pimpl;
66 private:
67         ///
68         friend struct Toolbar::Pimpl;
69         ///
70         Pimpl * pimpl_;
71
72         /**
73          * The last textclass layout list in the layout choice selector
74          */
75         int last_textclass_;
76 };
77 #endif