]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiBox.cpp
* GuiBoc.{cpp,h}:
[lyx.git] / src / frontends / qt4 / GuiBox.cpp
1 /**
2  * \file GuiBox.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna (Minipage stuff)
7  * \author Martin Vermeer
8  * \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "GuiBox.h"
16
17 #include "FuncRequest.h"
18 #include "LengthCombo.h"
19 #include "Length.h"
20 #include "qt_helpers.h"
21 #include "Validator.h"
22
23 #include "insets/InsetBox.h"
24
25 #include "support/gettext.h"
26 #include "support/foreach.h"
27 #include "support/lstrings.h"
28
29 #include <QPushButton>
30 #include <QLineEdit>
31
32 #ifdef IN
33 #undef IN
34 #endif
35
36 using namespace std;
37
38
39 namespace lyx {
40 namespace frontend {
41
42 static QStringList boxGuiIds()
43 {
44         return QStringList()
45                 << "Frameless" << "Boxed"
46                 << "ovalbox" << "Ovalbox"
47                 << "Shadowbox" << "Shaded"
48                 << "Doublebox";
49 }
50
51
52 static QStringList boxGuiNames()
53 {
54         return QStringList()
55                 << qt_("No frame") << qt_("Simple rectangular frame")
56                 << qt_("Oval frame, thin") << qt_("Oval frame, thick")
57                 << qt_("Drop shadow") << qt_("Shaded background")
58                 << qt_("Double rectangular frame");
59 }
60
61
62 static QStringList boxGuiSpecialLengthIds()
63 {
64         return QStringList() << "height" << "depth"
65                 << "totalheight" << "width";
66 }
67
68
69 static QStringList boxGuiSpecialLengthNames()
70 {
71         return QStringList() << qt_("Height") << qt_("Depth")
72                 << qt_("Total Height") << qt_("Width");
73 }
74
75
76 GuiBox::GuiBox(QWidget * parent) : InsetParamsWidget(parent)
77 {
78         setupUi(this);
79
80         // fill the box type choice
81         ids_ = boxGuiIds();
82         gui_names_ = boxGuiNames();
83         for (int i = 0; i != ids_.size(); ++i)
84                 typeCO->addItem(gui_names_[i], ids_[i]);
85
86         // add the special units to the height choice
87         // width needs different handling
88         ids_spec_ = boxGuiSpecialLengthIds();
89         gui_names_spec_ = boxGuiSpecialLengthNames();
90         for (int i = 0; i != ids_spec_.size(); ++i)
91                 heightUnitsLC->addItem(gui_names_spec_[i], ids_spec_[i]);
92
93         connect(widthED, SIGNAL(textChanged(QString)), this, SIGNAL(changed()));
94         connect(widthUnitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
95                 this, SIGNAL(changed()));
96         connect(valignCO, SIGNAL(highlighted(QString)), this, SIGNAL(changed()));
97         connect(heightED, SIGNAL(textChanged(QString)), this, SIGNAL(changed()));
98         connect(heightUnitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
99                 this, SIGNAL(changed()));
100         connect(halignCO, SIGNAL(activated(int)), this, SIGNAL(changed()));
101         connect(ialignCO, SIGNAL(activated(int)), this, SIGNAL(changed()));
102
103         heightED->setValidator(unsignedLengthValidator(heightED));
104         widthED->setValidator(unsignedLengthValidator(widthED));
105
106         // initialize the length validator
107         addCheckedWidget(widthED, widthLA);
108         addCheckedWidget(heightED, heightCB);
109
110         initDialog();
111 }
112
113
114 void GuiBox::on_innerBoxCO_activated(QString const & str)
115 {
116         bool const ibox = (str != qt_("None"));
117         QString const outer =
118                 typeCO->itemData(typeCO->currentIndex()).toString();
119         valignCO->setEnabled(ibox);
120         ialignCO->setEnabled(ibox);
121         halignCO->setEnabled(!ibox);
122         heightCB->setEnabled(ibox);
123         // except for frameless and boxed, the width cannot be specified if
124         // there is no inner box
125         bool const width_disabled = (!ibox && outer != "Frameless" &&
126                 outer != "Boxed");
127         widthED->setEnabled(!width_disabled);
128         widthUnitsLC->setEnabled(!width_disabled);
129         pagebreakCB->setEnabled(!ibox && outer == "Boxed");
130         setSpecial(ibox);
131         changed();
132 }
133
134
135 void GuiBox::on_typeCO_activated(int index)
136 {
137         QString const type =
138                 typeCO->itemData(index).toString();
139         bool const frameless = (type == "Frameless");
140         if (frameless) {
141                 valignCO->setEnabled(true);
142                 ialignCO->setEnabled(true);
143                 halignCO->setEnabled(false);
144                 heightCB->setEnabled(true);
145                 setSpecial(true);
146         }
147         if (type != "Boxed")
148                 pagebreakCB->setChecked(false);
149         QString itype =
150                 innerBoxCO->itemData(innerBoxCO->currentIndex()).toString();
151         pagebreakCB->setEnabled(type == "Boxed" && itype == "none");
152         // except for frameless and boxed, the width cannot be specified if
153         // there is no inner box
154         bool const width_disabled = (itype == "none" && !frameless
155                 && type != "Boxed");
156         widthED->setEnabled(!width_disabled);
157         widthUnitsLC->setEnabled(!width_disabled);
158         setInnerType(frameless, itype);
159         changed();
160 }
161
162
163 void GuiBox::initDialog()
164 {
165         setInnerType(true, toqstr("minipage"));
166         widthED->setText("100");
167         widthUnitsLC->setCurrentItem(Length::PCW);
168         heightCB->setCheckState(Qt::Checked);
169         heightED->setText("1");
170         heightUnitsLC->setCurrentItem("totalheight");
171 }
172
173
174 void GuiBox::on_heightCB_stateChanged(int state)
175 {
176         bool const enable = (innerBoxCO->currentText() != qt_("None"))
177                 && (state == Qt::Checked);
178         heightED->setEnabled(enable);
179         heightUnitsLC->setEnabled(enable);
180         changed();
181 }
182
183
184 void GuiBox::on_pagebreakCB_stateChanged()
185 {
186         bool pbreak = (pagebreakCB->checkState() == Qt::Checked);
187         innerBoxCO->setEnabled(!pbreak);
188         widthED->setEnabled(!pbreak);
189         widthUnitsLC->setEnabled(!pbreak);
190         if (!pbreak) {
191                 on_typeCO_activated(typeCO->currentIndex());
192                 return;
193         }
194         valignCO->setEnabled(false);
195         ialignCO->setEnabled(false);
196         halignCO->setEnabled(false);
197         heightCB->setEnabled(false);
198         heightED->setEnabled(false);
199         heightUnitsLC->setEnabled(false);
200         setSpecial(false);
201         changed();
202 }
203
204
205 void GuiBox::paramsToDialog(Inset const * inset)
206 {
207         InsetBox const * box = static_cast<InsetBox const *>(inset);
208         InsetBoxParams const & params = box->params();
209         QString type = toqstr(params.type);
210         if (type == "Framed") {
211                 pagebreakCB->setChecked(true);
212                 type = "Boxed";
213         } else {
214                 pagebreakCB->setChecked(false);
215         }
216
217         pagebreakCB->setEnabled(type == "Boxed" && !params.inner_box);
218
219         typeCO->setCurrentIndex(typeCO->findData(type));
220
221         // default: minipage
222         QString inner_type = "minipage";
223         if (!params.inner_box)
224                 inner_type = "none";
225         if (params.use_parbox)
226                 inner_type = "parbox";
227         bool const frameless = (params.type == "Frameless");
228         setInnerType(frameless, inner_type);
229
230         char c = params.pos;
231         valignCO->setCurrentIndex(string("tcb").find(c, 0));
232         c = params.inner_pos;
233         ialignCO->setCurrentIndex(string("tcbs").find(c, 0));
234         c = params.hor_pos;
235         halignCO->setCurrentIndex(string("lcrs").find(c, 0));
236
237         bool ibox = params.inner_box;
238         valignCO->setEnabled(ibox);
239         ialignCO->setEnabled(ibox);
240         halignCO->setEnabled(!ibox);
241         setSpecial(ibox);
242
243         Length::UNIT const default_unit = Length::defaultUnit();
244
245         lengthToWidgets(widthED, widthUnitsLC,
246                 (params.width).asString(), default_unit);
247
248         QString const special = toqstr(params.special);
249         if (!special.isEmpty() && special != "none")
250                 widthUnitsLC->setCurrentItem(special);
251
252         lengthToWidgets(heightED, heightUnitsLC,
253                 (params.height).asString(), default_unit);
254         
255         QString const height_special = toqstr(params.height_special);
256         if (!height_special.isEmpty() && height_special != "none")
257                 heightUnitsLC->setCurrentItem(height_special);
258         // set no optional height if the value is the default "1\height"
259         // (special units like \height are handled as "in",
260         // FIXME: this is a very bad UI, this check box should be disabled in
261         // this case, not forced to 'unchecked' state.
262         if (height_special == "totalheight" && params.height == Length("1in"))
263                 heightCB->setCheckState(Qt::Unchecked);
264         else
265                 heightCB->setCheckState(Qt::Checked);
266
267         heightCB->setEnabled(ibox);
268 }
269
270
271 docstring GuiBox::dialogToParams() const
272 {
273         bool const pagebreak =
274                 pagebreakCB->isEnabled() && pagebreakCB->isChecked();
275         string box_type;
276         if (pagebreak)
277                 box_type = "Framed";
278         else
279                 box_type = fromqstr(typeCO->itemData(
280                                 typeCO->currentIndex()).toString());
281
282         InsetBoxParams params(box_type);
283         params.inner_box =
284                 (!pagebreak && innerBoxCO->currentText() != qt_("None"));
285         params.use_parbox =
286                 (!pagebreak && innerBoxCO->currentText() == qt_("Parbox"));
287
288         params.pos = "tcb"[valignCO->currentIndex()];
289         params.inner_pos = "tcbs"[ialignCO->currentIndex()];
290         params.hor_pos = "lcrs"[halignCO->currentIndex()];
291
292         QString unit =
293                 widthUnitsLC->itemData(widthUnitsLC->currentIndex()).toString();
294         QString value = widthED->text();
295         if (ids_spec_.contains(unit) && !isValidLength(fromqstr(value))) {
296                 params.special = fromqstr(unit);
297                 // Note: the unit is simply ignored in this case
298                 params.width = Length(value.toDouble(), Length::IN);
299         } else {
300                 params.special = "none";
301                 params.width = Length(widgetsToLength(widthED, widthUnitsLC));
302         }
303
304         // the height parameter is omitted if the value
305         // is "1in" and "Total Height" is used as unit.
306         // 1in + "Total Height" means "1\height" which is the LaTeX default
307         // if no height is given
308         if (heightCB->checkState() == Qt::Unchecked) {
309                 params.height = Length("1in");
310                 params.height_special = "totalheight";
311         } else {
312                 unit = heightUnitsLC->itemData(heightUnitsLC->currentIndex()).toString();
313                 value = heightED->text();
314                 if (ids_spec_.contains(unit) && !isValidLength(fromqstr(value))) {
315                         params.height_special = fromqstr(unit);
316                         // Note: the unit is simply ignored in this case
317                         params.height = Length(value.toDouble(), Length::IN);
318                 } else {
319                         params.height_special = "none";
320                         params.height =
321                                 Length(widgetsToLength(heightED, heightUnitsLC));
322                 }
323         }
324         return from_ascii(InsetBox::params2string(params));
325 }
326
327
328 void GuiBox::setSpecial(bool ibox)
329 {
330         QString const last_item =
331                 widthUnitsLC->itemData(heightUnitsLC->currentIndex()).toString();
332
333         // check if the widget contains the special units
334         bool const has_special = (widthUnitsLC->findData("totalheight") != -1);
335         // insert 'em if needed...
336         if (!ibox && !has_special) {
337                 for (int i = 1; i < ids_spec_.size(); ++i)
338                         widthUnitsLC->addItem(gui_names_spec_[i], ids_spec_[i]);
339         // ... or remove 'em if needed
340         } else if (ibox && has_special) {
341                 for (int i = 1; i < ids_spec_.size(); ++i) {
342                         int n = widthUnitsLC->findData(ids_spec_[i]);
343                         if (n != -1)
344                                 widthUnitsLC->removeItem(n);
345                 }
346         }
347         // restore selected text, if possible
348         widthUnitsLC->setCurrentItem(last_item);
349 }
350
351
352 void GuiBox::setInnerType(bool frameless, QString const & type)
353 {
354         // with "frameless" boxes, inner box is mandatory
355         // (i.e. is the actual box)
356         // we have to remove "none" then and adjust the combo
357         innerBoxCO->clear();
358         if (!frameless)
359                 innerBoxCO->addItem(qt_("None"), toqstr("none"));
360         innerBoxCO->addItem(qt_("Parbox"), toqstr("parbox"));
361         innerBoxCO->addItem(qt_("Minipage"), toqstr("minipage"));
362         int i = (innerBoxCO->findData(type) != -1)
363                 ? innerBoxCO->findData(type) : 0;
364         innerBoxCO->setCurrentIndex(i);
365 }
366
367 } // namespace frontend
368 } // namespace lyx
369
370
371 #include "moc_GuiBox.cpp"