]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiBox.h
Import Additional from 2.4.x
[lyx.git] / src / frontends / qt / GuiBox.h
1 // -*- C++ -*-
2 /**
3  * \file GuiBox.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Spitzmüller
8  * \author Martin Vermeer (with useful hints from Angus Leeming)
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUIBOX_H
14 #define GUIBOX_H
15
16 #include "ColorCode.h"
17 #include "InsetParamsWidget.h"
18 #include "ui_BoxUi.h"
19
20 namespace lyx {
21 namespace frontend {
22
23 class GuiBox : public InsetParamsWidget, public Ui::BoxUi
24 {
25         Q_OBJECT
26
27 public:
28         GuiBox(QWidget * parent = 0);
29
30 private Q_SLOTS:
31         void on_innerBoxCO_activated(int);
32         void on_typeCO_activated(int);
33         void initDialog();
34         void on_widthCB_stateChanged(int state);
35         void on_heightCB_stateChanged(int state);
36         void on_pagebreakCB_stateChanged();
37
38 private:
39         /// \name DialogView inherited methods
40         //@{
41         InsetCode insetCode() const override { return BOX_CODE; }
42         FuncCode creationCode() const override { return LFUN_BOX_INSERT; }
43         QString dialogTitle() const override { return qt_("Box Settings"); }
44         void paramsToDialog(Inset const *) override;
45         docstring dialogToParams() const override;
46         bool checkWidgets(bool readonly) const override;
47         //@}
48
49         /// Fill the color combos
50         void fillComboColor(QComboBox * combo, bool const is_background);
51         /// add and remove special lengths
52         void setSpecial(bool ibox);
53         /// only show valid inner box items
54         void setInnerType(bool frameless, QString const & type);
55
56         QStringList ids_;
57         ///
58         QStringList gui_names_;
59         ///
60         QStringList ids_spec_;
61         ///
62         QStringList gui_names_spec_;
63         ///
64         QList<ColorCode> color_codes_;
65 };
66
67 } // namespace frontend
68 } // namespace lyx
69
70 #endif // GUIBOX_H