]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/BulletsModule.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / BulletsModule.h
1 // -*- C++ -*-
2 /**
3  * \file BulletsModule.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QBULLETSMODULE_H
13 #define QBULLETSMODULE_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/BulletsModuleBase.h"
20 #include "LString.h"
21 #include <vector>
22
23 class QBrowseBox;
24 class QLineEdit;
25
26
27 class BulletsModule : public BulletsModuleBase {
28         Q_OBJECT
29 public:
30         BulletsModule(QWidget* parent = 0, const char* name = 0,
31                       WFlags fl = 0);
32         ~BulletsModule();
33
34 protected slots:
35         ///
36         void standard(int row, int col);
37         ///
38         void maths(int row, int col);
39         ///
40         void ding1(int row, int col);
41         ///
42         void ding2(int row, int col);
43         ///
44         void ding3(int row, int col);
45         ///
46         void ding4(int row, int col);
47         ///
48         void setlevel1();
49         ///
50         void setlevel2();
51         ///
52         void setlevel3();
53         ///
54         void setlevel4();
55
56
57 private:
58         QLineEdit * le_;
59
60         QBrowseBox * standard_;
61         QBrowseBox * maths_;
62         QBrowseBox * ding1_;
63         QBrowseBox * ding2_;
64         QBrowseBox * ding3_;
65         QBrowseBox * ding4_;
66
67 };
68
69 #endif // BULLETSMODULE_H