]> git.lyx.org Git - lyx.git/blob - src/insets/insetbutton.h
Copyright notices
[lyx.git] / src / insets / insetbutton.h
1 // -*- C++ -*-
2 /**
3  * \file insetbutton.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Asger Alstrup Nielsen
8  * \author Jürgen Vigna
9  * \author Lars Gullik Bjønnes
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #ifndef INSET_BUTTON_H
15 #define INSET_BUTTON_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "inset.h"
22 #include "LString.h"
23
24 /** Used to provide an inset that looks like a button.
25  */
26 class InsetButton: public Inset {
27 public:
28         ///
29         int ascent(BufferView *, LyXFont const &) const;
30         ///
31         int descent(BufferView *, LyXFont const &) const;
32         ///
33         int width(BufferView *, LyXFont const &) const;
34         ///
35         void draw(BufferView *, LyXFont const &, int, float &, bool) const;
36
37 protected:
38         /// This should provide the text for the button
39         virtual string const getScreenLabel(Buffer const *) const = 0;
40 };
41
42 #endif