]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiTabular.h
8b42c74029bbf4cbb434cf1acc7a958267120a7e
[lyx.git] / src / frontends / qt4 / GuiTabular.h
1 // -*- C++ -*-
2 /**
3  * \file GuiTabular.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  * \author Kalle Dalheimer
9  * \author Jürgen Spitzmüller
10  * \author Herbert Voß
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef GUITABULAR_H
16 #define GUITABULAR_H
17
18 #include "GuiDialog.h"
19 #include "ui_TabularUi.h"
20 #include "insets/InsetTabular.h"
21
22 namespace lyx {
23 namespace frontend {
24
25 class GuiTabular : public GuiDialog, public Ui::TabularUi
26 {
27         Q_OBJECT
28
29 public:
30         GuiTabular(GuiView & lv);
31         ~GuiTabular();
32
33 private Q_SLOTS:
34         void change_adaptor();
35
36         void topspace_changed();
37         void bottomspace_changed();
38         void interlinespace_changed();
39         void booktabsChanged(bool);
40         void close_clicked();
41         void borderSet_clicked();
42         void borderUnset_clicked();
43         void leftBorder_changed();
44         void rightBorder_changed();
45         void topBorder_changed();
46         void bottomBorder_changed();
47         void multicolumn_clicked();
48         void multirow_clicked();
49         void rotateTabular();
50         void rotateCell();
51         void hAlign_changed(int align);
52         void vAlign_changed(int align);
53         void tableAlignment_changed(int align);
54         void specialAlignment_changed();
55         void width_changed();
56         void longTabular();
57         void ltNewpage_clicked();
58         void ltHeaderStatus_clicked();
59         void ltHeaderBorderAbove_clicked();
60         void ltHeaderBorderBelow_clicked();
61         void ltFirstHeaderStatus_clicked();
62         void ltFirstHeaderBorderAbove_clicked();
63         void ltFirstHeaderBorderBelow_clicked();
64         void ltFirstHeaderEmpty_clicked();
65         void ltFooterStatus_clicked();
66         void ltFooterBorderAbove_clicked();
67         void ltFooterBorderBelow_clicked();
68         void ltLastFooterStatus_clicked();
69         void ltLastFooterBorderAbove_clicked();
70         void ltLastFooterBorderBelow_clicked();
71         void ltLastFooterEmpty_clicked();
72         void ltAlignment_clicked();
73         void on_captionStatusCB_toggled();
74
75 private:
76         ///
77         bool isValid() { return true; }
78         /// update borders
79         void update_borders();
80         /// update
81         void updateContents();
82         /// save some values before closing the gui
83         void closeGUI();
84         ///
85         bool initialiseParams(std::string const & data);
86         /// clean-up on hide.
87         void clearParams();
88         /// We use set() instead.
89         void dispatchParams() {};
90         ///
91         bool isBufferDependent() const { return true; }
92         ///
93         FuncCode getLfun() const { return LFUN_TABULAR_FEATURE; }
94
95         ///
96         Tabular::idx_type getActiveCell() const;
97         /// set a parameter
98         void set(Tabular::Feature, std::string const & arg = std::string());
99
100         void setSpecial(std::string const & special);
101
102         void setWidth(std::string const & width);
103
104         void toggleMultiColumn();
105         void toggleMultiRow();
106
107         void rotateTabular(bool yes);
108         void rotateCell(bool yes);
109
110         enum HALIGN { LEFT, RIGHT, CENTER, BLOCK };
111
112         void halign(HALIGN h);
113
114         enum VALIGN { TOP, MIDDLE, BOTTOM };
115
116         void valign(VALIGN h);
117
118         void booktabs(bool yes);
119
120         void longTabular(bool yes);
121
122         bool funcEnabled(Tabular::Feature f) const;
123
124         ///
125         Tabular::idx_type active_cell_;
126         ///
127         Tabular tabular_;
128 };
129
130 } // namespace frontend
131 } // namespace lyx
132
133 #endif // GUITABULAR_H