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-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
class QBrowseBox;
|
|
|
|
|
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();
|
|
|
|
public slots:
|
|
|
|
void checkThis(int,int);
|
|
|
|
void setLevel1();
|
|
|
|
private:
|
|
|
|
QBrowseBox * standard;
|
|
|
|
QBrowseBox * maths;
|
|
|
|
QBrowseBox * ding1;
|
|
|
|
QBrowseBox * ding2;
|
|
|
|
QBrowseBox * ding3;
|
|
|
|
QBrowseBox * ding4;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BULLETSMODULE_H
|