mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
13349032cb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5758 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.1 KiB
C++
70 lines
1.1 KiB
C++
// -*- 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"
|
|
#include <vector>
|
|
|
|
class QBrowseBox;
|
|
class QLineEdit;
|
|
|
|
|
|
class BulletsModule : public BulletsModuleBase {
|
|
Q_OBJECT
|
|
public:
|
|
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();
|
|
|
|
|
|
private:
|
|
QLineEdit * le_;
|
|
|
|
QBrowseBox * standard_;
|
|
QBrowseBox * maths_;
|
|
QBrowseBox * ding1_;
|
|
QBrowseBox * ding2_;
|
|
QBrowseBox * ding3_;
|
|
QBrowseBox * ding4_;
|
|
|
|
};
|
|
|
|
#endif // BULLETSMODULE_H
|