]> git.lyx.org Git - features.git/blob - src/frontends/qt2/BulletsModule.h
new tabular dialog + new widget. more bullet stuff (not finished yet though).
[features.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
22 class QBrowseBox;
23
24 class BulletsModule : public BulletsModuleBase {
25         Q_OBJECT
26 public:
27         BulletsModule(QWidget* parent = 0, const char* name = 0,
28                       WFlags fl = 0);
29         ~BulletsModule();
30         
31 public slots:
32         void checkThis(int,int);
33         void setLevel1();
34         
35 private:
36         QBrowseBox * standard;
37         QBrowseBox * maths;
38         QBrowseBox * ding1;
39         QBrowseBox * ding2;
40         QBrowseBox * ding3;
41         QBrowseBox * ding4;
42 };
43
44 #endif // BULLETSMODULE_H