]> git.lyx.org Git - lyx.git/blob - src/frontends/Toolbar.h
toolbar cleanup. JMarc, Lars, please see the fIXME. I haven't introduced the problem
[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         /// update the state of the icons
40         void update();
41
42         /// update the layout combox
43         void setLayout(string const & layout);
44         /**
45          * Populate the layout combox - returns whether we did a full
46          * update or not
47          */
48         bool updateLayoutList(int textclass);
49         /// Drop down the layout list
50         void openLayoutList();
51         /// Erase the layout list
52         void clearLayoutList();
53
54         /// Compaq cxx 6.5 requires this to be public
55         struct Pimpl;
56 private:
57         ///
58         friend struct Toolbar::Pimpl;
59         ///
60         Pimpl * pimpl_;
61
62         /**
63          * The last textclass layout list in the layout choice selector
64          */
65         int last_textclass_;
66 };
67 #endif