]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiTabular.cpp
Fix bug #6997
[lyx.git] / src / frontends / qt4 / GuiTabular.cpp
1 /**
2  * \file GuiTabular.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Jürgen Spitzmüller
8  * \author Herbert Voß
9  * \author Uwe Stöhr
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "GuiTabular.h"
17
18 #include "GuiApplication.h"
19 #include "GuiSetBorder.h"
20 #include "GuiView.h"
21 #include "LengthCombo.h"
22 #include "qt_helpers.h"
23 #include "Validator.h"
24
25 #include "BufferView.h"
26 #include "Cursor.h"
27 #include "FuncRequest.h"
28 #include "FuncStatus.h"
29 #include "LyX.h"
30 #include "LyXRC.h"
31
32 #include "insets/InsetTabular.h"
33
34 #include "support/debug.h"
35
36 #include <QCheckBox>
37 #include <QPushButton>
38 #include <QRadioButton>
39 #include <QLineEdit>
40
41 using namespace std;
42
43 namespace lyx {
44 namespace frontend {
45
46 GuiTabular::GuiTabular(QWidget * parent)
47         : InsetParamsWidget(parent)
48 {
49         setupUi(this);
50
51         widthED->setValidator(unsignedLengthValidator(widthED));
52         topspaceED->setValidator(new LengthValidator(topspaceED));
53         bottomspaceED->setValidator(new LengthValidator(bottomspaceED));
54         interlinespaceED->setValidator(new LengthValidator(interlinespaceED));
55
56         widthUnitCB->setCurrentItem(Length::defaultUnit());
57
58         connect(topspaceED, SIGNAL(textEdited(QString)),
59                 this, SLOT(checkEnabled()));
60         connect(topspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
61                 this, SLOT(checkEnabled()));
62         connect(topspaceCO, SIGNAL(activated(int)),
63                 this, SLOT(checkEnabled()));
64         connect(bottomspaceED, SIGNAL(textEdited(QString)),
65                 this, SLOT(checkEnabled()));
66         connect(bottomspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
67                 this, SLOT(checkEnabled()));
68         connect(bottomspaceCO, SIGNAL(activated(int)),
69                 this, SLOT(checkEnabled()));
70         connect(interlinespaceED, SIGNAL(textEdited(QString)),
71                 this, SLOT(checkEnabled()));
72         connect(interlinespaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
73                 this, SLOT(checkEnabled()));
74         connect(interlinespaceCO, SIGNAL(activated(int)),
75                 this, SLOT(checkEnabled()));
76         connect(booktabsRB, SIGNAL(clicked(bool)),
77                 this, SLOT(checkEnabled()));
78         connect(borderDefaultRB, SIGNAL(clicked(bool)),
79                 this, SLOT(checkEnabled()));
80         connect(borderSetPB, SIGNAL(clicked()),
81                 this, SLOT(borderSet_clicked()));
82         connect(borderUnsetPB, SIGNAL(clicked()), 
83                 this, SLOT(borderUnset_clicked()));
84         connect(hAlignCB, SIGNAL(activated(int)),
85                 this, SLOT(checkEnabled()));
86         connect(vAlignCB, SIGNAL(activated(int)),
87                 this, SLOT(checkEnabled()));
88         connect(multicolumnCB, SIGNAL(clicked()),
89                 this, SLOT(checkEnabled()));
90         connect(multirowCB, SIGNAL(clicked()),
91                 this, SLOT(checkEnabled()));
92         connect(newpageCB, SIGNAL(clicked()),
93                 this, SLOT(checkEnabled()));
94         connect(headerStatusCB, SIGNAL(clicked()),
95                 this, SLOT(checkEnabled()));
96         connect(headerBorderAboveCB, SIGNAL(clicked()),
97                 this, SLOT(checkEnabled()));
98         connect(headerBorderBelowCB, SIGNAL(clicked()),
99                 this, SLOT(checkEnabled()));
100         connect(firstheaderStatusCB, SIGNAL(clicked()),
101                 this, SLOT(checkEnabled()));
102         connect(firstheaderBorderAboveCB, SIGNAL(clicked()),
103                 this, SLOT(checkEnabled()));
104         connect(firstheaderBorderBelowCB, SIGNAL(clicked()),
105                 this, SLOT(checkEnabled()));
106         connect(firstheaderNoContentsCB, SIGNAL(clicked()),
107                 this, SLOT(checkEnabled()));
108         connect(footerStatusCB, SIGNAL(clicked()),
109                 this, SLOT(checkEnabled()));
110         connect(footerBorderAboveCB, SIGNAL(clicked()),
111                 this, SLOT(checkEnabled()));
112         connect(footerBorderBelowCB, SIGNAL(clicked()),
113                 this, SLOT(checkEnabled()));
114         connect(lastfooterStatusCB, SIGNAL(clicked()),
115                 this, SLOT(checkEnabled()));
116         connect(lastfooterBorderAboveCB, SIGNAL(clicked()),
117                 this, SLOT(checkEnabled()));
118         connect(lastfooterBorderBelowCB, SIGNAL(clicked()),
119                 this, SLOT(checkEnabled()));
120         connect(lastfooterNoContentsCB, SIGNAL(clicked()),
121                 this, SLOT(checkEnabled()));
122         connect(specialAlignmentED, SIGNAL(textEdited(QString)),
123                 this, SLOT(checkEnabled()));
124         connect(widthED, SIGNAL(textEdited(QString)),
125                 this, SLOT(checkEnabled()));
126         connect(widthUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)),
127                 this, SLOT(checkEnabled()));
128         connect(borders, SIGNAL(topSet(bool)),
129                 this, SLOT(checkEnabled()));
130         connect(borders, SIGNAL(bottomSet(bool)),
131                 this, SLOT(checkEnabled()));
132         connect(borders, SIGNAL(rightSet(bool)),
133                 this, SLOT(checkEnabled()));
134         connect(borders, SIGNAL(leftSet(bool)),
135                 this, SLOT(checkEnabled()));
136         connect(rotateTabularCB, SIGNAL(clicked()),
137                 this, SLOT(checkEnabled()));
138         connect(rotateCellCB, SIGNAL(clicked()),
139                 this, SLOT(checkEnabled()));
140         connect(TableAlignCB, SIGNAL(activated(int)),
141                 this, SLOT(checkEnabled()));
142         connect(longTabularCB, SIGNAL(clicked()),
143                 this, SLOT(checkEnabled()));
144         connect(leftRB, SIGNAL(clicked()),
145                 this, SLOT(checkEnabled()));
146         connect(centerRB, SIGNAL(clicked()),
147                 this, SLOT(checkEnabled()));
148         connect(rightRB, SIGNAL(clicked()),
149                 this, SLOT(checkEnabled()));
150                 
151         
152         // initialize the length validator
153         addCheckedWidget(widthED, fixedWidthColLA);
154         addCheckedWidget(topspaceED, topspaceLA);
155         addCheckedWidget(bottomspaceED, bottomspaceLA);
156         addCheckedWidget(interlinespaceED, interlinespaceLA);
157 }
158
159
160 void GuiTabular::checkEnabled()
161 {
162         // multirows don't have their own alignment
163         hAlignCB->setEnabled(!multirowCB->isChecked());
164         bool dalign =
165                 hAlignCB->itemData(hAlignCB->currentIndex()).toString() == QString("decimal");
166         decimalPointLE->setEnabled(dalign);
167         decimalL->setEnabled(dalign);
168
169         vAlignCB->setEnabled(!multirowCB->isChecked() 
170                 && !widgetsToLength(widthED, widthUnitCB).empty());
171
172         topspaceED->setEnabled(topspaceCO->currentIndex() == 2);
173         topspaceUnit->setEnabled(topspaceCO->currentIndex() == 2);
174         bottomspaceED->setEnabled(bottomspaceCO->currentIndex() == 2);
175         bottomspaceUnit->setEnabled(bottomspaceCO->currentIndex() == 2);
176         interlinespaceED->setEnabled(interlinespaceCO->currentIndex() == 2);
177         interlinespaceUnit->setEnabled(interlinespaceCO->currentIndex() == 2);
178
179         // setting as longtable is not allowed when table is inside a float
180         longTabularCB->setEnabled(funcEnabled(Tabular::SET_LONGTABULAR));
181         bool const longtabular = longTabularCB->isChecked();
182         longtableGB->setEnabled(true);
183         newpageCB->setEnabled(longtabular);
184         alignmentGB->setEnabled(longtabular);
185         // longtables cannot have a vertical alignment
186         TableAlignCB->setDisabled(longtabular);
187
188         // FIXME: This Dialog is really horrible, disabling/enabling a checkbox
189         // depending on the cursor position is very very unintuitive...
190         // We need some edit boxes to show which rows are header/footer/etc
191         // without having to move the cursor first.
192         headerStatusCB->setEnabled(longtabular);
193         headerBorderAboveCB->setEnabled(longtabular
194                 && headerStatusCB->isChecked());
195         headerBorderBelowCB->setEnabled(longtabular
196                 && headerStatusCB->isChecked());
197
198         // first header can only be suppressed when there is a header
199         // FIXME: old code also checked for
200         //  tabular.haveLTHead() && !tabular.haveLTFirstHead());
201         firstheaderNoContentsCB->setEnabled(longtabular);
202         // check if setting a first header is allowed
203         // additionally check firstheaderNoContentsCB because when this is
204         // the case a first header makes no sense
205         firstheaderStatusCB->setEnabled(funcEnabled(Tabular::SET_LTFIRSTHEAD)
206                 && longtabular && !firstheaderNoContentsCB->isChecked());
207         firstheaderBorderAboveCB->setEnabled(longtabular
208                 && firstheaderStatusCB->isChecked());
209         firstheaderBorderBelowCB->setEnabled(longtabular
210                 && firstheaderStatusCB->isChecked());
211
212         footerStatusCB->setEnabled(longtabular);
213         footerBorderAboveCB->setEnabled(longtabular
214                 && footerBorderAboveCB->isChecked());
215         footerBorderBelowCB->setEnabled(longtabular
216                 && footerBorderAboveCB->isChecked());
217
218         // last footer can only be suppressed when there is a footer
219         // FIXME: old code also checked for
220         //   tabular.haveLTFoot() && !tabular.haveLTLastFoot());
221         lastfooterNoContentsCB->setEnabled(longtabular);
222         // check if setting a last footer is allowed
223         // additionally check lastfooterNoContentsCB because when this is
224         // the case a last footer makes no sense
225         lastfooterStatusCB->setEnabled(funcEnabled(Tabular::SET_LTLASTFOOT)
226                 && longtabular && !lastfooterNoContentsCB->isChecked());
227         lastfooterBorderAboveCB->setEnabled(longtabular
228                 && lastfooterBorderAboveCB->isChecked());
229         lastfooterBorderBelowCB->setEnabled(longtabular
230                 && lastfooterBorderAboveCB->isChecked());
231
232         captionStatusCB->setEnabled(funcEnabled(Tabular::TOGGLE_LTCAPTION)
233                 && longtabular);
234         
235         multicolumnCB->setEnabled(funcEnabled(Tabular::MULTICOLUMN));
236         multirowCB->setEnabled(funcEnabled(Tabular::MULTIROW));
237
238         changed();
239 }
240
241
242 void GuiTabular::borderSet_clicked()
243 {
244         borders->setTop(true);
245         borders->setBottom(true);
246         borders->setLeft(true);
247         borders->setRight(true);
248         // repaint the setborder widget
249         borders->update();
250         checkEnabled();
251 }
252
253
254 void GuiTabular::borderUnset_clicked()
255 {
256         borders->setTop(false);
257         borders->setBottom(false);
258         borders->setLeft(false);
259         borders->setRight(false);
260         // repaint the setborder widget
261         borders->update();
262         checkEnabled();
263 }
264
265
266 static void setParam(string & param_str, Tabular::Feature f, string const & arg = string())
267 {
268         param_str += ' ';
269         param_str += featureAsString(f) + ' ' + arg;
270 }
271
272
273 void GuiTabular::setHAlign(string & param_str) const
274 {
275         Tabular::Feature num = Tabular::ALIGN_LEFT;
276         Tabular::Feature multi_num = Tabular::M_ALIGN_LEFT;
277         string const align = 
278                 fromqstr(hAlignCB->itemData(hAlignCB->currentIndex()).toString());
279         if (align == "left") {
280                 num = Tabular::ALIGN_LEFT;
281                 multi_num = Tabular::M_ALIGN_LEFT;
282         } else if (align == "center") {
283                 num = Tabular::ALIGN_CENTER;
284                 multi_num = Tabular::M_ALIGN_CENTER;
285         } else if (align == "right") {
286                 num = Tabular::ALIGN_RIGHT;
287                 multi_num = Tabular::M_ALIGN_RIGHT;
288         } else if (align == "justified") {
289                 num = Tabular::ALIGN_BLOCK;
290                 //multi_num: no equivalent
291         } else if (align == "decimal") {
292                 num = Tabular::ALIGN_DECIMAL;
293                 //multi_num: no equivalent
294         }
295
296         if (multicolumnCB->isChecked())
297                 setParam(param_str, multi_num);
298         else
299                 setParam(param_str, num);
300 }
301
302
303 void GuiTabular::setVAlign(string & param_str) const
304 {
305         int const align = vAlignCB->currentIndex();
306         enum VALIGN { TOP, MIDDLE, BOTTOM };
307         VALIGN v = TOP;
308
309         switch (align) {
310                 case 0: v = TOP; break;
311                 case 1: v = MIDDLE; break;
312                 case 2: v = BOTTOM; break;
313         }
314
315         Tabular::Feature num = Tabular::VALIGN_MIDDLE;
316         Tabular::Feature multi_num = Tabular::M_VALIGN_MIDDLE;
317
318         switch (v) {
319                 case TOP:
320                         num = Tabular::VALIGN_TOP;
321                         multi_num = Tabular::M_VALIGN_TOP;
322                         break;
323                 case MIDDLE:
324                         num = Tabular::VALIGN_MIDDLE;
325                         multi_num = Tabular::M_VALIGN_MIDDLE;
326                         break;
327                 case BOTTOM:
328                         num = Tabular::VALIGN_BOTTOM;
329                         multi_num = Tabular::M_VALIGN_BOTTOM;
330                         break;
331         }
332         if (multicolumnCB->isChecked() || multirowCB->isChecked())
333                 setParam(param_str, multi_num);
334         else
335                 setParam(param_str, num);
336 }
337
338
339 void GuiTabular::setTableAlignment(string & param_str) const
340 {
341         int const align = TableAlignCB->currentIndex();
342         switch (align) {
343                 case 0: setParam(param_str, Tabular::TABULAR_VALIGN_TOP);
344                         break;
345                 case 1: setParam(param_str, Tabular::TABULAR_VALIGN_MIDDLE);
346                         break;
347                 case 2: setParam(param_str, Tabular::TABULAR_VALIGN_BOTTOM);
348                         break;
349         }
350 }
351
352
353 docstring GuiTabular::dialogToParams() const
354 {
355         // FIXME: We should use Tabular directly.
356         string param_str = "tabular";
357         setHAlign(param_str);
358
359         // SET_DECIMAL_POINT must come after setHAlign() (ALIGN_DECIMAL)
360         string decimal_point = fromqstr(decimalPointLE->text());
361         if (decimal_point.empty())
362                 decimal_point = lyxrc.default_decimal_point;
363         setParam(param_str, Tabular::SET_DECIMAL_POINT, decimal_point);
364
365         setVAlign(param_str);
366         setTableAlignment(param_str);
367         //
368         if (booktabsRB->isChecked())
369                 setParam(param_str, Tabular::SET_BOOKTABS);
370         else
371                 setParam(param_str, Tabular::UNSET_BOOKTABS);
372
373         //
374         switch (topspaceCO->currentIndex()) {
375                 case 0:
376                         setParam(param_str, Tabular::SET_TOP_SPACE, "none");
377                         break;
378                 case 1:
379                         setParam(param_str, Tabular::SET_TOP_SPACE, "default");
380                         break;
381                 case 2:
382                         if (!topspaceED->text().isEmpty())
383                                 setParam(param_str, Tabular::SET_TOP_SPACE,
384                                          widgetsToLength(topspaceED, topspaceUnit));
385                         break;
386         }
387
388         //
389         switch (bottomspaceCO->currentIndex()) {
390                 case 0:
391                         setParam(param_str, Tabular::SET_BOTTOM_SPACE, "none");
392                         break;
393                 case 1:
394                         setParam(param_str, Tabular::SET_BOTTOM_SPACE, "default");
395                         break;
396                 case 2:
397                         if (!bottomspaceED->text().isEmpty())
398                                 setParam(param_str, Tabular::SET_BOTTOM_SPACE,
399                                         widgetsToLength(bottomspaceED,
400                                                         bottomspaceUnit));
401                         break;
402         }
403
404         //
405         switch (interlinespaceCO->currentIndex()) {
406                 case 0:
407                         setParam(param_str, Tabular::SET_INTERLINE_SPACE, "none");
408                         break;
409                 case 1:
410                         setParam(param_str, Tabular::SET_INTERLINE_SPACE, "default");
411                         break;
412                 case 2:
413                         if (!interlinespaceED->text().isEmpty())
414                                 setParam(param_str, Tabular::SET_INTERLINE_SPACE,
415                                         widgetsToLength(interlinespaceED,
416                                                         interlinespaceUnit));
417                         break;
418         }
419
420         //
421         if (borders->getTop() && borders->getBottom() && borders->getLeft()
422                 && borders->getRight())
423                 setParam(param_str, Tabular::SET_ALL_LINES);
424         else if (!borders->getTop() && !borders->getBottom() && !borders->getLeft()
425                 && !borders->getRight())
426                 setParam(param_str, Tabular::UNSET_ALL_LINES);
427         else {
428                 setParam(param_str, Tabular::SET_LINE_LEFT,
429                          borders->getLeft() ? "true" : "false");
430                 setParam(param_str, Tabular::SET_LINE_RIGHT,
431                          borders->getRight() ? "true" : "false");
432                 setParam(param_str, Tabular::SET_LINE_TOP,
433                          borders->getTop() ? "true" : "false");
434                 setParam(param_str, Tabular::SET_LINE_BOTTOM,
435                          borders->getBottom() ? "true" : "false");
436         }
437
438         // apply the special alignment
439         string special = fromqstr(specialAlignmentED->text());
440         if (special.empty())
441                 special = "none";
442         if (multicolumnCB->isChecked())
443                 setParam(param_str, Tabular::SET_SPECIAL_MULTICOLUMN, special);
444         else
445                 setParam(param_str, Tabular::SET_SPECIAL_COLUMN, special);
446
447         // apply the fixed width values
448         string width = widgetsToLength(widthED, widthUnitCB);
449         if (width.empty())
450                 width = "0pt";
451         if (multicolumnCB->isChecked())
452                 setParam(param_str, Tabular::SET_MPWIDTH, width);
453         else
454                 setParam(param_str, Tabular::SET_PWIDTH, width);
455
456         //
457         if (multicolumnCB->isChecked())
458                 setParam(param_str, Tabular::SET_MULTICOLUMN);
459         else
460                 setParam(param_str, Tabular::UNSET_MULTICOLUMN);
461         //
462         if (multirowCB->isChecked())
463                 setParam(param_str, Tabular::SET_MULTIROW);
464         else
465                 setParam(param_str, Tabular::UNSET_MULTIROW);
466         //
467         if (rotateTabularCB->isChecked())
468                 setParam(param_str, Tabular::SET_ROTATE_TABULAR);
469         else
470                 setParam(param_str, Tabular::UNSET_ROTATE_TABULAR);
471         //
472         if (rotateCellCB->isChecked())
473                 setParam(param_str, Tabular::SET_ROTATE_CELL);
474         else
475                 setParam(param_str, Tabular::UNSET_ROTATE_CELL);
476         //
477         if (longTabularCB->isChecked())
478                 setParam(param_str, Tabular::SET_LONGTABULAR);
479         else
480                 setParam(param_str, Tabular::UNSET_LONGTABULAR);
481         //
482         if (newpageCB->isChecked())
483                 setParam(param_str, Tabular::SET_LTNEWPAGE);
484         //
485         if (captionStatusCB->isChecked())
486                 setParam(param_str, Tabular::SET_LTCAPTION);
487         else
488                 setParam(param_str, Tabular::UNSET_LTCAPTION);
489         //
490         if (headerStatusCB->isChecked())
491                 setParam(param_str, Tabular::SET_LTHEAD, "none");
492         else
493                 setParam(param_str, Tabular::UNSET_LTHEAD, "none");
494         //
495         if (headerBorderAboveCB->isChecked())
496                 setParam(param_str, Tabular::SET_LTHEAD, "dl_above");
497         else
498                 setParam(param_str, Tabular::UNSET_LTHEAD, "dl_above");
499         //
500         if (headerBorderBelowCB->isChecked())
501                 setParam(param_str, Tabular::SET_LTHEAD, "dl_below");
502         else
503                 setParam(param_str, Tabular::UNSET_LTHEAD, "dl_below");
504         if (firstheaderBorderAboveCB->isChecked())
505                 setParam(param_str, Tabular::SET_LTFIRSTHEAD, "dl_above");
506         else
507                 setParam(param_str, Tabular::UNSET_LTFIRSTHEAD, "dl_above");
508         if (firstheaderBorderBelowCB->isChecked())
509                 setParam(param_str, Tabular::SET_LTFIRSTHEAD, "dl_below");
510         else
511                 setParam(param_str, Tabular::UNSET_LTFIRSTHEAD, "dl_below");
512         if (firstheaderStatusCB->isChecked())
513                 setParam(param_str, Tabular::SET_LTFIRSTHEAD, "none");
514         else
515                 setParam(param_str, Tabular::UNSET_LTFIRSTHEAD, "none");
516         if (firstheaderNoContentsCB->isChecked())
517                 setParam(param_str, Tabular::SET_LTFIRSTHEAD, "empty");
518         else
519                 setParam(param_str, Tabular::UNSET_LTFIRSTHEAD, "empty");
520         if (footerStatusCB->isChecked())
521                 setParam(param_str, Tabular::SET_LTFOOT, "none");
522         else
523                 setParam(param_str, Tabular::UNSET_LTFOOT, "none");
524         if (footerBorderAboveCB->isChecked())
525                 setParam(param_str, Tabular::SET_LTFOOT, "dl_above");
526         else
527                 setParam(param_str, Tabular::UNSET_LTFOOT, "dl_above");
528         if (footerBorderBelowCB->isChecked())
529                 setParam(param_str, Tabular::SET_LTFOOT, "dl_below");
530         else
531                 setParam(param_str, Tabular::UNSET_LTFOOT, "dl_below");
532         if (lastfooterStatusCB->isChecked())
533                 setParam(param_str, Tabular::SET_LTLASTFOOT, "none");
534         else
535                 setParam(param_str, Tabular::UNSET_LTLASTFOOT, "none");
536         if (lastfooterBorderAboveCB->isChecked())
537                 setParam(param_str, Tabular::SET_LTLASTFOOT, "dl_above");
538         else
539                 setParam(param_str, Tabular::UNSET_LTLASTFOOT, "dl_above");
540         if (lastfooterBorderBelowCB->isChecked())
541                 setParam(param_str, Tabular::SET_LTLASTFOOT, "dl_below");
542         else
543                 setParam(param_str, Tabular::UNSET_LTLASTFOOT, "dl_below");
544         if (lastfooterNoContentsCB->isChecked())
545                 setParam(param_str, Tabular::SET_LTLASTFOOT, "empty");
546         else
547                 setParam(param_str, Tabular::UNSET_LTLASTFOOT, "empty");
548
549         if (leftRB->isChecked())
550                 setParam(param_str, Tabular::LONGTABULAR_ALIGN_LEFT);
551         else if (centerRB->isChecked())
552                 setParam(param_str, Tabular::LONGTABULAR_ALIGN_CENTER);
553         else if (rightRB->isChecked())
554                 setParam(param_str, Tabular::LONGTABULAR_ALIGN_RIGHT);
555
556         return from_utf8(param_str);
557 }
558
559
560 static Length getColumnPWidth(Tabular const & t, size_t cell)
561 {
562         return t.column_info[t.cellColumn(cell)].p_width;
563 }
564
565
566 static Length getMColumnPWidth(Tabular const & t, size_t cell)
567 {
568         if (t.isMultiColumn(cell) || t.isMultiRow(cell))
569                 return t.cellInfo(cell).p_width;
570         return Length();
571 }
572
573
574 static docstring getAlignSpecial(Tabular const & t, size_t cell, int what)
575 {
576         if (what == Tabular::SET_SPECIAL_MULTICOLUMN)
577                 return t.cellInfo(cell).align_special;
578         return t.column_info[t.cellColumn(cell)].align_special;
579 }
580
581
582 void GuiTabular::paramsToDialog(Inset const * inset)
583 {
584         InsetTabular const * itab = static_cast<InsetTabular const *>(inset);
585         // Copy Tabular of current inset.
586         Tabular const & tabular = itab->tabular;
587
588         BufferView const * bv = guiApp->currentView()->currentBufferView();
589         size_t const cell = bv->cursor().idx();
590
591         Tabular::row_type const row = tabular.cellRow(cell);
592         Tabular::col_type const col = tabular.cellColumn(cell);
593
594         tabularRowED->setText(QString::number(row + 1));
595         tabularColumnED->setText(QString::number(col + 1));
596
597         bool const multicol = tabular.isMultiColumn(cell);
598         multicolumnCB->setChecked(multicol);
599
600         bool const multirow = tabular.isMultiRow(cell);
601         multirowCB->setChecked(multirow);
602
603         rotateCellCB->setChecked(tabular.getRotateCell(cell));
604         rotateTabularCB->setChecked(tabular.rotate);
605
606         longTabularCB->setChecked(tabular.is_long_tabular);
607
608         borders->setTop(tabular.topLine(cell));
609         borders->setBottom(tabular.bottomLine(cell));
610         borders->setLeft(tabular.leftLine(cell));
611         borders->setRight(tabular.rightLine(cell));
612         // repaint the setborder widget
613         borders->update();
614
615         Length::UNIT const default_unit = Length::defaultUnit();
616
617         ///////////////////////////////////
618         // Set width and alignment
619         Length pwidth;
620         docstring special;
621         if (multicol) {
622                 special = getAlignSpecial(tabular, cell,
623                         Tabular::SET_SPECIAL_MULTICOLUMN);
624                 pwidth = getMColumnPWidth(tabular, cell);
625         } else {
626                 special = getAlignSpecial(tabular, cell,
627                         Tabular::SET_SPECIAL_COLUMN);
628                 pwidth = getColumnPWidth(tabular, cell);
629         }
630         string colwidth;
631         if (pwidth.zero())
632                 widthED->clear();
633         else {
634                 colwidth = pwidth.asString();
635                 lengthToWidgets(widthED, widthUnitCB,
636                         colwidth, default_unit);
637         }
638         specialAlignmentED->setText(toqstr(special));
639         ///////////////////////////////////
640
641
642         borderDefaultRB->setChecked(!tabular.use_booktabs);
643         booktabsRB->setChecked(tabular.use_booktabs);
644
645         if (tabular.row_info[row].top_space.empty()
646             && !tabular.row_info[row].top_space_default) {
647                 topspaceCO->setCurrentIndex(0);
648         } else if (tabular.row_info[row].top_space_default) {
649                 topspaceCO->setCurrentIndex(1);
650         } else {
651                 topspaceCO->setCurrentIndex(2);
652                 lengthToWidgets(topspaceED,
653                                 topspaceUnit,
654                                 tabular.row_info[row].top_space.asString(),
655                                 default_unit);
656         }
657
658         if (tabular.row_info[row].bottom_space.empty()
659             && !tabular.row_info[row].bottom_space_default) {
660                 bottomspaceCO->setCurrentIndex(0);
661         } else if (tabular.row_info[row].bottom_space_default) {
662                 bottomspaceCO->setCurrentIndex(1);
663         } else {
664                 bottomspaceCO->setCurrentIndex(2);
665                 lengthToWidgets(bottomspaceED,
666                                 bottomspaceUnit,
667                                 tabular.row_info[row].bottom_space.asString(),
668                                 default_unit);
669         }
670
671         if (tabular.row_info[row].interline_space.empty()
672             && !tabular.row_info[row].interline_space_default) {
673                 interlinespaceCO->setCurrentIndex(0);
674         } else if (tabular.row_info[row].interline_space_default) {
675                 interlinespaceCO->setCurrentIndex(1);
676         } else {
677                 interlinespaceCO->setCurrentIndex(2);
678                 lengthToWidgets(interlinespaceED,
679                                 interlinespaceUnit,
680                                 tabular.row_info[row].interline_space.asString(),
681                                 default_unit);
682         }
683
684         hAlignCB->clear();
685         hAlignCB->addItem(qt_("Left"), toqstr("left"));
686         hAlignCB->addItem(qt_("Center"), toqstr("center"));
687         hAlignCB->addItem(qt_("Right"), toqstr("right"));
688         if (!multicol && !pwidth.zero())
689                 hAlignCB->addItem(qt_("Justified"), toqstr("justified"));
690         if (!multicol)
691                 hAlignCB->addItem(qt_("At Decimal Separator"), toqstr("decimal"));
692
693         string align;
694         switch (tabular.getAlignment(cell)) {
695                 case LYX_ALIGN_LEFT:
696                         align = "left";
697                         break;
698                 case LYX_ALIGN_CENTER:
699                         align = "center";
700                         break;
701                 case LYX_ALIGN_RIGHT:
702                         align = "right";
703                         break;
704                 case LYX_ALIGN_BLOCK:
705                 {
706                         if (!multicol && !pwidth.zero())
707                                 align = "justified";
708                         break;
709                 }
710                 case LYX_ALIGN_DECIMAL:
711                 {
712                         if (!multicol)
713                                 align = "decimal";
714                         break;
715                 }
716                 default:
717                         // we should never end up here
718                         break;
719         }
720         hAlignCB->setCurrentIndex(hAlignCB->findData(toqstr(align)));
721
722         //
723         QString decimal_point = toqstr(tabular.column_info[col].decimal_point);
724         if (decimal_point.isEmpty())
725                 decimal_point = toqstr(from_utf8(lyxrc.default_decimal_point));
726         decimalPointLE->setText(decimal_point);
727
728         int valign = 0;
729         switch (tabular.getVAlignment(cell)) {
730         case Tabular::LYX_VALIGN_TOP:
731                 valign = 0;
732                 break;
733         case Tabular::LYX_VALIGN_MIDDLE:
734                 valign = 1;
735                 break;
736         case Tabular::LYX_VALIGN_BOTTOM:
737                 valign = 2;
738                 break;
739         default:
740                 valign = 0;
741                 break;
742         }
743         if (pwidth.zero())
744                 valign = 0;
745         vAlignCB->setCurrentIndex(valign);
746
747         int tableValign = 1;
748         switch (tabular.tabular_valignment) {
749         case Tabular::LYX_VALIGN_TOP:
750                 tableValign = 0;
751                 break;
752         case Tabular::LYX_VALIGN_MIDDLE:
753                 tableValign = 1;
754                 break;
755         case Tabular::LYX_VALIGN_BOTTOM:
756                 tableValign = 2;
757                 break;
758         default:
759                 tableValign = 0;
760                 break;
761         }
762         TableAlignCB->setCurrentIndex(tableValign);
763
764         if (!tabular.is_long_tabular) {
765                 headerStatusCB->setChecked(false);
766                 headerBorderAboveCB->setChecked(false);
767                 headerBorderBelowCB->setChecked(false);
768                 firstheaderStatusCB->setChecked(false);
769                 firstheaderBorderAboveCB->setChecked(false);
770                 firstheaderBorderBelowCB->setChecked(false);
771                 firstheaderNoContentsCB->setChecked(false);
772                 footerStatusCB->setChecked(false);
773                 footerBorderAboveCB->setChecked(false);
774                 footerBorderBelowCB->setChecked(false);
775                 lastfooterStatusCB->setChecked(false);
776                 lastfooterBorderAboveCB->setChecked(false);
777                 lastfooterBorderBelowCB->setChecked(false);
778                 lastfooterNoContentsCB->setChecked(false);
779                 newpageCB->setChecked(false);
780                 captionStatusCB->blockSignals(true);
781                 captionStatusCB->setChecked(false);
782                 captionStatusCB->blockSignals(false);
783                 checkEnabled();
784                 return;
785         } else {
786                 // longtables cannot have a vertical alignment
787                 TableAlignCB->setCurrentIndex(Tabular::LYX_VALIGN_MIDDLE);
788         }
789         switch (tabular.longtabular_alignment) {
790         case Tabular::LYX_LONGTABULAR_ALIGN_LEFT:
791                 leftRB->setChecked(true);
792                 break;
793         case Tabular::LYX_LONGTABULAR_ALIGN_CENTER:
794                 centerRB->setChecked(true);
795                 break;
796         case Tabular::LYX_LONGTABULAR_ALIGN_RIGHT:
797                 rightRB->setChecked(true);
798                 break;
799         default:
800                 centerRB->setChecked(true);
801                 break;
802         }
803         captionStatusCB->blockSignals(true);
804         captionStatusCB->setChecked(tabular.ltCaption(row));
805         captionStatusCB->blockSignals(false);
806
807         Tabular::ltType ltt;
808         bool use_empty;
809         bool row_set = tabular.getRowOfLTHead(row, ltt);
810         headerStatusCB->setChecked(row_set);
811         if (ltt.set) {
812                 headerBorderAboveCB->setChecked(ltt.topDL);
813                 headerBorderBelowCB->setChecked(ltt.bottomDL);
814                 use_empty = true;
815         } else {
816                 headerBorderAboveCB->setChecked(false);
817                 headerBorderBelowCB->setChecked(false);
818                 firstheaderNoContentsCB->setChecked(false);
819                 use_empty = false;
820         }
821
822         row_set = tabular.getRowOfLTFirstHead(row, ltt);
823         firstheaderStatusCB->setChecked(row_set);
824         if (ltt.set && (!ltt.empty || !use_empty)) {
825                 firstheaderBorderAboveCB->setChecked(ltt.topDL);
826                 firstheaderBorderBelowCB->setChecked(ltt.bottomDL);
827         } else {
828                 firstheaderBorderAboveCB->setChecked(false);
829                 firstheaderBorderBelowCB->setChecked(false);
830         }
831
832         row_set = tabular.getRowOfLTFoot(row, ltt);
833         footerStatusCB->setChecked(row_set);
834         if (ltt.set) {
835                 footerBorderAboveCB->setChecked(ltt.topDL);
836                 footerBorderBelowCB->setChecked(ltt.bottomDL);
837                 use_empty = true;
838         } else {
839                 footerBorderAboveCB->setChecked(false);
840                 footerBorderBelowCB->setChecked(false);
841                 lastfooterNoContentsCB->setChecked(false);
842                 use_empty = false;
843         }
844
845         row_set = tabular.getRowOfLTLastFoot(row, ltt);
846         lastfooterStatusCB->setChecked(row_set);
847         if (ltt.set && (!ltt.empty || !use_empty)) {
848                 lastfooterBorderAboveCB->setChecked(ltt.topDL);
849                 lastfooterBorderBelowCB->setChecked(ltt.bottomDL);
850         } else {
851                 lastfooterBorderAboveCB->setChecked(false);
852                 lastfooterBorderBelowCB->setChecked(false);
853         }
854         newpageCB->setChecked(tabular.getLTNewPage(row));
855         checkEnabled();
856 }
857
858
859 bool GuiTabular::funcEnabled(Tabular::Feature f) const
860 {
861         string cmd = "tabular " + featureAsString(f);
862         return getStatus(FuncRequest(LFUN_INSET_MODIFY, cmd)).enabled();
863 }
864
865
866 } // namespace frontend
867 } // namespace lyx
868
869 #include "moc_GuiTabular.cpp"