]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/BulletsModule.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / BulletsModule.h
index 1e42fea016e78fd8630a324728be54a389a4fc1d..ba977344962b04a87f7e13eed83ea0a9a4cd22ea 100644 (file)
 
 #include "ui/BulletsModuleBase.h"
 #include "LString.h"
+#include <vector>
 
 class QBrowseBox;
+class QLineEdit;
+
 
 class BulletsModule : public BulletsModuleBase {
        Q_OBJECT
@@ -27,16 +30,40 @@ public:
        BulletsModule(QWidget* parent = 0, const char* name = 0,
                      WFlags fl = 0);
        ~BulletsModule();
-public slots:
-   void checkThis(int,int);
-   void setLevel1();
+
+protected slots:
+       ///
+       void standard(int row, int col);
+       ///
+       void maths(int row, int col);
+       ///
+       void ding1(int row, int col);
+       ///
+       void ding2(int row, int col);
+       ///
+       void ding3(int row, int col);
+       ///
+       void ding4(int row, int col);
+       ///
+       void setlevel1();
+       ///
+       void setlevel2();
+       ///
+       void setlevel3();
+       ///
+       void setlevel4();
+       
+       
 private:
-       QBrowseBox * standard;
-       QBrowseBox * maths;
-       QBrowseBox * ding1;
-       QBrowseBox * ding2;
-       QBrowseBox * ding3;
-       QBrowseBox * ding4;
+       QLineEdit * le_;
+
+       QBrowseBox * standard_;
+       QBrowseBox * maths_;
+       QBrowseBox * ding1_;
+       QBrowseBox * ding2_;
+       QBrowseBox * ding3_;
+       QBrowseBox * ding4_;
+
 };
 
 #endif // BULLETSMODULE_H