]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabular.C
Alains patch for setting tabular column global settings.
[lyx.git] / src / frontends / xforms / FormTabular.C
1 /**
2  * \file FormTabular.C
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
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "debug.h"
18
19 #include "FormTabular.h"
20 #include "forms/form_tabular.h"
21 #include "frontends/LyXView.h"
22 #include "buffer.h"
23 #include "xforms_helpers.h"
24 #include "lyxrc.h" // to set the default length values
25 #include "helper_funcs.h"
26 #include "input_validators.h"
27
28 #include "insets/insettabular.h"
29
30 #include "support/lstrings.h"
31
32 #include <boost/bind.hpp>
33
34 #include <functional>
35 #include FORMS_H_LOCATION
36
37
38 using std::vector;
39 using std::bind2nd;
40 using std::remove_if;
41
42
43 FormTabular::FormTabular(LyXView & lv, Dialogs & d)
44         : FormInset(lv, d, _("Tabular Layout")),
45           inset_(0), actCell_(-1), closing_(false)
46 {
47 }
48
49
50 void FormTabular::redraw()
51 {
52         if (form() && form()->visible)
53                 fl_redraw_form(form());
54         else
55                 return;
56
57         FL_FORM * outer_form = fl_get_active_folder(dialog_->tabfolder);
58         if (outer_form && outer_form->visible)
59                 fl_redraw_form(outer_form);
60 }
61
62
63 FL_FORM * FormTabular::form() const
64 {
65         if (dialog_.get())
66                 return dialog_->form;
67         return 0;
68 }
69
70
71 void FormTabular::disconnect()
72 {
73         inset_ = 0;
74         FormInset::disconnect();
75 }
76
77
78 void FormTabular::showInset(InsetTabular * inset)
79 {
80         if (inset == 0) return;
81
82         // If connected to another inset, disconnect from it.
83         if (inset_ != inset) {
84                 ih_.disconnect();
85                 ih_ = inset->hideDialog.connect(boost::bind(&FormTabular::hide, this));
86                 inset_ = inset;
87         }
88
89         show();
90 }
91
92
93 void FormTabular::updateInset(InsetTabular * inset)
94 {
95         if (inset == 0 || inset_ == 0) return;
96
97         // If connected to another inset, disconnect from it.
98         if (inset_ != inset) {
99                 ih_.disconnect();
100                 ih_ = inset->hideDialog.connect(boost::bind(&FormTabular::hide, this));
101                 inset_ = inset;
102         }
103
104         update();
105 }
106
107
108 void FormTabular::build()
109 {
110         dialog_.reset(build_tabular(this));
111
112         // Allow the base class to control messages
113         setMessageWidget(dialog_->text_warning);
114
115         setPrehandler(dialog_->input_tabular_column);
116         setPrehandler(dialog_->input_tabular_row);
117
118         tabular_options_.reset(build_tabular_options(this));
119         column_options_.reset(build_tabular_column(this));
120         cell_options_.reset(build_tabular_cell(this));
121         longtable_options_.reset(build_tabular_longtable(this));
122
123         fl_set_input_return(column_options_->input_column_width,
124                             FL_RETURN_END);
125         fl_set_input_return(column_options_->input_special_alignment,
126                             FL_RETURN_END);
127
128         setPrehandler(column_options_->input_column_width);
129         setPrehandler(column_options_->input_special_alignment);
130
131         fl_set_input_return(cell_options_->input_mcolumn_width,
132                             FL_RETURN_END);
133         fl_set_input_return(cell_options_->input_special_multialign,
134                             FL_RETURN_END);
135
136         setPrehandler(cell_options_->input_mcolumn_width);
137         setPrehandler(cell_options_->input_special_multialign);
138
139         fl_addto_tabfolder(dialog_->tabfolder, _("Tabular"),
140                            tabular_options_->form);
141         fl_addto_tabfolder(dialog_->tabfolder, _("Column/Row"),
142                            column_options_->form);
143         fl_addto_tabfolder(dialog_->tabfolder, _("Cell"),
144                            cell_options_->form);
145         fl_addto_tabfolder(dialog_->tabfolder, _("LongTable"),
146                            longtable_options_->form);
147
148         // Create the contents of the unit choices
149         // Don't include the "%" terms...
150         vector<string> units_vec = getLatexUnits();
151         vector<string>::iterator ret =
152                 remove_if(units_vec.begin(), units_vec.end(),
153                           bind2nd(contains_functor(), "%"));
154         units_vec.erase(ret, units_vec.end());
155
156         string units = getStringFromVector(units_vec, "|");
157
158         fl_addto_choice(column_options_->choice_value_column_width,
159                         units.c_str());
160         fl_addto_choice(cell_options_->choice_value_mcolumn_width,
161                         units.c_str());
162 }
163
164
165 void FormTabular::update()
166 {
167         if (closing_)
168                 return;
169
170         if (!inset_ || !inset_->tabular.get())
171                 return;
172
173         LyXTabular * tabular = inset_->tabular.get();
174         int align;
175         char buf[12];
176         LyXLength pwidth;
177         string special;
178
179         int cell = inset_->getActCell();
180         actCell_ = cell;
181         int column = tabular->column_of_cell(cell) + 1;
182         clearMessage();
183         fl_activate_object(column_options_->input_special_alignment);
184         fl_activate_object(cell_options_->input_special_multialign);
185         fl_activate_object(column_options_->input_column_width);
186         fl_activate_object(column_options_->choice_value_column_width);
187         sprintf(buf, "%d", column);
188         fl_set_input(dialog_->input_tabular_column, buf);
189         fl_deactivate_object(dialog_->input_tabular_column);
190         int row = tabular->row_of_cell(cell);
191         sprintf(buf, "%d", row + 1);
192         fl_set_input(dialog_->input_tabular_row, buf);
193         fl_deactivate_object(dialog_->input_tabular_row);
194         if (tabular->IsMultiColumn(cell)) {
195                 fl_set_button(cell_options_->check_multicolumn, 1);
196                 fl_set_button(cell_options_->check_border_top,
197                               tabular->TopLine(cell)?1:0);
198                 setEnabled(cell_options_->check_border_top, true);
199                 fl_set_button(cell_options_->check_border_bottom,
200                               tabular->BottomLine(cell)?1:0);
201                 setEnabled(cell_options_->check_border_bottom, true);
202                 // pay attention to left/right lines they are only allowed
203                 // to set if we are in first/last cell of row or if the left/right
204                 // cell is also a multicolumn.
205                 if (tabular->IsFirstCellInRow(cell) ||
206                     tabular->IsMultiColumn(cell-1)) {
207                         fl_set_button(cell_options_->check_border_left,
208                                       tabular->LeftLine(cell)?1:0);
209                         setEnabled(cell_options_->check_border_left, true);
210                 } else {
211                         fl_set_button(cell_options_->check_border_left, 0);
212                         setEnabled(cell_options_->check_border_left, false);
213                 }
214                 if (tabular->IsLastCellInRow(cell) ||
215                     tabular->IsMultiColumn(cell+1)) {
216                         fl_set_button(cell_options_->check_border_right,
217                                       tabular->RightLine(cell)?1:0);
218                         setEnabled(cell_options_->check_border_right, true);
219                 } else {
220                         fl_set_button(cell_options_->check_border_right, 0);
221                         setEnabled(cell_options_->check_border_right, false);
222                 }
223                 pwidth = tabular->GetMColumnPWidth(cell);
224                 align = tabular->GetAlignment(cell);
225                 if (align == LYX_ALIGN_LEFT)
226                         fl_set_button(cell_options_->radio_align_left, 1);
227                 else if (align == LYX_ALIGN_RIGHT)
228                         fl_set_button(cell_options_->radio_align_right, 1);
229                 else
230                         fl_set_button(cell_options_->radio_align_center, 1);
231
232                 align = tabular->GetVAlignment(cell);
233                 fl_set_button(cell_options_->radio_valign_top, 0);
234                 fl_set_button(cell_options_->radio_valign_bottom, 0);
235                 fl_set_button(cell_options_->radio_valign_center, 0);
236                 if (pwidth.zero() || (align == LyXTabular::LYX_VALIGN_CENTER))
237                         fl_set_button(cell_options_->radio_valign_center, 1);
238                 else if (align == LyXTabular::LYX_VALIGN_BOTTOM)
239                         fl_set_button(cell_options_->radio_valign_bottom, 1);
240                 else
241                         fl_set_button(cell_options_->radio_valign_top, 1);
242
243                 special = tabular->GetAlignSpecial(cell, LyXTabular::SET_SPECIAL_MULTI);
244                 fl_set_input(cell_options_->input_special_multialign, special.c_str());
245                 bool const metric = lyxrc.default_papersize > 3;
246                 string const default_unit = metric ? "cm" : "in";
247                 updateWidgetsFromLength(cell_options_->input_mcolumn_width,
248                                         cell_options_->choice_value_mcolumn_width,
249                                         pwidth, default_unit);
250
251                 if (!lv_.buffer()->isReadonly()) {
252                         setEnabled(cell_options_->input_special_multialign, true);
253                         setEnabled(cell_options_->input_mcolumn_width, true);
254                         setEnabled(cell_options_->choice_value_mcolumn_width, true);
255                 }
256
257                 setEnabled(cell_options_->radio_valign_top,    !pwidth.zero());
258                 setEnabled(cell_options_->radio_valign_bottom, !pwidth.zero());
259                 setEnabled(cell_options_->radio_valign_center, !pwidth.zero());
260
261                 setEnabled(cell_options_->radio_align_left,   true);
262                 setEnabled(cell_options_->radio_align_right,  true);
263                 setEnabled(cell_options_->radio_align_center, true);
264         } else {
265                 fl_set_button(cell_options_->check_multicolumn, 0);
266
267                 fl_set_button(cell_options_->check_border_top, 0);
268                 setEnabled(cell_options_->check_border_top, false);
269
270                 fl_set_button(cell_options_->check_border_bottom, 0);
271                 setEnabled(cell_options_->check_border_bottom, false);
272
273                 fl_set_button(cell_options_->check_border_left, 0);
274                 setEnabled(cell_options_->check_border_left, false);
275
276                 fl_set_button(cell_options_->check_border_right, 0);
277                 setEnabled(cell_options_->check_border_right, false);
278
279                 fl_set_button(cell_options_->radio_align_left, 0);
280                 setEnabled(cell_options_->radio_align_left, false);
281
282                 fl_set_button(cell_options_->radio_align_right, 0);
283                 setEnabled(cell_options_->radio_align_right, false);
284
285                 fl_set_button(cell_options_->radio_align_center, 0);
286                 setEnabled(cell_options_->radio_align_center, false);
287
288                 fl_set_button(cell_options_->radio_valign_top, 0);
289                 setEnabled(cell_options_->radio_valign_top, false);
290
291                 fl_set_button(cell_options_->radio_valign_bottom, 0);
292                 setEnabled(cell_options_->radio_valign_bottom, false);
293
294                 fl_set_button(cell_options_->radio_valign_center, 0);
295                 setEnabled(cell_options_->radio_valign_center, false);
296
297                 fl_set_input(cell_options_->input_special_multialign, "");
298                 setEnabled(cell_options_->input_special_multialign, false);
299
300                 fl_set_input(cell_options_->input_mcolumn_width, "");
301                 setEnabled(cell_options_->input_mcolumn_width, false);
302                 setEnabled(cell_options_->choice_value_mcolumn_width, false);
303         }
304         if (tabular->GetRotateCell(cell))
305                 fl_set_button(cell_options_->check_rotate_cell, 1);
306         else
307                 fl_set_button(cell_options_->check_rotate_cell, 0);
308         if (tabular->TopLine(cell, true))
309                 fl_set_button(column_options_->check_border_top, 1);
310         else
311                 fl_set_button(column_options_->check_border_top, 0);
312         if (tabular->BottomLine(cell, true))
313                 fl_set_button(column_options_->check_border_bottom, 1);
314         else
315                 fl_set_button(column_options_->check_border_bottom, 0);
316         if (tabular->LeftLine(cell, true))
317                 fl_set_button(column_options_->check_border_left, 1);
318         else
319                 fl_set_button(column_options_->check_border_left, 0);
320         if (tabular->RightLine(cell, true))
321                 fl_set_button(column_options_->check_border_right, 1);
322         else
323                 fl_set_button(column_options_->check_border_right, 0);
324         special = tabular->GetAlignSpecial(cell, LyXTabular::SET_SPECIAL_COLUMN);
325         fl_set_input(column_options_->input_special_alignment, special.c_str());
326
327         bool const isReadonly = lv_.buffer()->isReadonly();
328         setEnabled(column_options_->input_special_alignment, !isReadonly);
329
330         pwidth = tabular->GetColumnPWidth(cell);
331         bool const metric = lyxrc.default_papersize > 3;
332         string const default_unit = metric ? "cm" : "in";
333         updateWidgetsFromLength(column_options_->input_column_width,
334                                 column_options_->choice_value_column_width,
335                                 pwidth, default_unit);
336         setEnabled(column_options_->input_column_width, !isReadonly);
337         setEnabled(column_options_->choice_value_column_width, !isReadonly);
338
339         setEnabled(cell_options_->check_useminipage, !pwidth.zero());
340         if (!pwidth.zero()) {
341                 if (tabular->GetUsebox(cell) == 2)
342                         fl_set_button(cell_options_->check_useminipage, 1);
343                 else
344                         fl_set_button(cell_options_->check_useminipage, 0);
345         } else {
346                 fl_set_button(cell_options_->check_useminipage, 0);
347         }
348         align = tabular->GetAlignment(cell, true);
349         fl_set_button(column_options_->radio_align_left, 0);
350         fl_set_button(column_options_->radio_align_right, 0);
351         fl_set_button(column_options_->radio_align_center, 0);
352         if (align == LYX_ALIGN_LEFT)
353                 fl_set_button(column_options_->radio_align_left, 1);
354         else if (align == LYX_ALIGN_RIGHT)
355                 fl_set_button(column_options_->radio_align_right, 1);
356         else
357                 fl_set_button(column_options_->radio_align_center, 1);
358         align = tabular->GetVAlignment(cell, true);
359         fl_set_button(column_options_->radio_valign_top, 0);
360         fl_set_button(column_options_->radio_valign_bottom, 0);
361         fl_set_button(column_options_->radio_valign_center, 0);
362         if (pwidth.zero() || (align == LyXTabular::LYX_VALIGN_CENTER))
363                 fl_set_button(column_options_->radio_valign_center, 1);
364         else if (align == LyXTabular::LYX_VALIGN_BOTTOM)
365                 fl_set_button(column_options_->radio_valign_bottom, 1);
366         else
367                 fl_set_button(column_options_->radio_valign_top, 1);
368
369         setEnabled(column_options_->radio_align_left,   true);
370         setEnabled(column_options_->radio_align_right,  true);
371         setEnabled(column_options_->radio_align_center, true);
372         setEnabled(column_options_->radio_valign_top,    !pwidth.zero());
373         setEnabled(column_options_->radio_valign_bottom, !pwidth.zero());
374         setEnabled(column_options_->radio_valign_center, !pwidth.zero());
375
376         fl_set_button(tabular_options_->check_longtable,
377                       tabular->IsLongTabular());
378
379         bool const enable = tabular->IsLongTabular();
380
381         setEnabled(longtable_options_->check_lt_firsthead, enable);
382         setEnabled(longtable_options_->check_1head_2border_above, enable);
383         setEnabled(longtable_options_->check_1head_2border_below, enable);
384         setEnabled(longtable_options_->check_1head_empty, enable);
385         setEnabled(longtable_options_->check_lt_head, enable);
386         setEnabled(longtable_options_->check_head_2border_above, enable);
387         setEnabled(longtable_options_->check_head_2border_below, enable);
388         setEnabled(longtable_options_->check_lt_foot, enable);
389         setEnabled(longtable_options_->check_foot_2border_above, enable);
390         setEnabled(longtable_options_->check_foot_2border_below, enable);
391         setEnabled(longtable_options_->check_lt_lastfoot, enable);
392         setEnabled(longtable_options_->check_lastfoot_2border_above, enable);
393         setEnabled(longtable_options_->check_lastfoot_2border_below, enable);
394         setEnabled(longtable_options_->check_lastfoot_empty, enable);
395         setEnabled(longtable_options_->check_lt_newpage, enable);
396
397         if (enable) {
398                 LyXTabular::ltType ltt;
399                 bool use_empty;
400                 bool row_set = tabular->GetRowOfLTHead(row, ltt);
401                 fl_set_button(longtable_options_->check_lt_head, row_set);
402                 if (ltt.set) {
403                         fl_set_button(longtable_options_->check_head_2border_above,
404                                       ltt.topDL);
405                         fl_set_button(longtable_options_->check_head_2border_above,
406                                       ltt.topDL);
407                         use_empty = true;
408                 } else {
409                         setEnabled(longtable_options_->check_head_2border_above, 0);
410                         setEnabled(longtable_options_->check_head_2border_below, 0);
411                         fl_set_button(longtable_options_->check_head_2border_above,0);
412                         fl_set_button(longtable_options_->check_head_2border_above,0);
413                         fl_set_button(longtable_options_->check_1head_empty,0);
414                         setEnabled(longtable_options_->check_1head_empty, 0);
415                         use_empty = false;
416                 }
417                 //
418                 row_set = tabular->GetRowOfLTFirstHead(row, ltt);
419                 fl_set_button(longtable_options_->check_lt_firsthead, row_set);
420                 if (ltt.set && (!ltt.empty || !use_empty)) {
421                         fl_set_button(longtable_options_->check_1head_2border_above,
422                                       ltt.topDL);
423                         fl_set_button(longtable_options_->check_1head_2border_above,
424                                       ltt.topDL);
425                 } else {
426                         setEnabled(longtable_options_->check_1head_2border_above, 0);
427                         setEnabled(longtable_options_->check_1head_2border_below, 0);
428                         fl_set_button(longtable_options_->check_1head_2border_above,0);
429                         fl_set_button(longtable_options_->check_1head_2border_above,0);
430                         if (use_empty) {
431                                 fl_set_button(longtable_options_->check_1head_empty,ltt.empty);
432                                 if (ltt.empty)
433                                         setEnabled(longtable_options_->check_lt_firsthead, 0);
434                         }
435                 }
436                 //
437                 row_set = tabular->GetRowOfLTFoot(row, ltt);
438                 fl_set_button(longtable_options_->check_lt_foot, row_set);
439                 if (ltt.set) {
440                         fl_set_button(longtable_options_->check_foot_2border_above,
441                                       ltt.topDL);
442                         fl_set_button(longtable_options_->check_foot_2border_above,
443                                       ltt.topDL);
444                         use_empty = true;
445                 } else {
446                         setEnabled(longtable_options_->check_foot_2border_above, 0);
447                         setEnabled(longtable_options_->check_foot_2border_below, 0);
448                         fl_set_button(longtable_options_->check_foot_2border_above,0);
449                         fl_set_button(longtable_options_->check_foot_2border_above,0);
450                         fl_set_button(longtable_options_->check_lastfoot_empty, 0);
451                         setEnabled(longtable_options_->check_lastfoot_empty, 0);
452                         use_empty = false;
453                 }
454                 //
455                 row_set = tabular->GetRowOfLTLastFoot(row, ltt);
456                 fl_set_button(longtable_options_->check_lt_lastfoot, row_set);
457                 if (ltt.set && (!ltt.empty || !use_empty)) {
458                         fl_set_button(longtable_options_->check_lastfoot_2border_above,
459                                       ltt.topDL);
460                         fl_set_button(longtable_options_->check_lastfoot_2border_above,
461                                       ltt.topDL);
462                 } else {
463                         setEnabled(longtable_options_->check_lastfoot_2border_above,0);
464                         setEnabled(longtable_options_->check_lastfoot_2border_below,0);
465                         fl_set_button(longtable_options_->check_lastfoot_2border_above, 0);
466                         fl_set_button(longtable_options_->check_lastfoot_2border_above, 0);
467                         if (use_empty) {
468                                 fl_set_button(longtable_options_->check_lastfoot_empty,
469                                               ltt.empty);
470                                 if (ltt.empty)
471                                         setEnabled(longtable_options_->check_lt_lastfoot, 0);
472                         }
473                 }
474                 fl_set_button(longtable_options_->check_lt_newpage,
475                               tabular->GetLTNewPage(row));
476         } else {
477                 fl_set_button(longtable_options_->check_lt_firsthead, 0);
478                 fl_set_button(longtable_options_->check_1head_2border_above, 0);
479                 fl_set_button(longtable_options_->check_1head_2border_above, 0);
480                 fl_set_button(longtable_options_->check_1head_empty, 0);
481                 fl_set_button(longtable_options_->check_lt_head, 0);
482                 fl_set_button(longtable_options_->check_head_2border_above, 0);
483                 fl_set_button(longtable_options_->check_head_2border_above, 0);
484                 fl_set_button(longtable_options_->check_lt_foot, 0);
485                 fl_set_button(longtable_options_->check_foot_2border_above, 0);
486                 fl_set_button(longtable_options_->check_foot_2border_above, 0);
487                 fl_set_button(longtable_options_->check_lt_lastfoot, 0);
488                 fl_set_button(longtable_options_->check_lastfoot_2border_above, 0);
489                 fl_set_button(longtable_options_->check_lastfoot_2border_above, 0);
490                 fl_set_button(longtable_options_->check_lastfoot_empty, 0);
491                 fl_set_button(longtable_options_->check_lt_newpage, 0);
492         }
493         fl_set_button(tabular_options_->check_rotate_tabular,
494                       tabular->GetRotateTabular());
495 }
496
497
498 bool FormTabular::input(FL_OBJECT * ob, long)
499 {
500         if (!inset_)
501                 return false;
502
503         int s;
504         LyXTabular::Feature num = LyXTabular::LAST_ACTION;
505         string special;;
506
507         int cell = inset_->getActCell();
508
509         // ugly hack to auto-apply the stuff that hasn't been
510         // yet. don't let this continue to exist ...
511         if (ob == dialog_->button_close) {
512                 closing_ = true;
513                 LyXTabular * tabular = inset_->tabular.get();
514                 string str1 =
515                         getLengthFromWidgets(column_options_->input_column_width,
516                                              column_options_->choice_value_column_width);
517                 string str2;
518                 LyXLength llen = tabular->GetColumnPWidth(cell);
519                 if (!llen.zero())
520                         str2 = llen.asString();
521                 if (str1 != str2)
522                         input(column_options_->input_column_width, 0);
523                 str1 = getLengthFromWidgets(cell_options_->input_mcolumn_width,
524                                             cell_options_->choice_value_mcolumn_width);
525                 llen = tabular->GetMColumnPWidth(cell);
526                 if (llen.zero())
527                         str2 = "";
528                 else
529                         str2 = llen.asString();
530                 if (str1 != str2)
531                         input(cell_options_->input_mcolumn_width, 0);
532                 str1 = fl_get_input(column_options_->input_special_alignment);
533                 str2 = tabular->GetAlignSpecial(cell, LyXTabular::SET_SPECIAL_COLUMN);
534                 if (str1 != str2)
535                         input(column_options_->input_special_alignment, 0);
536                 str1 = fl_get_input(cell_options_->input_special_multialign);
537                 str2 = tabular->GetAlignSpecial(cell, LyXTabular::SET_SPECIAL_MULTI);
538                 if (str1 != str2)
539                         input(cell_options_->input_special_multialign, 0);
540                 closing_ = false;
541                 ok();
542                 return true;
543         }
544
545         if (actCell_ != cell) {
546                 update();
547                 postWarning(_("Wrong Cursor position, updated window"));
548                 return false;
549         }
550         // No point in processing directives that you can't do anything with
551         // anyhow, so exit now if the buffer is read-only.
552         if (lv_.buffer()->isReadonly()) {
553                 update();
554                 return false;
555         }
556         if ((ob == column_options_->input_column_width) ||
557             (ob == column_options_->choice_value_column_width)) {
558                 string const str =
559                         getLengthFromWidgets(column_options_->input_column_width,
560                                              column_options_->choice_value_column_width);
561                 inset_->tabularFeatures(lv_.view().get(), LyXTabular::SET_PWIDTH, str);
562
563                 //check if the input is valid
564                 string const input =
565                         fl_get_input(column_options_->input_column_width);
566                 if (!input.empty() && !isValidLength(input) && !isStrDbl(input)) {
567                         postWarning(_("Invalid Length (valid example: 10mm)"));
568                         return false;
569                 }
570
571                 update(); // update for alignment
572                 return true;
573         }
574
575         if ((ob == cell_options_->input_mcolumn_width) ||
576             (ob == cell_options_->choice_value_mcolumn_width)) {
577                 string const str =
578                         getLengthFromWidgets(cell_options_->input_mcolumn_width,
579                                              cell_options_->choice_value_mcolumn_width);
580                 inset_->tabularFeatures(lv_.view().get(), LyXTabular::SET_MPWIDTH, str);
581
582                 //check if the input is valid
583                 string const input =
584                         fl_get_input(cell_options_->input_mcolumn_width);
585                 if (!input.empty() && !isValidLength(input) && !isStrDbl(input)) {
586                         postWarning(_("Invalid Length (valid example: 10mm)"));
587                         return false;
588                 }
589                 update(); // update for alignment
590                 return true;
591         }
592
593         if (ob == tabular_options_->button_append_row)
594                 num = LyXTabular::APPEND_ROW;
595         else if (ob == tabular_options_->button_append_column)
596                 num = LyXTabular::APPEND_COLUMN;
597         else if (ob == tabular_options_->button_delete_row)
598                 num = LyXTabular::DELETE_ROW;
599         else if (ob == tabular_options_->button_delete_column)
600                 num = LyXTabular::DELETE_COLUMN;
601         else if (ob == tabular_options_->button_set_borders)
602                 num = LyXTabular::SET_ALL_LINES;
603         else if (ob == tabular_options_->button_unset_borders)
604                 num = LyXTabular::UNSET_ALL_LINES;
605         else if (ob == column_options_->check_border_top)
606                 num = LyXTabular::TOGGLE_LINE_TOP;
607         else if (ob == column_options_->check_border_bottom)
608                 num = LyXTabular::TOGGLE_LINE_BOTTOM;
609         else if (ob == column_options_->check_border_left)
610                 num = LyXTabular::TOGGLE_LINE_LEFT;
611         else if (ob == column_options_->check_border_right)
612                 num = LyXTabular::TOGGLE_LINE_RIGHT;
613         else if (ob == column_options_->radio_align_left)
614                 num = LyXTabular::ALIGN_LEFT;
615         else if (ob == column_options_->radio_align_right)
616                 num = LyXTabular::ALIGN_RIGHT;
617         else if (ob == column_options_->radio_align_center)
618                 num = LyXTabular::ALIGN_CENTER;
619         else if (ob == column_options_->radio_valign_top)
620                 num = LyXTabular::VALIGN_TOP;
621         else if (ob == column_options_->radio_valign_bottom)
622                 num = LyXTabular::VALIGN_BOTTOM;
623         else if (ob == column_options_->radio_valign_center)
624                 num = LyXTabular::VALIGN_CENTER;
625         else if (ob == cell_options_->check_multicolumn)
626                 num = LyXTabular::MULTICOLUMN;
627         else if (ob == tabular_options_->check_longtable) {
628                 if (fl_get_button(tabular_options_->check_longtable))
629                         num = LyXTabular::SET_LONGTABULAR;
630                 else
631                         num = LyXTabular::UNSET_LONGTABULAR;
632         } else if (ob == tabular_options_->check_rotate_tabular) {
633                 s = fl_get_button(tabular_options_->check_rotate_tabular);
634                 if (s)
635                         num = LyXTabular::SET_ROTATE_TABULAR;
636                 else
637                         num = LyXTabular::UNSET_ROTATE_TABULAR;
638         } else if (ob == cell_options_->check_rotate_cell) {
639                 s = fl_get_button(cell_options_->check_rotate_cell);
640                 if (s)
641                         num = LyXTabular::SET_ROTATE_CELL;
642                 else
643                         num = LyXTabular::UNSET_ROTATE_CELL;
644         } else if (ob == cell_options_->check_useminipage) {
645                 num = LyXTabular::SET_USEBOX;
646                 special = "2";
647         } else if ((ob == longtable_options_->check_lt_firsthead) ||
648                    (ob == longtable_options_->check_1head_2border_above) ||
649                    (ob == longtable_options_->check_1head_2border_below) ||
650                    (ob == longtable_options_->check_1head_empty) ||
651                    (ob == longtable_options_->check_lt_head) ||
652                    (ob == longtable_options_->check_head_2border_above) ||
653                    (ob == longtable_options_->check_head_2border_below) ||
654                    (ob == longtable_options_->check_lt_foot) ||
655                    (ob == longtable_options_->check_foot_2border_above) ||
656                    (ob == longtable_options_->check_foot_2border_below) ||
657                    (ob == longtable_options_->check_lt_lastfoot) ||
658                    (ob == longtable_options_->check_lastfoot_2border_above) ||
659                    (ob == longtable_options_->check_lastfoot_2border_below) ||
660                    (ob == longtable_options_->check_lastfoot_empty)) {
661                 num = static_cast<LyXTabular::Feature>(checkLongtableOptions(ob, special));
662         } else if (ob == longtable_options_->check_lt_newpage) {
663                 num = LyXTabular::SET_LTNEWPAGE;
664         } else if (ob == column_options_->input_special_alignment) {
665                 special = fl_get_input(column_options_->input_special_alignment);
666                 num = LyXTabular::SET_SPECIAL_COLUMN;
667         } else if (ob == cell_options_->input_special_multialign) {
668                 special = fl_get_input(cell_options_->input_special_multialign);
669                 num = LyXTabular::SET_SPECIAL_MULTI;
670         } else if (ob == cell_options_->check_border_top)
671                 num = LyXTabular::M_TOGGLE_LINE_TOP;
672         else if (ob == cell_options_->check_border_bottom)
673                 num = LyXTabular::M_TOGGLE_LINE_BOTTOM;
674         else if (ob == cell_options_->check_border_left)
675                 num = LyXTabular::M_TOGGLE_LINE_LEFT;
676         else if (ob == cell_options_->check_border_right)
677                 num = LyXTabular::M_TOGGLE_LINE_RIGHT;
678         else if (ob == cell_options_->radio_align_left)
679                 num = LyXTabular::M_ALIGN_LEFT;
680         else if (ob == cell_options_->radio_align_right)
681                 num = LyXTabular::M_ALIGN_RIGHT;
682         else if (ob == cell_options_->radio_align_center)
683                 num = LyXTabular::M_ALIGN_CENTER;
684         else if (ob == cell_options_->radio_valign_top)
685                 num = LyXTabular::M_VALIGN_TOP;
686         else if (ob == cell_options_->radio_valign_bottom)
687                 num = LyXTabular::M_VALIGN_BOTTOM;
688         else if (ob == cell_options_->radio_valign_center)
689                 num = LyXTabular::M_VALIGN_CENTER;
690         else
691                 return false;
692
693         inset_->tabularFeatures(lv_.view().get(), num, special);
694         update();
695
696         return true;
697 }
698
699 int FormTabular::checkLongtableOptions(FL_OBJECT * ob, string & special)
700 {
701         bool flag = fl_get_button(ob);
702         if ((ob == longtable_options_->check_1head_2border_above) ||
703             (ob == longtable_options_->check_head_2border_above) ||
704             (ob == longtable_options_->check_foot_2border_above) ||
705             (ob == longtable_options_->check_lastfoot_2border_above)) {
706                 special = "dl_above";
707         } else if ((ob == longtable_options_->check_1head_2border_below) ||
708                    (ob == longtable_options_->check_head_2border_below) ||
709                    (ob == longtable_options_->check_foot_2border_below) ||
710                    (ob == longtable_options_->check_lastfoot_2border_below)) {
711                 special = "dl_below";
712         } else if ((ob == longtable_options_->check_1head_empty) ||
713                    (ob == longtable_options_->check_lastfoot_empty)) {
714                 special = "empty";
715         } else {
716                 special = "";
717         }
718         if ((ob == longtable_options_->check_lt_firsthead) ||
719             (ob == longtable_options_->check_1head_2border_above) ||
720             (ob == longtable_options_->check_1head_2border_below) ||
721             (ob == longtable_options_->check_1head_empty)) {
722                 return (flag ? LyXTabular::SET_LTFIRSTHEAD :
723                         LyXTabular::UNSET_LTFIRSTHEAD);
724         } else if ((ob == longtable_options_->check_lt_head) ||
725                            (ob == longtable_options_->check_head_2border_above) ||
726                            (ob == longtable_options_->check_head_2border_below)) {
727                 return (flag ? LyXTabular::SET_LTHEAD : LyXTabular::UNSET_LTHEAD);
728         } else if ((ob == longtable_options_->check_lt_foot) ||
729                    (ob == longtable_options_->check_foot_2border_above) ||
730                    (ob == longtable_options_->check_foot_2border_below)) {
731                 return (flag ? LyXTabular::SET_LTFOOT : LyXTabular::UNSET_LTFOOT);
732         } else if ((ob == longtable_options_->check_lt_lastfoot) ||
733                    (ob == longtable_options_->check_lastfoot_2border_above) ||
734                    (ob == longtable_options_->check_lastfoot_2border_below) ||
735                    (ob == longtable_options_->check_lastfoot_empty)) {
736                 return (flag ? LyXTabular::SET_LTLASTFOOT :
737                         LyXTabular::UNSET_LTLASTFOOT);
738         }
739
740         return LyXTabular::LAST_ACTION;
741 }