]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QTabular.cpp
delete unneeded Menubar virtual interface.
[lyx.git] / src / frontends / qt4 / QTabular.cpp
1 /**
2  * \file QTabular.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  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "CheckedLineEdit.h"
16 #include "QTabular.h"
17 #include "Qt2BC.h"
18
19 #include "LengthCombo.h"
20 #include "Validator.h"
21 #include "qt_helpers.h"
22
23 #include "controllers/ButtonController.h"
24 #include "controllers/ControlTabular.h"
25
26 #include "support/convert.h"
27
28 #include <QCloseEvent>
29 #include <QCheckBox>
30 #include <QPushButton>
31 #include <QRadioButton>
32 #include <QLineEdit>
33
34 #include "QSetBorder.h"
35
36 using std::string;
37
38 namespace lyx {
39 namespace frontend {
40
41 /////////////////////////////////////////////////////////////////////
42 //
43 // QTabularDialog
44 //
45 /////////////////////////////////////////////////////////////////////
46
47 QTabularDialog::QTabularDialog(QTabular * form)
48         : form_(form)
49 {
50         setupUi(this);
51
52         widthED->setValidator(unsignedLengthValidator(widthED));
53         topspaceED->setValidator(new LengthValidator(topspaceED));
54         bottomspaceED->setValidator(new LengthValidator(bottomspaceED));
55         interlinespaceED->setValidator(new LengthValidator(interlinespaceED));
56
57         connect(topspaceED, SIGNAL(returnPressed()),
58                 this, SLOT(topspace_changed()));
59         connect(topspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
60                 this, SLOT(topspace_changed()));
61         connect(topspaceCO, SIGNAL(activated(int)), this, SLOT(topspace_changed()));
62         connect(bottomspaceED, SIGNAL(returnPressed()),
63                 this, SLOT(bottomspace_changed()));
64         connect(bottomspaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
65                 this, SLOT(bottomspace_changed()));
66         connect(bottomspaceCO, SIGNAL(activated(int)), this, SLOT(bottomspace_changed()));
67         connect(interlinespaceED, SIGNAL(returnPressed()),
68                 this, SLOT(interlinespace_changed()));
69         connect(interlinespaceUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)),
70                 this, SLOT(interlinespace_changed()));
71         connect(interlinespaceCO, SIGNAL(activated(int)), this, SLOT(interlinespace_changed()));
72         connect(booktabsRB, SIGNAL(clicked(bool)), this, SLOT(booktabsChanged(bool)));
73         connect(borderDefaultRB, SIGNAL(clicked(bool)), this, SLOT(booktabsChanged(bool)));
74         connect(borderSetPB, SIGNAL(clicked()), this, SLOT(borderSet_clicked()));
75         connect(borderUnsetPB, SIGNAL(clicked()), this, SLOT(borderUnset_clicked()));
76         connect(longTabularCB, SIGNAL(toggled(bool)), longtableGB, SLOT(setEnabled(bool)));
77         connect(longTabularCB, SIGNAL(toggled(bool)), newpageCB, SLOT(setEnabled(bool)));
78         connect(hAlignCB, SIGNAL(activated(int)), this, SLOT(hAlign_changed(int)));
79         connect(vAlignCB, SIGNAL(activated(int)), this, SLOT(vAlign_changed(int)));
80         connect(multicolumnCB, SIGNAL(clicked()), this, SLOT(multicolumn_clicked()));
81         connect(newpageCB, SIGNAL(clicked()), this, SLOT(ltNewpage_clicked()));
82         connect(headerStatusCB, SIGNAL(clicked()), this, SLOT(ltHeaderStatus_clicked()));
83         connect(headerBorderAboveCB, SIGNAL(clicked()), this, SLOT(ltHeaderBorderAbove_clicked()));
84         connect(headerBorderBelowCB, SIGNAL(clicked()), this, SLOT(ltHeaderBorderBelow_clicked()));
85         connect(firstheaderStatusCB, SIGNAL(clicked()), this, SLOT(ltFirstHeaderStatus_clicked()));
86         connect(firstheaderBorderAboveCB, SIGNAL(clicked()), this, SLOT(ltFirstHeaderBorderAbove_clicked()));
87         connect(firstheaderBorderBelowCB, SIGNAL(clicked()), this, SLOT(ltFirstHeaderBorderBelow_clicked()));
88         connect(firstheaderNoContentsCB, SIGNAL(clicked()), this, SLOT(ltFirstHeaderEmpty_clicked()));
89         connect(footerStatusCB, SIGNAL(clicked()), this, SLOT(ltFooterStatus_clicked()));
90         connect(footerBorderAboveCB, SIGNAL(clicked()), this, SLOT(ltFooterBorderAbove_clicked()));
91         connect(footerBorderBelowCB, SIGNAL(clicked()), this, SLOT(ltFooterBorderBelow_clicked()));
92         connect(lastfooterStatusCB, SIGNAL(clicked()), this, SLOT(ltLastFooterStatus_clicked()));
93         connect(lastfooterBorderAboveCB, SIGNAL(clicked()), this, SLOT(ltLastFooterBorderAbove_clicked()));
94         connect(lastfooterBorderBelowCB, SIGNAL(clicked()), this, SLOT(ltLastFooterBorderBelow_clicked()));
95         connect(lastfooterNoContentsCB, SIGNAL(clicked()), this, SLOT(ltLastFooterEmpty_clicked()));
96         connect(specialAlignmentED, SIGNAL(returnPressed()), this, SLOT(specialAlignment_changed()));
97         connect(widthED, SIGNAL(returnPressed()), this, SLOT(width_changed()));
98         connect(widthUnit, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(width_changed()));
99         connect(closePB, SIGNAL(clicked()), this, SLOT(close_clicked()));
100         connect(borders, SIGNAL(topSet(bool)), this, SLOT(topBorder_changed()));
101         connect(borders, SIGNAL(bottomSet(bool)), this, SLOT(bottomBorder_changed()));
102         connect(borders, SIGNAL(rightSet(bool)), this, SLOT(rightBorder_changed()));
103         connect(borders, SIGNAL(leftSet(bool)), this, SLOT(leftBorder_changed()));
104         connect(rotateTabularCB, SIGNAL(clicked()), this, SLOT(rotateTabular()));
105         connect(rotateCellCB, SIGNAL(clicked()), this, SLOT(rotateCell()));
106         connect(longTabularCB, SIGNAL(clicked()), this, SLOT(longTabular()));
107 }
108
109
110 void QTabularDialog::change_adaptor()
111 {
112         form_->changed();
113 }
114
115
116 void QTabularDialog::closeEvent(QCloseEvent * e)
117 {
118         form_->slotWMHide();
119         e->accept();
120 }
121
122
123 void QTabularDialog::booktabsChanged(bool)
124 {
125         form_->changed();
126         form_->controller().booktabs(booktabsRB->isChecked());
127         form_->update_borders();
128 }
129
130
131 void QTabularDialog::topspace_changed()
132 {
133         switch(topspaceCO->currentIndex()) {
134                 case 0: {
135                         form_->controller().set(Tabular::SET_TOP_SPACE, "");
136                                 topspaceED->setEnabled(false);
137                                 topspaceUnit->setEnabled(false);
138                         break;
139                 }
140                 case 1: {
141                         form_->controller().set(Tabular::SET_TOP_SPACE, "default");
142                         topspaceED->setEnabled(false);
143                         topspaceUnit->setEnabled(false);
144                         break;
145                 }
146                 case 2: {
147                         if (!topspaceED->text().isEmpty())
148                                 form_->controller().set(Tabular::SET_TOP_SPACE,
149                                         widgetsToLength(topspaceED, topspaceUnit));
150                         if (!form_->bc().bp().isReadOnly()) {
151                                 topspaceED->setEnabled(true);
152                                 topspaceUnit->setEnabled(true);
153                         }
154                         break;
155                 }
156         }
157         form_->changed();
158 }
159
160
161 void QTabularDialog::bottomspace_changed()
162 {
163         switch(bottomspaceCO->currentIndex()) {
164                 case 0: {
165                         form_->controller().set(Tabular::SET_BOTTOM_SPACE, "");
166                                 bottomspaceED->setEnabled(false);
167                                 bottomspaceUnit->setEnabled(false);
168                         break;
169                 }
170                 case 1: {
171                         form_->controller().set(Tabular::SET_BOTTOM_SPACE, "default");
172                         bottomspaceED->setEnabled(false);
173                         bottomspaceUnit->setEnabled(false);
174                         break;
175                 }
176                 case 2: {
177                         if (!bottomspaceED->text().isEmpty())
178                                 form_->controller().set(Tabular::SET_BOTTOM_SPACE,
179                                         widgetsToLength(bottomspaceED, bottomspaceUnit));
180                         if (!form_->bc().bp().isReadOnly()) {
181                                 bottomspaceED->setEnabled(true);
182                                 bottomspaceUnit->setEnabled(true);
183                         }
184                         break;
185                 }
186         }
187         form_->changed();
188 }
189
190
191 void QTabularDialog::interlinespace_changed()
192 {
193         switch(interlinespaceCO->currentIndex()) {
194                 case 0: {
195                         form_->controller().set(Tabular::SET_INTERLINE_SPACE, "");
196                                 interlinespaceED->setEnabled(false);
197                                 interlinespaceUnit->setEnabled(false);
198                         break;
199                 }
200                 case 1: {
201                         form_->controller().set(Tabular::SET_INTERLINE_SPACE, "default");
202                         interlinespaceED->setEnabled(false);
203                         interlinespaceUnit->setEnabled(false);
204                         break;
205                 }
206                 case 2: {
207                         if (!interlinespaceED->text().isEmpty())
208                                 form_->controller().set(Tabular::SET_INTERLINE_SPACE,
209                                         widgetsToLength(interlinespaceED, interlinespaceUnit));
210                         if (!form_->bc().bp().isReadOnly()) {
211                                 interlinespaceED->setEnabled(true);
212                                 interlinespaceUnit->setEnabled(true);
213                         }
214                         break;
215                 }
216         }
217         form_->changed();
218 }
219
220
221 void QTabularDialog::close_clicked()
222 {
223         form_->closeGUI();
224         form_->slotClose();
225 }
226
227
228 void QTabularDialog::borderSet_clicked()
229 {
230         form_->controller().set(Tabular::SET_ALL_LINES);
231         form_->update_borders();
232         form_->changed();
233 }
234
235
236 void QTabularDialog::borderUnset_clicked()
237 {
238         form_->controller().set(Tabular::UNSET_ALL_LINES);
239         form_->update_borders();
240         form_->changed();
241 }
242
243
244 void QTabularDialog::leftBorder_changed()
245 {
246         form_->controller().toggleLeftLine();
247         form_->changed();
248 }
249
250
251 void QTabularDialog::rightBorder_changed()
252 {
253         form_->controller().toggleRightLine();
254         form_->changed();
255 }
256
257
258 void QTabularDialog::topBorder_changed()
259 {
260         form_->controller().toggleTopLine();
261         form_->changed();
262 }
263
264
265 void QTabularDialog::bottomBorder_changed()
266 {
267         form_->controller().toggleBottomLine();
268         form_->changed();
269 }
270
271
272 void QTabularDialog::specialAlignment_changed()
273 {
274         string special = fromqstr(specialAlignmentED->text());
275         form_->controller().setSpecial(special);
276         form_->changed();
277 }
278
279
280 void QTabularDialog::width_changed()
281 {
282         form_->changed();
283         string const width = widgetsToLength(widthED, widthUnit);
284         form_->controller().setWidth(width);
285 }
286
287
288 void QTabularDialog::multicolumn_clicked()
289 {
290         form_->controller().toggleMultiColumn();
291         form_->changed();
292 }
293
294
295 void QTabularDialog::rotateTabular()
296 {
297         form_->controller().rotateTabular(rotateTabularCB->isChecked());
298         form_->changed();
299 }
300
301
302 void QTabularDialog::rotateCell()
303 {
304         form_->controller().rotateCell(rotateCellCB->isChecked());
305         form_->changed();
306 }
307
308
309 void QTabularDialog::hAlign_changed(int align)
310 {
311         ControlTabular::HALIGN h = ControlTabular::LEFT;
312
313         switch (align) {
314                 case 0: h = ControlTabular::LEFT; break;
315                 case 1: h = ControlTabular::CENTER; break;
316                 case 2: h = ControlTabular::RIGHT; break;
317                 case 3: h = ControlTabular::BLOCK; break;
318         }
319
320         form_->controller().halign(h);
321 }
322
323
324 void QTabularDialog::vAlign_changed(int align)
325 {
326         ControlTabular::VALIGN v = ControlTabular::TOP;
327
328         switch (align) {
329                 case 0: v = ControlTabular::TOP; break;
330                 case 1: v = ControlTabular::MIDDLE; break;
331                 case 2: v = ControlTabular::BOTTOM; break;
332         }
333
334         form_->controller().valign(v);
335 }
336
337
338 void QTabularDialog::longTabular()
339 {
340         form_->controller().longTabular(longTabularCB->isChecked());
341         form_->changed();
342 }
343
344
345 void QTabularDialog::ltNewpage_clicked()
346 {
347         form_->controller().set(Tabular::SET_LTNEWPAGE);
348         form_->changed();
349 }
350
351
352 void QTabularDialog::ltHeaderStatus_clicked()
353 {
354         bool enable(headerStatusCB->isChecked());
355         if (enable)
356                 form_->controller().set(Tabular::SET_LTHEAD, "");
357         else
358                 form_->controller().set(Tabular::UNSET_LTHEAD, "");
359         headerBorderAboveCB->setEnabled(enable);
360         headerBorderBelowCB->setEnabled(enable);
361         firstheaderNoContentsCB->setEnabled(enable);
362         form_->changed();
363 }
364
365
366 void QTabularDialog::ltHeaderBorderAbove_clicked()
367 {
368         if (headerBorderAboveCB->isChecked())
369                 form_->controller().set(Tabular::SET_LTHEAD, "dl_above");
370         else
371                 form_->controller().set(Tabular::UNSET_LTHEAD, "dl_above");
372         form_->changed();
373 }
374
375
376 void QTabularDialog::ltHeaderBorderBelow_clicked()
377 {
378         if (headerBorderBelowCB->isChecked())
379                 form_->controller().set(Tabular::SET_LTHEAD, "dl_below");
380         else
381                 form_->controller().set(Tabular::UNSET_LTHEAD, "dl_below");
382         form_->changed();
383 }
384
385
386 void QTabularDialog::ltFirstHeaderBorderAbove_clicked()
387 {
388         if (firstheaderBorderAboveCB->isChecked())
389                 form_->controller().set(Tabular::SET_LTFIRSTHEAD, "dl_above");
390         else
391                 form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "dl_above");
392         form_->changed();
393 }
394
395
396 void QTabularDialog::ltFirstHeaderBorderBelow_clicked()
397 {
398         if (firstheaderBorderBelowCB->isChecked())
399                 form_->controller().set(Tabular::SET_LTFIRSTHEAD, "dl_below");
400         else
401                 form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "dl_below");
402         form_->changed();
403 }
404
405
406 void QTabularDialog::ltFirstHeaderStatus_clicked()
407 {
408         bool enable(firstheaderStatusCB->isChecked());
409         if (enable)
410                 form_->controller().set(Tabular::SET_LTFIRSTHEAD, "");
411         else
412                 form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "");
413         firstheaderBorderAboveCB->setEnabled(enable);
414         firstheaderBorderBelowCB->setEnabled(enable);
415         form_->changed();
416 }
417
418
419 void QTabularDialog::ltFirstHeaderEmpty_clicked()
420 {
421         bool enable(firstheaderNoContentsCB->isChecked());
422         if (enable)
423                 form_->controller().set(Tabular::SET_LTFIRSTHEAD, "empty");
424         else
425                 form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "empty");
426         firstheaderStatusCB->setEnabled(!enable);
427         firstheaderBorderAboveCB->setEnabled(!enable);
428         firstheaderBorderBelowCB->setEnabled(!enable);
429         form_->changed();
430 }
431
432
433 void QTabularDialog::ltFooterStatus_clicked()
434 {
435         bool enable(footerStatusCB->isChecked());
436         if (enable)
437                 form_->controller().set(Tabular::SET_LTFOOT, "");
438         else
439                 form_->controller().set(Tabular::UNSET_LTFOOT, "");
440         footerBorderAboveCB->setEnabled(enable);
441         footerBorderBelowCB->setEnabled(enable);
442         lastfooterNoContentsCB->setEnabled(enable);
443         form_->changed();
444 }
445
446
447 void QTabularDialog::ltFooterBorderAbove_clicked()
448 {
449         if (footerBorderAboveCB->isChecked())
450                 form_->controller().set(Tabular::SET_LTFOOT, "dl_above");
451         else
452                 form_->controller().set(Tabular::UNSET_LTFOOT, "dl_above");
453         form_->changed();
454 }
455
456
457 void QTabularDialog::ltFooterBorderBelow_clicked()
458 {
459         if (footerBorderBelowCB->isChecked())
460                 form_->controller().set(Tabular::SET_LTFOOT, "dl_below");
461         else
462                 form_->controller().set(Tabular::UNSET_LTFOOT, "dl_below");
463         form_->changed();
464 }
465
466
467 void QTabularDialog::ltLastFooterStatus_clicked()
468 {
469         bool enable(lastfooterStatusCB->isChecked());
470         if (enable)
471                 form_->controller().set(Tabular::SET_LTLASTFOOT, "");
472         else
473                 form_->controller().set(Tabular::UNSET_LTLASTFOOT, "");
474         lastfooterBorderAboveCB->setEnabled(enable);
475         lastfooterBorderBelowCB->setEnabled(enable);
476         form_->changed();
477 }
478
479
480 void QTabularDialog::ltLastFooterBorderAbove_clicked()
481 {
482         if (lastfooterBorderAboveCB->isChecked())
483                 form_->controller().set(Tabular::SET_LTLASTFOOT, "dl_above");
484         else
485                 form_->controller().set(Tabular::UNSET_LTLASTFOOT, "dl_above");
486         form_->changed();
487 }
488
489
490 void QTabularDialog::ltLastFooterBorderBelow_clicked()
491 {
492         if (lastfooterBorderBelowCB->isChecked())
493                 form_->controller().set(Tabular::SET_LTLASTFOOT, "dl_below");
494         else
495                 form_->controller().set(Tabular::UNSET_LTLASTFOOT, "dl_below");
496         form_->changed();
497 }
498
499
500 void QTabularDialog::ltLastFooterEmpty_clicked()
501 {
502         bool enable(lastfooterNoContentsCB->isChecked());
503         if (enable)
504                 form_->controller().set(Tabular::SET_LTLASTFOOT, "empty");
505         else
506                 form_->controller().set(Tabular::UNSET_LTLASTFOOT, "empty");
507         lastfooterStatusCB->setEnabled(!enable);
508         lastfooterBorderAboveCB->setEnabled(!enable);
509         lastfooterBorderBelowCB->setEnabled(!enable);
510         form_->changed();
511 }
512
513
514 /////////////////////////////////////////////////////////////////////
515 //
516 // QTabular
517 //
518 /////////////////////////////////////////////////////////////////////
519
520 typedef QController<ControlTabular, QView<QTabularDialog> > tabular_base_class;
521
522 QTabular::QTabular(Dialog & parent)
523         : tabular_base_class(parent, _("Table Settings"))
524 {
525 }
526
527
528 void QTabular::build_dialog()
529 {
530         dialog_.reset(new QTabularDialog(this));
531
532         bcview().setCancel(dialog_->closePB);
533
534         bcview().addReadOnly(dialog_->topspaceED);
535         bcview().addReadOnly(dialog_->topspaceUnit);
536         bcview().addReadOnly(dialog_->topspaceCO);
537         bcview().addReadOnly(dialog_->bottomspaceED);
538         bcview().addReadOnly(dialog_->bottomspaceUnit);
539         bcview().addReadOnly(dialog_->bottomspaceCO);
540         bcview().addReadOnly(dialog_->interlinespaceED);
541         bcview().addReadOnly(dialog_->interlinespaceUnit);
542         bcview().addReadOnly(dialog_->interlinespaceCO);
543         bcview().addReadOnly(dialog_->borderDefaultRB);
544         bcview().addReadOnly(dialog_->booktabsRB);
545
546         bcview().addReadOnly(dialog_->multicolumnCB);
547         bcview().addReadOnly(dialog_->rotateCellCB);
548         bcview().addReadOnly(dialog_->rotateTabularCB);
549         bcview().addReadOnly(dialog_->specialAlignmentED);
550         bcview().addReadOnly(dialog_->widthED);
551         bcview().addReadOnly(dialog_->widthUnit);
552         bcview().addReadOnly(dialog_->hAlignCB);
553         bcview().addReadOnly(dialog_->vAlignCB);
554         bcview().addReadOnly(dialog_->borderSetPB);
555         bcview().addReadOnly(dialog_->borderUnsetPB);
556         bcview().addReadOnly(dialog_->borders);
557         bcview().addReadOnly(dialog_->longTabularCB);
558         bcview().addReadOnly(dialog_->headerStatusCB);
559         bcview().addReadOnly(dialog_->headerBorderAboveCB);
560         bcview().addReadOnly(dialog_->headerBorderBelowCB);
561         bcview().addReadOnly(dialog_->firstheaderStatusCB);
562         bcview().addReadOnly(dialog_->firstheaderBorderAboveCB);
563         bcview().addReadOnly(dialog_->firstheaderBorderBelowCB);
564         bcview().addReadOnly(dialog_->firstheaderNoContentsCB);
565         bcview().addReadOnly(dialog_->footerStatusCB);
566         bcview().addReadOnly(dialog_->footerBorderAboveCB);
567         bcview().addReadOnly(dialog_->footerBorderBelowCB);
568         bcview().addReadOnly(dialog_->lastfooterStatusCB);
569         bcview().addReadOnly(dialog_->lastfooterBorderAboveCB);
570         bcview().addReadOnly(dialog_->lastfooterBorderBelowCB);
571         bcview().addReadOnly(dialog_->lastfooterNoContentsCB);
572         bcview().addReadOnly(dialog_->newpageCB);
573
574         // initialize the length validator
575         addCheckedLineEdit(bcview(), dialog_->widthED,
576                 dialog_->fixedWidthColLA);
577         addCheckedLineEdit(bcview(), dialog_->topspaceED,
578                 dialog_->topspaceLA);
579         addCheckedLineEdit(bcview(), dialog_->bottomspaceED,
580                 dialog_->bottomspaceLA);
581         addCheckedLineEdit(bcview(), dialog_->interlinespaceED,
582                 dialog_->interlinespaceLA);
583 }
584
585
586 bool QTabular::isValid()
587 {
588         return true;
589 }
590
591
592 void QTabular::update_borders()
593 {
594         Tabular const & tabular = controller().tabular();
595         Tabular::idx_type const cell = controller().getActiveCell();
596         bool const isMulticolumnCell = tabular.isMultiColumn(cell);
597
598         if (!isMulticolumnCell) {
599                 dialog_->borders->setLeftEnabled(true);
600                 dialog_->borders->setRightEnabled(true);
601                 dialog_->borders->setTop(tabular.topLine(cell, true));
602                 dialog_->borders->setBottom(tabular.bottomLine(cell, true));
603                 dialog_->borders->setLeft(tabular.leftLine(cell, true));
604                 dialog_->borders->setRight(tabular.rightLine(cell, true));
605                 // repaint the setborder widget
606                 dialog_->borders->update();
607                 return;
608         }
609
610         dialog_->borders->setTop(tabular.topLine(cell));
611         dialog_->borders->setBottom(tabular.bottomLine(cell));
612         // pay attention to left/right lines: they are only allowed
613         // to set if we are in first/last cell of row or if the left/right
614         // cell is also a multicolumn.
615         if (tabular.isFirstCellInRow(cell) || tabular.isMultiColumn(cell - 1)) {
616                 dialog_->borders->setLeftEnabled(true);
617                 dialog_->borders->setLeft(tabular.leftLine(cell));
618         } else {
619                 dialog_->borders->setLeft(false);
620                 dialog_->borders->setLeftEnabled(false);
621         }
622         if (tabular.isLastCellInRow(cell) || tabular.isMultiColumn(cell + 1)) {
623                 dialog_->borders->setRightEnabled(true);
624                 dialog_->borders->setRight(tabular.rightLine(cell));
625         } else {
626                 dialog_->borders->setRight(false);
627                 dialog_->borders->setRightEnabled(false);
628         }
629         // repaint the setborder widget
630         dialog_->borders->update();
631 }
632
633
634 void QTabular::update_contents()
635 {
636         controller().initialiseParams(string());
637
638         Tabular const & tabular(controller().tabular());
639         Tabular::idx_type const cell = controller().getActiveCell();
640
641         Tabular::row_type const row(tabular.row_of_cell(cell));
642         Tabular::col_type const col(tabular.column_of_cell(cell));
643
644         dialog_->tabularRowED->setText(toqstr(convert<string>(row + 1)));
645         dialog_->tabularColumnED->setText(toqstr(convert<string>(col + 1)));
646
647         bool const multicol(tabular.isMultiColumn(cell));
648
649         dialog_->multicolumnCB->setChecked(multicol);
650
651         dialog_->rotateCellCB->setChecked(tabular.getRotateCell(cell));
652         dialog_->rotateTabularCB->setChecked(tabular.getRotateTabular());
653
654         dialog_->longTabularCB->setChecked(tabular.isLongTabular());
655
656         update_borders();
657
658         Length pwidth;
659         docstring special;
660
661         if (multicol) {
662                 special = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_MULTI);
663                 pwidth = tabular.getMColumnPWidth(cell);
664         } else {
665                 special = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_COLUMN);
666                 pwidth = tabular.getColumnPWidth(cell);
667         }
668
669         dialog_->specialAlignmentED->setText(toqstr(special));
670
671         bool const isReadonly = bc().bp().isReadOnly();
672         dialog_->specialAlignmentED->setEnabled(!isReadonly);
673
674         Length::UNIT default_unit = controller().useMetricUnits() ? Length::CM : Length::IN;
675
676         dialog_->borderDefaultRB->setChecked(!tabular.useBookTabs());
677         dialog_->booktabsRB->setChecked(tabular.useBookTabs());
678
679         if (tabular.row_info[row].top_space.empty()
680             && !tabular.row_info[row].top_space_default) {
681                 dialog_->topspaceCO->setCurrentIndex(0);
682         } else if (tabular.row_info[row].top_space_default) {
683                 dialog_->topspaceCO->setCurrentIndex(1);
684         } else {
685                 dialog_->topspaceCO->setCurrentIndex(2);
686                 lengthToWidgets(dialog_->topspaceED,
687                                 dialog_->topspaceUnit,
688                                 tabular.row_info[row].top_space.asString(),
689                                 default_unit);
690         }
691         dialog_->topspaceED->setEnabled(!isReadonly
692                 && (dialog_->topspaceCO->currentIndex() == 2));
693         dialog_->topspaceUnit->setEnabled(!isReadonly
694                 && (dialog_->topspaceCO->currentIndex() == 2));
695         dialog_->topspaceCO->setEnabled(!isReadonly);
696
697         if (tabular.row_info[row].bottom_space.empty()
698             && !tabular.row_info[row].bottom_space_default) {
699                 dialog_->bottomspaceCO->setCurrentIndex(0);
700         } else if (tabular.row_info[row].bottom_space_default) {
701                 dialog_->bottomspaceCO->setCurrentIndex(1);
702         } else {
703                 dialog_->bottomspaceCO->setCurrentIndex(2);
704                 lengthToWidgets(dialog_->bottomspaceED,
705                                 dialog_->bottomspaceUnit,
706                                 tabular.row_info[row].bottom_space.asString(),
707                                 default_unit);
708         }
709         dialog_->bottomspaceED->setEnabled(!isReadonly
710                 && (dialog_->bottomspaceCO->currentIndex() == 2));
711         dialog_->bottomspaceUnit->setEnabled(!isReadonly
712                 && (dialog_->bottomspaceCO->currentIndex() == 2));
713         dialog_->bottomspaceCO->setEnabled(!isReadonly);
714
715         if (tabular.row_info[row].interline_space.empty()
716             && !tabular.row_info[row].interline_space_default) {
717                 dialog_->interlinespaceCO->setCurrentIndex(0);
718         } else if (tabular.row_info[row].interline_space_default) {
719                 dialog_->interlinespaceCO->setCurrentIndex(1);
720         } else {
721                 dialog_->interlinespaceCO->setCurrentIndex(2);
722                 lengthToWidgets(dialog_->interlinespaceED,
723                                 dialog_->interlinespaceUnit,
724                                 tabular.row_info[row].interline_space.asString(),
725                                 default_unit);
726         }
727         dialog_->interlinespaceED->setEnabled(!isReadonly
728                 && (dialog_->interlinespaceCO->currentIndex() == 2));
729         dialog_->interlinespaceUnit->setEnabled(!isReadonly
730                 && (dialog_->interlinespaceCO->currentIndex() == 2));
731         dialog_->interlinespaceCO->setEnabled(!isReadonly);
732
733         string colwidth;
734         if (!pwidth.zero())
735                 colwidth = pwidth.asString();
736         lengthToWidgets(dialog_->widthED, dialog_->widthUnit,
737                 colwidth, default_unit);
738
739         dialog_->widthED->setEnabled(!isReadonly);
740         dialog_->widthUnit->setEnabled(!isReadonly);
741
742         dialog_->hAlignCB->clear();
743         dialog_->hAlignCB->addItem(qt_("Left"));
744         dialog_->hAlignCB->addItem(qt_("Center"));
745         dialog_->hAlignCB->addItem(qt_("Right"));
746         if (!multicol && !pwidth.zero())
747                 dialog_->hAlignCB->addItem(qt_("Justified"));
748
749         int align = 0;
750         switch (tabular.getAlignment(cell)) {
751         case LYX_ALIGN_LEFT:
752                 align = 0;
753                 break;
754         case LYX_ALIGN_CENTER:
755                 align = 1;
756                 break;
757         case LYX_ALIGN_RIGHT:
758                 align = 2;
759                 break;
760         case LYX_ALIGN_BLOCK:
761         {
762                 if (!multicol && !pwidth.zero())
763                         align = 3;
764                 break;
765         }
766         default:
767                 align = 0;
768                 break;
769         }
770         dialog_->hAlignCB->setCurrentIndex(align);
771
772         int valign = 0;
773         switch (tabular.getVAlignment(cell)) {
774         case Tabular::LYX_VALIGN_TOP:
775                 valign = 0;
776                 break;
777         case Tabular::LYX_VALIGN_MIDDLE:
778                 valign = 1;
779                 break;
780         case Tabular::LYX_VALIGN_BOTTOM:
781                 valign = 2;
782                 break;
783         default:
784                 valign = 1;
785                 break;
786         }
787         if (pwidth.zero())
788                 valign = 1;
789         dialog_->vAlignCB->setCurrentIndex(valign);
790
791         dialog_->hAlignCB->setEnabled(true);
792         dialog_->vAlignCB->setEnabled(!pwidth.zero());
793
794         if (!tabular.isLongTabular()) {
795                 dialog_->headerStatusCB->setChecked(false);
796                 dialog_->headerBorderAboveCB->setChecked(false);
797                 dialog_->headerBorderBelowCB->setChecked(false);
798                 dialog_->firstheaderStatusCB->setChecked(false);
799                 dialog_->firstheaderBorderAboveCB->setChecked(false);
800                 dialog_->firstheaderBorderBelowCB->setChecked(false);
801                 dialog_->firstheaderNoContentsCB->setChecked(false);
802                 dialog_->footerStatusCB->setChecked(false);
803                 dialog_->footerBorderAboveCB->setChecked(false);
804                 dialog_->footerBorderBelowCB->setChecked(false);
805                 dialog_->lastfooterStatusCB->setChecked(false);
806                 dialog_->lastfooterBorderAboveCB->setChecked(false);
807                 dialog_->lastfooterBorderBelowCB->setChecked(false);
808                 dialog_->lastfooterNoContentsCB->setChecked(false);
809                 dialog_->newpageCB->setChecked(false);
810                 dialog_->newpageCB->setEnabled(false);
811                 return;
812         }
813
814         Tabular::ltType ltt;
815         bool use_empty;
816         bool row_set = tabular.getRowOfLTHead(row, ltt);
817         dialog_->headerStatusCB->setChecked(row_set);
818         if (ltt.set) {
819                 dialog_->headerBorderAboveCB->setChecked(ltt.topDL);
820                 dialog_->headerBorderBelowCB->setChecked(ltt.bottomDL);
821                 use_empty = true;
822         } else {
823                 dialog_->headerBorderAboveCB->setChecked(false);
824                 dialog_->headerBorderBelowCB->setChecked(false);
825                 dialog_->headerBorderAboveCB->setEnabled(false);
826                 dialog_->headerBorderBelowCB->setEnabled(false);
827                 dialog_->firstheaderNoContentsCB->setChecked(false);
828                 dialog_->firstheaderNoContentsCB->setEnabled(false);
829                 use_empty = false;
830         }
831
832         row_set = tabular.getRowOfLTFirstHead(row, ltt);
833         dialog_->firstheaderStatusCB->setChecked(row_set);
834         if (ltt.set && (!ltt.empty || !use_empty)) {
835                 dialog_->firstheaderBorderAboveCB->setChecked(ltt.topDL);
836                 dialog_->firstheaderBorderBelowCB->setChecked(ltt.bottomDL);
837         } else {
838                 dialog_->firstheaderBorderAboveCB->setEnabled(false);
839                 dialog_->firstheaderBorderBelowCB->setEnabled(false);
840                 dialog_->firstheaderBorderAboveCB->setChecked(false);
841                 dialog_->firstheaderBorderBelowCB->setChecked(false);
842                 if (use_empty) {
843                         dialog_->firstheaderNoContentsCB->setChecked(ltt.empty);
844                         if (ltt.empty)
845                                 dialog_->firstheaderStatusCB->setEnabled(false);
846                 }
847         }
848
849         row_set = tabular.getRowOfLTFoot(row, ltt);
850         dialog_->footerStatusCB->setChecked(row_set);
851         if (ltt.set) {
852                 dialog_->footerBorderAboveCB->setChecked(ltt.topDL);
853                 dialog_->footerBorderBelowCB->setChecked(ltt.bottomDL);
854                 use_empty = true;
855         } else {
856                 dialog_->footerBorderAboveCB->setChecked(false);
857                 dialog_->footerBorderBelowCB->setChecked(false);
858                 dialog_->footerBorderAboveCB->setEnabled(false);
859                 dialog_->footerBorderBelowCB->setEnabled(false);
860                 dialog_->lastfooterNoContentsCB->setChecked(false);
861                 dialog_->lastfooterNoContentsCB->setEnabled(false);
862                 use_empty = false;
863         }
864
865         row_set = tabular.getRowOfLTLastFoot(row, ltt);
866                 dialog_->lastfooterStatusCB->setChecked(row_set);
867         if (ltt.set && (!ltt.empty || !use_empty)) {
868                 dialog_->lastfooterBorderAboveCB->setChecked(ltt.topDL);
869                 dialog_->lastfooterBorderBelowCB->setChecked(ltt.bottomDL);
870         } else {
871                 dialog_->lastfooterBorderAboveCB->setEnabled(false);
872                 dialog_->lastfooterBorderBelowCB->setEnabled(false);
873                 dialog_->lastfooterBorderAboveCB->setChecked(false);
874                 dialog_->lastfooterBorderBelowCB->setChecked(false);
875                 if (use_empty) {
876                         dialog_->lastfooterNoContentsCB->setChecked(ltt.empty);
877                         if (ltt.empty)
878                                 dialog_->lastfooterStatusCB->setEnabled(false);
879                 }
880         }
881         dialog_->newpageCB->setChecked(tabular.getLTNewPage(row));
882 }
883
884
885 void QTabular::closeGUI()
886 {
887         // ugly hack to auto-apply the stuff that hasn't been
888         // yet. don't let this continue to exist ...
889
890         // Subtle here, we must /not/ apply any changes and
891         // then refer to tabular, as it will have been freed
892         // since the changes update the actual controller().tabular()
893         Tabular const & tabular(controller().tabular());
894
895         // apply the fixed width values
896         Tabular::idx_type const cell = controller().getActiveCell();
897         bool const multicol = tabular.isMultiColumn(cell);
898         string width = widgetsToLength(dialog_->widthED, dialog_->widthUnit);
899         string width2;
900
901         Length llen = tabular.getColumnPWidth(cell);
902         Length llenMulti = tabular.getMColumnPWidth(cell);
903
904         if (multicol && !llenMulti.zero())
905                         width2 = llenMulti.asString();
906         else if (!multicol && !llen.zero())
907                         width2 = llen.asString();
908
909         // apply the special alignment
910         docstring const sa1 = qstring_to_ucs4(dialog_->specialAlignmentED->text());
911         docstring sa2;
912
913         if (multicol)
914                 sa2 = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_MULTI);
915         else
916                 sa2 = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_COLUMN);
917
918         if (sa1 != sa2) {
919                 if (multicol)
920                         controller().set(Tabular::SET_SPECIAL_MULTI, to_utf8(sa1));
921                 else
922                         controller().set(Tabular::SET_SPECIAL_COLUMN, to_utf8(sa1));
923         }
924
925         if (width != width2) {
926                 if (multicol)
927                         controller().set(Tabular::SET_MPWIDTH, width);
928                 else
929                         controller().set(Tabular::SET_PWIDTH, width);
930         }
931
932         /* DO WE NEED THIS?
933         switch (dialog_->topspaceCO->currentIndex()) {
934                 case 0:
935                         controller().set(Tabular::SET_TOP_SPACE, "");
936                         break;
937                 case 1:
938                         controller().set(Tabular::SET_TOP_SPACE, "default");
939                         break;
940                 case 2:
941                         controller().set(Tabular::SET_TOP_SPACE,
942                                 widgetsToLength(dialog_->topspaceED,
943                                         dialog_->topspaceUnit));
944                         break;
945         }
946
947         switch (dialog_->bottomspaceCO->currentIndex()) {
948                 case 0:
949                         controller().set(Tabular::SET_BOTTOM_SPACE, "");
950                         break;
951                 case 1:
952                         controller().set(Tabular::SET_BOTTOM_SPACE, "default");
953                         break;
954                 case 2:
955                         controller().set(Tabular::SET_BOTTOM_SPACE,
956                                 widgetsToLength(dialog_->bottomspaceED,
957                                         dialog_->bottomspaceUnit));
958                         break;
959         }
960
961         switch (dialog_->interlinespaceCO->currentIndex()) {
962                 case 0:
963                         controller().set(Tabular::SET_INTERLINE_SPACE, "");
964                         break;
965                 case 1:
966                         controller().set(Tabular::SET_INTERLINE_SPACE, "default");
967                         break;
968                 case 2:
969                         controller().set(Tabular::SET_INTERLINE_SPACE,
970                                 widgetsToLength(dialog_->interlinespaceED,
971                                         dialog_->interlinespaceUnit));
972                         break;
973         }
974 */
975 }
976
977 } // namespace frontend
978 } // namespace lyx
979
980 #include "QTabular_moc.cpp"