]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiLine.h
rename buffer parameter math_number_before to math_numbering_side
[lyx.git] / src / frontends / qt4 / GuiLine.h
1 // -*- C++ -*-
2 /**
3  * \file GuiLine.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  * \author Uwe Stöhr
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUILINE_H
14 #define GUILINE_H
15
16 #include "InsetParamsWidget.h"
17 #include "ui_LineUi.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class GuiLine : public InsetParamsWidget, public Ui::LineUi
23 {
24         Q_OBJECT
25
26 public:
27         GuiLine(QWidget * parent = 0);
28
29 private:
30         /// \name InsetParamsWidget inherited methods
31         //@{
32         InsetCode insetCode() const { return LINE_CODE; }
33         FuncCode creationCode() const { return LFUN_INSET_INSERT; }
34         QString dialogTitle() const { return qt_("Line Settings"); }
35         void paramsToDialog(Inset const *);
36         docstring dialogToParams() const;
37         bool checkWidgets(bool readonly) const;
38         //@}
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // GUILINE_H