lyx_mirror/src/frontends/qt2/QDelimiterDialog.h
Lars Gullik Bjønnes 99d1627a47 dont use pragma impementation and interface anymore
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-13 16:53:15 +00:00

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