forgot and this

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18038 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-04-26 13:39:14 +00:00
parent ab780e843e
commit bf2221d990

View File

@ -132,20 +132,20 @@ void QTabularDialog::topspace_changed()
{ {
switch(topspaceCO->currentIndex()) { switch(topspaceCO->currentIndex()) {
case 0: { case 0: {
form_->controller().set(LyXTabular::SET_TOP_SPACE, ""); form_->controller().set(Tabular::SET_TOP_SPACE, "");
topspaceED->setEnabled(false); topspaceED->setEnabled(false);
topspaceUnit->setEnabled(false); topspaceUnit->setEnabled(false);
break; break;
} }
case 1: { case 1: {
form_->controller().set(LyXTabular::SET_TOP_SPACE, "default"); form_->controller().set(Tabular::SET_TOP_SPACE, "default");
topspaceED->setEnabled(false); topspaceED->setEnabled(false);
topspaceUnit->setEnabled(false); topspaceUnit->setEnabled(false);
break; break;
} }
case 2: { case 2: {
if (!topspaceED->text().isEmpty()) if (!topspaceED->text().isEmpty())
form_->controller().set(LyXTabular::SET_TOP_SPACE, form_->controller().set(Tabular::SET_TOP_SPACE,
widgetsToLength(topspaceED, topspaceUnit)); widgetsToLength(topspaceED, topspaceUnit));
if (!form_->bc().bp().isReadOnly()) { if (!form_->bc().bp().isReadOnly()) {
topspaceED->setEnabled(true); topspaceED->setEnabled(true);
@ -162,20 +162,20 @@ void QTabularDialog::bottomspace_changed()
{ {
switch(bottomspaceCO->currentIndex()) { switch(bottomspaceCO->currentIndex()) {
case 0: { case 0: {
form_->controller().set(LyXTabular::SET_BOTTOM_SPACE, ""); form_->controller().set(Tabular::SET_BOTTOM_SPACE, "");
bottomspaceED->setEnabled(false); bottomspaceED->setEnabled(false);
bottomspaceUnit->setEnabled(false); bottomspaceUnit->setEnabled(false);
break; break;
} }
case 1: { case 1: {
form_->controller().set(LyXTabular::SET_BOTTOM_SPACE, "default"); form_->controller().set(Tabular::SET_BOTTOM_SPACE, "default");
bottomspaceED->setEnabled(false); bottomspaceED->setEnabled(false);
bottomspaceUnit->setEnabled(false); bottomspaceUnit->setEnabled(false);
break; break;
} }
case 2: { case 2: {
if (!bottomspaceED->text().isEmpty()) if (!bottomspaceED->text().isEmpty())
form_->controller().set(LyXTabular::SET_BOTTOM_SPACE, form_->controller().set(Tabular::SET_BOTTOM_SPACE,
widgetsToLength(bottomspaceED, bottomspaceUnit)); widgetsToLength(bottomspaceED, bottomspaceUnit));
if (!form_->bc().bp().isReadOnly()) { if (!form_->bc().bp().isReadOnly()) {
bottomspaceED->setEnabled(true); bottomspaceED->setEnabled(true);
@ -192,20 +192,20 @@ void QTabularDialog::interlinespace_changed()
{ {
switch(interlinespaceCO->currentIndex()) { switch(interlinespaceCO->currentIndex()) {
case 0: { case 0: {
form_->controller().set(LyXTabular::SET_INTERLINE_SPACE, ""); form_->controller().set(Tabular::SET_INTERLINE_SPACE, "");
interlinespaceED->setEnabled(false); interlinespaceED->setEnabled(false);
interlinespaceUnit->setEnabled(false); interlinespaceUnit->setEnabled(false);
break; break;
} }
case 1: { case 1: {
form_->controller().set(LyXTabular::SET_INTERLINE_SPACE, "default"); form_->controller().set(Tabular::SET_INTERLINE_SPACE, "default");
interlinespaceED->setEnabled(false); interlinespaceED->setEnabled(false);
interlinespaceUnit->setEnabled(false); interlinespaceUnit->setEnabled(false);
break; break;
} }
case 2: { case 2: {
if (!interlinespaceED->text().isEmpty()) if (!interlinespaceED->text().isEmpty())
form_->controller().set(LyXTabular::SET_INTERLINE_SPACE, form_->controller().set(Tabular::SET_INTERLINE_SPACE,
widgetsToLength(interlinespaceED, interlinespaceUnit)); widgetsToLength(interlinespaceED, interlinespaceUnit));
if (!form_->bc().bp().isReadOnly()) { if (!form_->bc().bp().isReadOnly()) {
interlinespaceED->setEnabled(true); interlinespaceED->setEnabled(true);
@ -227,7 +227,7 @@ void QTabularDialog::close_clicked()
void QTabularDialog::borderSet_clicked() void QTabularDialog::borderSet_clicked()
{ {
form_->controller().set(LyXTabular::SET_ALL_LINES); form_->controller().set(Tabular::SET_ALL_LINES);
form_->update_borders(); form_->update_borders();
form_->changed(); form_->changed();
} }
@ -235,7 +235,7 @@ void QTabularDialog::borderSet_clicked()
void QTabularDialog::borderUnset_clicked() void QTabularDialog::borderUnset_clicked()
{ {
form_->controller().set(LyXTabular::UNSET_ALL_LINES); form_->controller().set(Tabular::UNSET_ALL_LINES);
form_->update_borders(); form_->update_borders();
form_->changed(); form_->changed();
} }
@ -344,7 +344,7 @@ void QTabularDialog::longTabular()
void QTabularDialog::ltNewpage_clicked() void QTabularDialog::ltNewpage_clicked()
{ {
form_->controller().set(LyXTabular::SET_LTNEWPAGE); form_->controller().set(Tabular::SET_LTNEWPAGE);
form_->changed(); form_->changed();
} }
@ -353,9 +353,9 @@ void QTabularDialog::ltHeaderStatus_clicked()
{ {
bool enable(headerStatusCB->isChecked()); bool enable(headerStatusCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTHEAD, ""); form_->controller().set(Tabular::SET_LTHEAD, "");
else else
form_->controller().set(LyXTabular::UNSET_LTHEAD, ""); form_->controller().set(Tabular::UNSET_LTHEAD, "");
headerBorderAboveCB->setEnabled(enable); headerBorderAboveCB->setEnabled(enable);
headerBorderBelowCB->setEnabled(enable); headerBorderBelowCB->setEnabled(enable);
firstheaderNoContentsCB->setEnabled(enable); firstheaderNoContentsCB->setEnabled(enable);
@ -366,9 +366,9 @@ void QTabularDialog::ltHeaderStatus_clicked()
void QTabularDialog::ltHeaderBorderAbove_clicked() void QTabularDialog::ltHeaderBorderAbove_clicked()
{ {
if (headerBorderAboveCB->isChecked()) if (headerBorderAboveCB->isChecked())
form_->controller().set(LyXTabular::SET_LTHEAD, "dl_above"); form_->controller().set(Tabular::SET_LTHEAD, "dl_above");
else else
form_->controller().set(LyXTabular::UNSET_LTHEAD, "dl_above"); form_->controller().set(Tabular::UNSET_LTHEAD, "dl_above");
form_->changed(); form_->changed();
} }
@ -376,9 +376,9 @@ void QTabularDialog::ltHeaderBorderAbove_clicked()
void QTabularDialog::ltHeaderBorderBelow_clicked() void QTabularDialog::ltHeaderBorderBelow_clicked()
{ {
if (headerBorderBelowCB->isChecked()) if (headerBorderBelowCB->isChecked())
form_->controller().set(LyXTabular::SET_LTHEAD, "dl_below"); form_->controller().set(Tabular::SET_LTHEAD, "dl_below");
else else
form_->controller().set(LyXTabular::UNSET_LTHEAD, "dl_below"); form_->controller().set(Tabular::UNSET_LTHEAD, "dl_below");
form_->changed(); form_->changed();
} }
@ -386,9 +386,9 @@ void QTabularDialog::ltHeaderBorderBelow_clicked()
void QTabularDialog::ltFirstHeaderBorderAbove_clicked() void QTabularDialog::ltFirstHeaderBorderAbove_clicked()
{ {
if (firstheaderBorderAboveCB->isChecked()) if (firstheaderBorderAboveCB->isChecked())
form_->controller().set(LyXTabular::SET_LTFIRSTHEAD, "dl_above"); form_->controller().set(Tabular::SET_LTFIRSTHEAD, "dl_above");
else else
form_->controller().set(LyXTabular::UNSET_LTFIRSTHEAD, "dl_above"); form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "dl_above");
form_->changed(); form_->changed();
} }
@ -396,9 +396,9 @@ void QTabularDialog::ltFirstHeaderBorderAbove_clicked()
void QTabularDialog::ltFirstHeaderBorderBelow_clicked() void QTabularDialog::ltFirstHeaderBorderBelow_clicked()
{ {
if (firstheaderBorderBelowCB->isChecked()) if (firstheaderBorderBelowCB->isChecked())
form_->controller().set(LyXTabular::SET_LTFIRSTHEAD, "dl_below"); form_->controller().set(Tabular::SET_LTFIRSTHEAD, "dl_below");
else else
form_->controller().set(LyXTabular::UNSET_LTFIRSTHEAD, "dl_below"); form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "dl_below");
form_->changed(); form_->changed();
} }
@ -407,9 +407,9 @@ void QTabularDialog::ltFirstHeaderStatus_clicked()
{ {
bool enable(firstheaderStatusCB->isChecked()); bool enable(firstheaderStatusCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTFIRSTHEAD, ""); form_->controller().set(Tabular::SET_LTFIRSTHEAD, "");
else else
form_->controller().set(LyXTabular::UNSET_LTFIRSTHEAD, ""); form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "");
firstheaderBorderAboveCB->setEnabled(enable); firstheaderBorderAboveCB->setEnabled(enable);
firstheaderBorderBelowCB->setEnabled(enable); firstheaderBorderBelowCB->setEnabled(enable);
form_->changed(); form_->changed();
@ -420,9 +420,9 @@ void QTabularDialog::ltFirstHeaderEmpty_clicked()
{ {
bool enable(firstheaderNoContentsCB->isChecked()); bool enable(firstheaderNoContentsCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTFIRSTHEAD, "empty"); form_->controller().set(Tabular::SET_LTFIRSTHEAD, "empty");
else else
form_->controller().set(LyXTabular::UNSET_LTFIRSTHEAD, "empty"); form_->controller().set(Tabular::UNSET_LTFIRSTHEAD, "empty");
firstheaderStatusCB->setEnabled(!enable); firstheaderStatusCB->setEnabled(!enable);
firstheaderBorderAboveCB->setEnabled(!enable); firstheaderBorderAboveCB->setEnabled(!enable);
firstheaderBorderBelowCB->setEnabled(!enable); firstheaderBorderBelowCB->setEnabled(!enable);
@ -434,9 +434,9 @@ void QTabularDialog::ltFooterStatus_clicked()
{ {
bool enable(footerStatusCB->isChecked()); bool enable(footerStatusCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTFOOT, ""); form_->controller().set(Tabular::SET_LTFOOT, "");
else else
form_->controller().set(LyXTabular::UNSET_LTFOOT, ""); form_->controller().set(Tabular::UNSET_LTFOOT, "");
footerBorderAboveCB->setEnabled(enable); footerBorderAboveCB->setEnabled(enable);
footerBorderBelowCB->setEnabled(enable); footerBorderBelowCB->setEnabled(enable);
lastfooterNoContentsCB->setEnabled(enable); lastfooterNoContentsCB->setEnabled(enable);
@ -447,9 +447,9 @@ void QTabularDialog::ltFooterStatus_clicked()
void QTabularDialog::ltFooterBorderAbove_clicked() void QTabularDialog::ltFooterBorderAbove_clicked()
{ {
if (footerBorderAboveCB->isChecked()) if (footerBorderAboveCB->isChecked())
form_->controller().set(LyXTabular::SET_LTFOOT, "dl_above"); form_->controller().set(Tabular::SET_LTFOOT, "dl_above");
else else
form_->controller().set(LyXTabular::UNSET_LTFOOT, "dl_above"); form_->controller().set(Tabular::UNSET_LTFOOT, "dl_above");
form_->changed(); form_->changed();
} }
@ -457,9 +457,9 @@ void QTabularDialog::ltFooterBorderAbove_clicked()
void QTabularDialog::ltFooterBorderBelow_clicked() void QTabularDialog::ltFooterBorderBelow_clicked()
{ {
if (footerBorderBelowCB->isChecked()) if (footerBorderBelowCB->isChecked())
form_->controller().set(LyXTabular::SET_LTFOOT, "dl_below"); form_->controller().set(Tabular::SET_LTFOOT, "dl_below");
else else
form_->controller().set(LyXTabular::UNSET_LTFOOT, "dl_below"); form_->controller().set(Tabular::UNSET_LTFOOT, "dl_below");
form_->changed(); form_->changed();
} }
@ -468,9 +468,9 @@ void QTabularDialog::ltLastFooterStatus_clicked()
{ {
bool enable(lastfooterStatusCB->isChecked()); bool enable(lastfooterStatusCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTLASTFOOT, ""); form_->controller().set(Tabular::SET_LTLASTFOOT, "");
else else
form_->controller().set(LyXTabular::UNSET_LTLASTFOOT, ""); form_->controller().set(Tabular::UNSET_LTLASTFOOT, "");
lastfooterBorderAboveCB->setEnabled(enable); lastfooterBorderAboveCB->setEnabled(enable);
lastfooterBorderBelowCB->setEnabled(enable); lastfooterBorderBelowCB->setEnabled(enable);
form_->changed(); form_->changed();
@ -480,9 +480,9 @@ void QTabularDialog::ltLastFooterStatus_clicked()
void QTabularDialog::ltLastFooterBorderAbove_clicked() void QTabularDialog::ltLastFooterBorderAbove_clicked()
{ {
if (lastfooterBorderAboveCB->isChecked()) if (lastfooterBorderAboveCB->isChecked())
form_->controller().set(LyXTabular::SET_LTLASTFOOT, "dl_above"); form_->controller().set(Tabular::SET_LTLASTFOOT, "dl_above");
else else
form_->controller().set(LyXTabular::UNSET_LTLASTFOOT, "dl_above"); form_->controller().set(Tabular::UNSET_LTLASTFOOT, "dl_above");
form_->changed(); form_->changed();
} }
@ -490,9 +490,9 @@ void QTabularDialog::ltLastFooterBorderAbove_clicked()
void QTabularDialog::ltLastFooterBorderBelow_clicked() void QTabularDialog::ltLastFooterBorderBelow_clicked()
{ {
if (lastfooterBorderBelowCB->isChecked()) if (lastfooterBorderBelowCB->isChecked())
form_->controller().set(LyXTabular::SET_LTLASTFOOT, "dl_below"); form_->controller().set(Tabular::SET_LTLASTFOOT, "dl_below");
else else
form_->controller().set(LyXTabular::UNSET_LTLASTFOOT, "dl_below"); form_->controller().set(Tabular::UNSET_LTLASTFOOT, "dl_below");
form_->changed(); form_->changed();
} }
@ -501,9 +501,9 @@ void QTabularDialog::ltLastFooterEmpty_clicked()
{ {
bool enable(lastfooterNoContentsCB->isChecked()); bool enable(lastfooterNoContentsCB->isChecked());
if (enable) if (enable)
form_->controller().set(LyXTabular::SET_LTLASTFOOT, "empty"); form_->controller().set(Tabular::SET_LTLASTFOOT, "empty");
else else
form_->controller().set(LyXTabular::UNSET_LTLASTFOOT, "empty"); form_->controller().set(Tabular::UNSET_LTLASTFOOT, "empty");
lastfooterStatusCB->setEnabled(!enable); lastfooterStatusCB->setEnabled(!enable);
lastfooterBorderAboveCB->setEnabled(!enable); lastfooterBorderAboveCB->setEnabled(!enable);
lastfooterBorderBelowCB->setEnabled(!enable); lastfooterBorderBelowCB->setEnabled(!enable);
@ -591,8 +591,8 @@ bool QTabular::isValid()
void QTabular::update_borders() void QTabular::update_borders()
{ {
LyXTabular const & tabular = controller().tabular(); Tabular const & tabular = controller().tabular();
LyXTabular::idx_type const cell = controller().getActiveCell(); Tabular::idx_type const cell = controller().getActiveCell();
bool const isMulticolumnCell = tabular.isMultiColumn(cell); bool const isMulticolumnCell = tabular.isMultiColumn(cell);
if (!isMulticolumnCell) { if (!isMulticolumnCell) {
@ -633,11 +633,11 @@ void QTabular::update_borders()
void QTabular::update_contents() void QTabular::update_contents()
{ {
LyXTabular const & tabular(controller().tabular()); Tabular const & tabular(controller().tabular());
LyXTabular::idx_type const cell = controller().getActiveCell(); Tabular::idx_type const cell = controller().getActiveCell();
LyXTabular::row_type const row(tabular.row_of_cell(cell)); Tabular::row_type const row(tabular.row_of_cell(cell));
LyXTabular::col_type const col(tabular.column_of_cell(cell)); Tabular::col_type const col(tabular.column_of_cell(cell));
dialog_->tabularRowED->setText(toqstr(convert<string>(row + 1))); dialog_->tabularRowED->setText(toqstr(convert<string>(row + 1)));
dialog_->tabularColumnED->setText(toqstr(convert<string>(col + 1))); dialog_->tabularColumnED->setText(toqstr(convert<string>(col + 1)));
@ -657,10 +657,10 @@ void QTabular::update_contents()
docstring special; docstring special;
if (multicol) { if (multicol) {
special = tabular.getAlignSpecial(cell, LyXTabular::SET_SPECIAL_MULTI); special = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_MULTI);
pwidth = tabular.getMColumnPWidth(cell); pwidth = tabular.getMColumnPWidth(cell);
} else { } else {
special = tabular.getAlignSpecial(cell, LyXTabular::SET_SPECIAL_COLUMN); special = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_COLUMN);
pwidth = tabular.getColumnPWidth(cell); pwidth = tabular.getColumnPWidth(cell);
} }
@ -769,13 +769,13 @@ void QTabular::update_contents()
int valign = 0; int valign = 0;
switch (tabular.getVAlignment(cell)) { switch (tabular.getVAlignment(cell)) {
case LyXTabular::LYX_VALIGN_TOP: case Tabular::LYX_VALIGN_TOP:
valign = 0; valign = 0;
break; break;
case LyXTabular::LYX_VALIGN_MIDDLE: case Tabular::LYX_VALIGN_MIDDLE:
valign = 1; valign = 1;
break; break;
case LyXTabular::LYX_VALIGN_BOTTOM: case Tabular::LYX_VALIGN_BOTTOM:
valign = 2; valign = 2;
break; break;
default: default:
@ -809,7 +809,7 @@ void QTabular::update_contents()
return; return;
} }
LyXTabular::ltType ltt; Tabular::ltType ltt;
bool use_empty; bool use_empty;
bool row_set = tabular.getRowOfLTHead(row, ltt); bool row_set = tabular.getRowOfLTHead(row, ltt);
dialog_->headerStatusCB->setChecked(row_set); dialog_->headerStatusCB->setChecked(row_set);
@ -888,10 +888,10 @@ void QTabular::closeGUI()
// Subtle here, we must /not/ apply any changes and // Subtle here, we must /not/ apply any changes and
// then refer to tabular, as it will have been freed // then refer to tabular, as it will have been freed
// since the changes update the actual controller().tabular() // since the changes update the actual controller().tabular()
LyXTabular const & tabular(controller().tabular()); Tabular const & tabular(controller().tabular());
// apply the fixed width values // apply the fixed width values
LyXTabular::idx_type const cell = controller().getActiveCell(); Tabular::idx_type const cell = controller().getActiveCell();
bool const multicol = tabular.isMultiColumn(cell); bool const multicol = tabular.isMultiColumn(cell);
string width = widgetsToLength(dialog_->widthED, dialog_->widthUnit); string width = widgetsToLength(dialog_->widthED, dialog_->widthUnit);
string width2; string width2;
@ -909,34 +909,34 @@ void QTabular::closeGUI()
docstring sa2; docstring sa2;
if (multicol) if (multicol)
sa2 = tabular.getAlignSpecial(cell, LyXTabular::SET_SPECIAL_MULTI); sa2 = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_MULTI);
else else
sa2 = tabular.getAlignSpecial(cell, LyXTabular::SET_SPECIAL_COLUMN); sa2 = tabular.getAlignSpecial(cell, Tabular::SET_SPECIAL_COLUMN);
if (sa1 != sa2) { if (sa1 != sa2) {
if (multicol) if (multicol)
controller().set(LyXTabular::SET_SPECIAL_MULTI, to_utf8(sa1)); controller().set(Tabular::SET_SPECIAL_MULTI, to_utf8(sa1));
else else
controller().set(LyXTabular::SET_SPECIAL_COLUMN, to_utf8(sa1)); controller().set(Tabular::SET_SPECIAL_COLUMN, to_utf8(sa1));
} }
if (width != width2) { if (width != width2) {
if (multicol) if (multicol)
controller().set(LyXTabular::SET_MPWIDTH, width); controller().set(Tabular::SET_MPWIDTH, width);
else else
controller().set(LyXTabular::SET_PWIDTH, width); controller().set(Tabular::SET_PWIDTH, width);
} }
/* DO WE NEED THIS? /* DO WE NEED THIS?
switch (dialog_->topspaceCO->currentIndex()) { switch (dialog_->topspaceCO->currentIndex()) {
case 0: case 0:
controller().set(LyXTabular::SET_TOP_SPACE, ""); controller().set(Tabular::SET_TOP_SPACE, "");
break; break;
case 1: case 1:
controller().set(LyXTabular::SET_TOP_SPACE, "default"); controller().set(Tabular::SET_TOP_SPACE, "default");
break; break;
case 2: case 2:
controller().set(LyXTabular::SET_TOP_SPACE, controller().set(Tabular::SET_TOP_SPACE,
widgetsToLength(dialog_->topspaceED, widgetsToLength(dialog_->topspaceED,
dialog_->topspaceUnit)); dialog_->topspaceUnit));
break; break;
@ -944,13 +944,13 @@ void QTabular::closeGUI()
switch (dialog_->bottomspaceCO->currentIndex()) { switch (dialog_->bottomspaceCO->currentIndex()) {
case 0: case 0:
controller().set(LyXTabular::SET_BOTTOM_SPACE, ""); controller().set(Tabular::SET_BOTTOM_SPACE, "");
break; break;
case 1: case 1:
controller().set(LyXTabular::SET_BOTTOM_SPACE, "default"); controller().set(Tabular::SET_BOTTOM_SPACE, "default");
break; break;
case 2: case 2:
controller().set(LyXTabular::SET_BOTTOM_SPACE, controller().set(Tabular::SET_BOTTOM_SPACE,
widgetsToLength(dialog_->bottomspaceED, widgetsToLength(dialog_->bottomspaceED,
dialog_->bottomspaceUnit)); dialog_->bottomspaceUnit));
break; break;
@ -958,13 +958,13 @@ void QTabular::closeGUI()
switch (dialog_->interlinespaceCO->currentIndex()) { switch (dialog_->interlinespaceCO->currentIndex()) {
case 0: case 0:
controller().set(LyXTabular::SET_INTERLINE_SPACE, ""); controller().set(Tabular::SET_INTERLINE_SPACE, "");
break; break;
case 1: case 1:
controller().set(LyXTabular::SET_INTERLINE_SPACE, "default"); controller().set(Tabular::SET_INTERLINE_SPACE, "default");
break; break;
case 2: case 2:
controller().set(LyXTabular::SET_INTERLINE_SPACE, controller().set(Tabular::SET_INTERLINE_SPACE,
widgetsToLength(dialog_->interlinespaceED, widgetsToLength(dialog_->interlinespaceED,
dialog_->interlinespaceUnit)); dialog_->interlinespaceUnit));
break; break;