]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QDelimiterDialog.h
Add vertical spacer.
[lyx.git] / src / frontends / qt4 / QDelimiterDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QDelimiterDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QDELIMITERDIALOG_H
13 #define QDELIMITERDIALOG_H
14
15 #include "ui/QDelimiterUi.h"
16
17 #include <string>
18
19 class QListWidgetItem;
20
21 namespace lyx {
22 namespace frontend {
23
24 class QMathDelimiter;
25
26 class QDelimiterDialog : public QDialog, public Ui::QDelimiterUi {
27         Q_OBJECT
28 public:
29         QDelimiterDialog(QMathDelimiter * form);
30 public Q_SLOTS:
31         void on_leftLW_itemActivated(QListWidgetItem *);
32         void on_rightLW_itemActivated(QListWidgetItem *);
33         void on_leftLW_currentRowChanged(int);
34         void on_rightLW_currentRowChanged(int);
35         void on_matchCB_stateChanged(int);
36         void insertClicked();
37 private:
38         /// owning form
39         QMathDelimiter * form_;
40 };
41
42 } // namespace frontend
43 } // namespace lyx
44
45 #endif // QDELIMITERDIALOG_H