2002-10-09 08:59:02 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file BulletsModule.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Edwin Leuven
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QBULLETSMODULE_H
|
|
|
|
#define QBULLETSMODULE_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ui/BulletsModuleBase.h"
|
|
|
|
#include "LString.h"
|
2002-11-12 10:12:06 +00:00
|
|
|
#include <vector>
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
class QBrowseBox;
|
2002-11-12 10:12:06 +00:00
|
|
|
class QLineEdit;
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class BulletsModule : public BulletsModuleBase {
|
2002-10-09 08:59:02 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2002-10-20 01:48:28 +00:00
|
|
|
BulletsModule(QWidget* parent = 0, const char* name = 0,
|
|
|
|
WFlags fl = 0);
|
2002-10-09 08:59:02 +00:00
|
|
|
~BulletsModule();
|
2002-11-12 10:12:06 +00:00
|
|
|
|
|
|
|
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();
|
2002-12-01 22:59:25 +00:00
|
|
|
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
private:
|
2002-11-12 10:12:06 +00:00
|
|
|
QLineEdit * le_;
|
|
|
|
|
|
|
|
QBrowseBox * standard_;
|
|
|
|
QBrowseBox * maths_;
|
|
|
|
QBrowseBox * ding1_;
|
|
|
|
QBrowseBox * ding2_;
|
|
|
|
QBrowseBox * ding3_;
|
|
|
|
QBrowseBox * ding4_;
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BULLETSMODULE_H
|