2006-03-05 17:24:44 +00:00
|
|
|
// -*- 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/QDelimiterUi.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class QMathDelimiter;
|
|
|
|
|
|
|
|
class QDelimiterDialog : public QDialog, public Ui::QDelimiterUi {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QDelimiterDialog(QMathDelimiter * form);
|
2006-06-30 14:37:33 +00:00
|
|
|
public Q_SLOTS:
|
2006-08-16 14:22:47 +00:00
|
|
|
void on_leftCO_activated(int);
|
|
|
|
void on_rightCO_activated(int);
|
|
|
|
void on_matchCB_stateChanged(int);
|
2006-03-05 17:24:44 +00:00
|
|
|
void insertClicked();
|
|
|
|
private:
|
|
|
|
/// owning form
|
|
|
|
QMathDelimiter * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // QDELIMITERDIALOG_H
|