]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiBox.h
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / 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 "InsetParamsWidget.h"
17 #include "ui_BoxUi.h"
18
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 { return BOX_CODE; }
42         FuncCode creationCode() const { return LFUN_BOX_INSERT; }
43         void paramsToDialog(Inset const *);
44         docstring dialogToParams() const;
45         //@}
46
47         /// add and remove special lengths
48         void setSpecial(bool ibox);
49         /// only show valid inner box items
50         void setInnerType(bool frameless, QString const & type);
51
52         QStringList ids_;
53         ///
54         QStringList gui_names_;
55         ///
56         QStringList ids_spec_;
57         ///
58         QStringList gui_names_spec_;
59 };
60
61 } // namespace frontend
62 } // namespace lyx
63
64 #endif // GUIBOX_H