mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
924 B
C++
47 lines
924 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QDelimiterDialog.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef QDELIMITERDIALOG_H
|
|
#define QDELIMITERDIALOG_H
|
|
|
|
|
|
#include "ui/QDelimiterDialogBase.h"
|
|
#include "LString.h"
|
|
|
|
class QMath;
|
|
class IconPalette;
|
|
class QLabel;
|
|
|
|
class QDelimiterDialog : public QDelimiterDialogBase {
|
|
Q_OBJECT
|
|
public:
|
|
QDelimiterDialog(QMath * form);
|
|
public slots:
|
|
void ldelim_clicked(const string & str);
|
|
void rdelim_clicked(const string & str);
|
|
void insertClicked();
|
|
protected:
|
|
//needed ? virtual void closeEvent(QCloseEvent * e);
|
|
private:
|
|
void set_label(QLabel * label, string const & str);
|
|
|
|
/// symbol of left delimiter
|
|
string left_;
|
|
|
|
/// symbol of right delimiter
|
|
string right_;
|
|
|
|
/// owning form
|
|
QMath * form_;
|
|
};
|
|
|
|
#endif // QDELIMITERDIALOG_H
|