]> 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 3938f910f7efedf9f319f9ef3b593685e6791e06..ba977344962b04a87f7e13eed83ea0a9a4cd22ea 100644 (file)
 
 #include "ui/BulletsModuleBase.h"
 #include "LString.h"
+#include <vector>
+
 class QBrowseBox;
+class QLineEdit;
+
 
-class BulletsModule : public BulletsModuleBase
-{ 
+class BulletsModule : public BulletsModuleBase {
        Q_OBJECT
 public:
-       
-   BulletsModule( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+       BulletsModule(QWidget* parent = 0, const char* name = 0,
+                     WFlags fl = 0);
        ~BulletsModule();
+
+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();
        
-public slots:
+       
+private:
+       QLineEdit * le_;
 
-   void checkThis(int,int);
-   void setLevel1();
+       QBrowseBox * standard_;
+       QBrowseBox * maths_;
+       QBrowseBox * ding1_;
+       QBrowseBox * ding2_;
+       QBrowseBox * ding3_;
+       QBrowseBox * ding4_;
 
-private:
-       QBrowseBox * standard;
-       QBrowseBox * maths;
-       QBrowseBox * ding1;
-       QBrowseBox * ding2;
-       QBrowseBox * ding3;
-       QBrowseBox * ding4;
 };
 
 #endif // BULLETSMODULE_H