2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file FormParagraph.C
|
|
|
|
|
* Copyright 2000-2001 The LyX Team.
|
|
|
|
|
* See the file COPYING.
|
2000-09-25 15:59:27 +00:00
|
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna, jug@sad.it
|
|
|
|
|
*/
|
2000-09-25 15:59:27 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2002-04-23 08:16:27 +00:00
|
|
|
|
#ifdef __GNUG__
|
2000-09-25 15:59:27 +00:00
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
|
|
|
|
|
#include "FormParagraph.h"
|
2002-06-13 13:43:51 +00:00
|
|
|
|
#include "forms/form_paragraph.h"
|
2002-06-11 16:40:18 +00:00
|
|
|
|
#include "ControlParagraph.h"
|
2002-06-12 14:27:30 +00:00
|
|
|
|
#include "ParagraphParameters.h"
|
2001-03-05 19:02:40 +00:00
|
|
|
|
#include "xforms_helpers.h"
|
2002-01-04 15:14:22 +00:00
|
|
|
|
#include "lyxrc.h" // to set the deafult length values
|
2001-08-16 10:14:48 +00:00
|
|
|
|
#include "input_validators.h"
|
2001-10-23 09:04:46 +00:00
|
|
|
|
#include "helper_funcs.h"
|
2002-06-11 16:40:18 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "xformsBC.h"
|
|
|
|
|
#include "layout.h" // LyXAlignment
|
2000-09-25 15:59:27 +00:00
|
|
|
|
|
2002-01-16 16:34:03 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2002-03-20 17:53:39 +00:00
|
|
|
|
#include "support/LAssert.h"
|
2002-06-13 13:43:51 +00:00
|
|
|
|
#include FORMS_H_LOCATION
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
|
using std::bind2nd;
|
2002-02-18 10:08:42 +00:00
|
|
|
|
using std::remove_if;
|
2000-09-25 15:59:27 +00:00
|
|
|
|
|
2002-06-13 13:43:51 +00:00
|
|
|
|
typedef FormCB<ControlParagraph, FormDB<FD_paragraph> > base_class;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-07-02 19:23:10 +00:00
|
|
|
|
FormParagraph::FormParagraph(ControlParagraph & c, Dialogs & d)
|
|
|
|
|
: base_class(c, d, _("Paragraph Layout"), false)
|
2002-06-11 16:40:18 +00:00
|
|
|
|
{}
|
2000-09-25 15:59:27 +00:00
|
|
|
|
|
|
|
|
|
void FormParagraph::build()
|
|
|
|
|
{
|
2002-03-19 21:42:50 +00:00
|
|
|
|
// the tabbed folder
|
2002-06-13 13:43:51 +00:00
|
|
|
|
dialog_.reset(build_paragraph(this));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
// Allow the base class to control messages
|
|
|
|
|
setMessageWidget(dialog_->text_warning);
|
|
|
|
|
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_addto_choice(dialog_->choice_space_above,
|
2002-03-20 18:47:43 +00:00
|
|
|
|
_(" None | Defskip | Smallskip "
|
|
|
|
|
"| Medskip | Bigskip | VFill | Length "));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_addto_choice(dialog_->choice_space_below,
|
2002-03-20 18:47:43 +00:00
|
|
|
|
_(" None | Defskip | Smallskip "
|
2002-03-21 21:21:28 +00:00
|
|
|
|
"| Medskip | Bigskip | VFill | Length "));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
fl_addto_choice(dialog_->choice_linespacing,
|
2002-05-01 09:46:36 +00:00
|
|
|
|
_(" Default | Single | OneHalf | Double | Custom "));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
fl_set_input_return(dialog_->input_space_above, FL_RETURN_CHANGED);
|
|
|
|
|
fl_set_input_return(dialog_->input_space_below, FL_RETURN_CHANGED);
|
2002-03-20 17:53:39 +00:00
|
|
|
|
fl_set_input_return(dialog_->input_labelwidth, FL_RETURN_CHANGED);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_input_return(dialog_->input_linespacing, FL_RETURN_CHANGED);
|
|
|
|
|
fl_set_input_filter(dialog_->input_linespacing, fl_unsigned_float_filter);
|
|
|
|
|
|
|
|
|
|
setPrehandler(dialog_->input_space_above);
|
|
|
|
|
setPrehandler(dialog_->input_space_below);
|
|
|
|
|
setPrehandler(dialog_->input_labelwidth);
|
|
|
|
|
setPrehandler(dialog_->input_linespacing);
|
|
|
|
|
|
|
|
|
|
// Create the contents of the unit choices
|
|
|
|
|
// Don't include the "%" terms...
|
|
|
|
|
vector<string> units_vec = getLatexUnits();
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-03-19 21:42:50 +00:00
|
|
|
|
vector<string>::iterator del =
|
|
|
|
|
remove_if(units_vec.begin(), units_vec.end(),
|
2002-03-20 18:47:43 +00:00
|
|
|
|
bind2nd(contains_functor(), "%"));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
units_vec.erase(del, units_vec.end());
|
|
|
|
|
|
|
|
|
|
string units = getStringFromVector(units_vec, "|");
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
fl_addto_choice(dialog_->choice_value_space_above, units.c_str());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_addto_choice(dialog_->choice_value_space_below, units.c_str());
|
|
|
|
|
|
|
|
|
|
// Manage the ok, apply, restore and cancel/close buttons
|
2002-06-11 16:40:18 +00:00
|
|
|
|
bc().setOK(dialog_->button_ok);
|
|
|
|
|
bc().setApply(dialog_->button_apply);
|
|
|
|
|
bc().setCancel(dialog_->button_close);
|
|
|
|
|
bc().setRestore(dialog_->button_restore);
|
|
|
|
|
|
|
|
|
|
bc().addReadOnly(dialog_->radio_align_right);
|
|
|
|
|
bc().addReadOnly(dialog_->radio_align_left);
|
|
|
|
|
bc().addReadOnly(dialog_->radio_align_block);
|
|
|
|
|
bc().addReadOnly(dialog_->radio_align_center);
|
|
|
|
|
bc().addReadOnly(dialog_->check_lines_top);
|
|
|
|
|
bc().addReadOnly(dialog_->check_lines_bottom);
|
|
|
|
|
bc().addReadOnly(dialog_->check_pagebreaks_top);
|
|
|
|
|
bc().addReadOnly(dialog_->check_pagebreaks_bottom);
|
|
|
|
|
bc().addReadOnly(dialog_->choice_space_above);
|
|
|
|
|
bc().addReadOnly(dialog_->input_space_above);
|
|
|
|
|
bc().addReadOnly(dialog_->check_space_above);
|
|
|
|
|
bc().addReadOnly(dialog_->choice_space_below);
|
|
|
|
|
bc().addReadOnly(dialog_->input_space_below);
|
|
|
|
|
bc().addReadOnly(dialog_->check_space_below);
|
|
|
|
|
bc().addReadOnly(dialog_->choice_linespacing);
|
|
|
|
|
bc().addReadOnly(dialog_->input_linespacing);
|
|
|
|
|
bc().addReadOnly(dialog_->check_noindent);
|
|
|
|
|
bc().addReadOnly(dialog_->input_labelwidth);
|
2000-09-25 15:59:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
VSpace setVSpaceFromWidgets(FL_OBJECT * choice_type,
|
|
|
|
|
FL_OBJECT * input_length,
|
|
|
|
|
FL_OBJECT * choice_length,
|
|
|
|
|
FL_OBJECT * check_keep)
|
|
|
|
|
{
|
|
|
|
|
// Paranoia check!
|
|
|
|
|
lyx::Assert(choice_type && choice_type->objclass == FL_CHOICE &&
|
|
|
|
|
input_length && input_length->objclass == FL_INPUT &&
|
|
|
|
|
choice_length && choice_length->objclass == FL_CHOICE &&
|
|
|
|
|
check_keep && check_keep->objclass == FL_CHECKBUTTON);
|
2002-03-20 18:47:43 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
VSpace space;
|
|
|
|
|
|
|
|
|
|
switch (fl_get_choice(choice_type)) {
|
|
|
|
|
case 1:
|
|
|
|
|
space = VSpace(VSpace::NONE);
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
space = VSpace(VSpace::DEFSKIP);
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
space = VSpace(VSpace::SMALLSKIP);
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
space = VSpace(VSpace::MEDSKIP);
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
space = VSpace(VSpace::BIGSKIP);
|
|
|
|
|
break;
|
|
|
|
|
case 6:
|
|
|
|
|
space = VSpace(VSpace::VFILL);
|
|
|
|
|
break;
|
|
|
|
|
case 7:
|
|
|
|
|
{
|
|
|
|
|
string const length =
|
|
|
|
|
getLengthFromWidgets(input_length, choice_length);
|
|
|
|
|
space = VSpace(LyXGlueLength(length));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fl_get_button(check_keep))
|
|
|
|
|
space.setKeep(true);
|
|
|
|
|
|
|
|
|
|
return space;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 18:47:43 +00:00
|
|
|
|
void validateVSpaceWidgets(FL_OBJECT * choice_type, FL_OBJECT * input_length)
|
|
|
|
|
{
|
|
|
|
|
// Paranoia check!
|
|
|
|
|
lyx::Assert(choice_type && choice_type->objclass == FL_CHOICE &&
|
|
|
|
|
input_length && input_length->objclass == FL_INPUT);
|
|
|
|
|
|
|
|
|
|
if (fl_get_choice(choice_type) != 7)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// If a vspace kind is "Length" but there's no text in
|
|
|
|
|
// the input field, reset the kind to "None".
|
|
|
|
|
string const input = strip(getStringFromInput(input_length));
|
|
|
|
|
if (input.empty())
|
|
|
|
|
fl_set_choice(choice_type, 1);
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
} // namespace anon
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
2001-08-29 12:52:41 +00:00
|
|
|
|
void FormParagraph::apply()
|
2000-10-10 01:33:42 +00:00
|
|
|
|
{
|
2002-06-11 16:40:18 +00:00
|
|
|
|
if (!form()) return;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* spacing */
|
2002-03-19 21:42:50 +00:00
|
|
|
|
// If a vspace kind is "Length" but there's no text in
|
2002-03-20 18:47:43 +00:00
|
|
|
|
// the input field, reset the kind to "None".
|
|
|
|
|
validateVSpaceWidgets(dialog_->choice_space_above,
|
|
|
|
|
dialog_->input_space_above);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
VSpace const space_top =
|
|
|
|
|
setVSpaceFromWidgets(dialog_->choice_space_above,
|
|
|
|
|
dialog_->input_space_above,
|
|
|
|
|
dialog_->choice_value_space_above,
|
|
|
|
|
dialog_->check_space_above);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().spaceTop(space_top);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
validateVSpaceWidgets(dialog_->choice_space_below,
|
|
|
|
|
dialog_->input_space_below);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
VSpace const space_bottom =
|
|
|
|
|
setVSpaceFromWidgets(dialog_->choice_space_below,
|
|
|
|
|
dialog_->input_space_below,
|
|
|
|
|
dialog_->choice_value_space_below,
|
|
|
|
|
dialog_->check_space_below);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().spaceBottom(space_bottom);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* lines and pagebreaks */
|
|
|
|
|
bool const line_top = fl_get_button(dialog_->check_lines_top);
|
|
|
|
|
controller().params().lineTop(line_top);
|
|
|
|
|
|
|
|
|
|
bool const line_bottom = fl_get_button(dialog_->check_lines_bottom);
|
|
|
|
|
controller().params().lineBottom(line_bottom);
|
|
|
|
|
|
|
|
|
|
bool const pagebreak_top = fl_get_button(dialog_->check_pagebreaks_top);
|
|
|
|
|
controller().params().pagebreakTop(pagebreak_top);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
bool const pagebreak_bottom = fl_get_button(dialog_->check_pagebreaks_bottom);
|
|
|
|
|
controller().params().pagebreakBottom(pagebreak_bottom);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
|
|
|
|
|
/* alignment */
|
2002-03-20 17:53:39 +00:00
|
|
|
|
LyXAlignment align;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
if (fl_get_button(dialog_->radio_align_left))
|
|
|
|
|
align = LYX_ALIGN_LEFT;
|
|
|
|
|
else if (fl_get_button(dialog_->radio_align_right))
|
|
|
|
|
align = LYX_ALIGN_RIGHT;
|
|
|
|
|
else if (fl_get_button(dialog_->radio_align_center))
|
|
|
|
|
align = LYX_ALIGN_CENTER;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
else
|
2002-03-19 21:42:50 +00:00
|
|
|
|
align = LYX_ALIGN_BLOCK;
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().align(align);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* label width */
|
2002-03-20 17:53:39 +00:00
|
|
|
|
string const labelwidthstring =
|
|
|
|
|
getStringFromInput(dialog_->input_labelwidth);
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().labelWidthString(labelwidthstring);
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* indendation */
|
2002-03-20 17:53:39 +00:00
|
|
|
|
bool const noindent = fl_get_button(dialog_->check_noindent);
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().noindent(noindent);
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* get spacing */
|
2002-03-19 21:42:50 +00:00
|
|
|
|
Spacing::Space linespacing = Spacing::Default;
|
2002-03-20 18:47:43 +00:00
|
|
|
|
string other;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
switch (fl_get_choice(dialog_->choice_linespacing)) {
|
2002-03-20 18:47:43 +00:00
|
|
|
|
case 1:
|
|
|
|
|
linespacing = Spacing::Default;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
linespacing = Spacing::Single;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
linespacing = Spacing::Onehalf;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
linespacing = Spacing::Double;
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
linespacing = Spacing::Other;
|
|
|
|
|
other = getStringFromInput(dialog_->input_linespacing);
|
|
|
|
|
break;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 18:47:43 +00:00
|
|
|
|
Spacing const spacing(linespacing, other);
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().spacing(spacing);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2000-09-25 15:59:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
void setWidgetsFromVSpace(VSpace const & space,
|
|
|
|
|
FL_OBJECT * choice_type,
|
|
|
|
|
FL_OBJECT * input_length,
|
|
|
|
|
FL_OBJECT * choice_length,
|
|
|
|
|
FL_OBJECT * check_keep)
|
|
|
|
|
{
|
|
|
|
|
// Paranoia check!
|
|
|
|
|
lyx::Assert(choice_type && choice_type->objclass == FL_CHOICE &&
|
|
|
|
|
input_length && input_length->objclass == FL_INPUT &&
|
|
|
|
|
choice_length && choice_length->objclass == FL_CHOICE &&
|
|
|
|
|
check_keep && check_keep->objclass == FL_CHECKBUTTON);
|
|
|
|
|
|
|
|
|
|
fl_set_input(input_length, "");
|
|
|
|
|
setEnabled(input_length, false);
|
|
|
|
|
setEnabled(choice_length, false);
|
|
|
|
|
|
|
|
|
|
switch (space.kind()) {
|
|
|
|
|
case VSpace::NONE:
|
|
|
|
|
fl_set_choice(choice_type, 1);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::DEFSKIP:
|
|
|
|
|
fl_set_choice(choice_type, 2);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::SMALLSKIP:
|
|
|
|
|
fl_set_choice(choice_type, 3);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::MEDSKIP:
|
|
|
|
|
fl_set_choice(choice_type, 4);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::BIGSKIP:
|
|
|
|
|
fl_set_choice(choice_type, 5);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::VFILL:
|
|
|
|
|
fl_set_choice(choice_type, 6);
|
|
|
|
|
break;
|
|
|
|
|
case VSpace::LENGTH:
|
|
|
|
|
{
|
|
|
|
|
fl_set_choice(choice_type, 7);
|
|
|
|
|
|
|
|
|
|
setEnabled(input_length, true);
|
|
|
|
|
setEnabled(choice_length, true);
|
|
|
|
|
|
|
|
|
|
bool const metric = lyxrc.default_papersize > 3;
|
|
|
|
|
string const default_unit = metric ? "cm" : "in";
|
|
|
|
|
string const length = space.length().asString();
|
|
|
|
|
|
|
|
|
|
updateWidgetsFromLengthString(input_length, choice_length,
|
|
|
|
|
length, default_unit);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fl_set_button(check_keep, space.keep());
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
} // namespace anon
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
2001-08-29 12:52:41 +00:00
|
|
|
|
void FormParagraph::update()
|
2000-09-25 15:59:27 +00:00
|
|
|
|
{
|
2002-03-19 21:42:50 +00:00
|
|
|
|
if (!dialog_.get())
|
|
|
|
|
return;
|
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* label width */
|
|
|
|
|
string labelwidth = controller().params().labelWidthString();
|
|
|
|
|
fl_set_input(dialog_->input_labelwidth, labelwidth.c_str());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
setEnabled(dialog_->input_labelwidth,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
labelwidth != _("Senseless with this layout!"));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* alignment */
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->radio_align_right, 0);
|
|
|
|
|
fl_set_button(dialog_->radio_align_left, 0);
|
|
|
|
|
fl_set_button(dialog_->radio_align_center, 0);
|
|
|
|
|
fl_set_button(dialog_->radio_align_block, 0);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
LyXAlignment align = controller().params().align();
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
switch (align) {
|
2002-03-20 18:47:43 +00:00
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
fl_set_button(dialog_->radio_align_right, 1);
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
fl_set_button(dialog_->radio_align_left, 1);
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
|
fl_set_button(dialog_->radio_align_center, 1);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fl_set_button(dialog_->radio_align_block, 1);
|
|
|
|
|
break;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
LyXAlignment alignpos = controller().alignPossible();
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
setEnabled(dialog_->radio_align_block, bool(alignpos & LYX_ALIGN_BLOCK));
|
|
|
|
|
setEnabled(dialog_->radio_align_center, bool(alignpos & LYX_ALIGN_CENTER));
|
|
|
|
|
setEnabled(dialog_->radio_align_left, bool(alignpos & LYX_ALIGN_LEFT));
|
|
|
|
|
setEnabled(dialog_->radio_align_right, bool(alignpos & LYX_ALIGN_RIGHT));
|
|
|
|
|
|
|
|
|
|
// no inset-text-owned paragraph may have pagebreaks
|
2002-06-11 16:40:18 +00:00
|
|
|
|
bool ininset = controller().inInset();
|
|
|
|
|
setEnabled(dialog_->check_pagebreaks_top, !ininset);
|
|
|
|
|
setEnabled(dialog_->check_pagebreaks_bottom, !ininset);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* lines, pagebreaks and indent */
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->check_lines_top,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().lineTop());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->check_lines_bottom,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().lineBottom());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->check_pagebreaks_top,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().pagebreakTop());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->check_pagebreaks_bottom,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().pagebreakBottom());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
fl_set_button(dialog_->check_noindent,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().noindent());
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* linespacing */
|
2002-03-19 21:42:50 +00:00
|
|
|
|
int linespacing;
|
2002-06-11 16:40:18 +00:00
|
|
|
|
Spacing const space = controller().params().spacing();
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
switch (space.getSpace()) {
|
2002-03-20 18:47:43 +00:00
|
|
|
|
default: linespacing = 1; break;
|
|
|
|
|
case Spacing::Single: linespacing = 2; break;
|
|
|
|
|
case Spacing::Onehalf: linespacing = 3; break;
|
|
|
|
|
case Spacing::Double: linespacing = 4; break;
|
|
|
|
|
case Spacing::Other: linespacing = 5; break;
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fl_set_choice(dialog_->choice_linespacing, linespacing);
|
|
|
|
|
if (space.getSpace() == Spacing::Other) {
|
|
|
|
|
string const sp = tostr(space.getValue());
|
|
|
|
|
fl_set_input(dialog_->input_linespacing, sp.c_str());
|
|
|
|
|
setEnabled(dialog_->input_linespacing, true);
|
|
|
|
|
} else {
|
|
|
|
|
fl_set_input(dialog_->input_linespacing, "");
|
|
|
|
|
setEnabled(dialog_->input_linespacing, false);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* vspace top */
|
|
|
|
|
setWidgetsFromVSpace(controller().params().spaceTop(),
|
2002-03-20 17:53:39 +00:00
|
|
|
|
dialog_->choice_space_above,
|
|
|
|
|
dialog_->input_space_above,
|
|
|
|
|
dialog_->choice_value_space_above,
|
|
|
|
|
dialog_->check_space_above);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* vspace bottom */
|
|
|
|
|
setWidgetsFromVSpace(controller().params().spaceBottom(),
|
2002-03-20 17:53:39 +00:00
|
|
|
|
dialog_->choice_space_below,
|
|
|
|
|
dialog_->input_space_below,
|
|
|
|
|
dialog_->choice_value_space_below,
|
|
|
|
|
dialog_->check_space_below);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
/* no indent */
|
2002-03-20 17:53:39 +00:00
|
|
|
|
fl_set_button(dialog_->check_noindent,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
controller().params().noindent());
|
2002-03-20 17:53:39 +00:00
|
|
|
|
}
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
namespace {
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
void synchronizeSpaceWidgets(FL_OBJECT * choice_type,
|
|
|
|
|
FL_OBJECT * input_length,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
FL_OBJECT * choice_length)
|
2002-03-20 17:53:39 +00:00
|
|
|
|
{
|
|
|
|
|
// Paranoia check!
|
|
|
|
|
lyx::Assert(choice_type && choice_type->objclass == FL_CHOICE &&
|
|
|
|
|
input_length && input_length->objclass == FL_INPUT &&
|
|
|
|
|
choice_length && choice_length->objclass == FL_CHOICE);
|
|
|
|
|
|
|
|
|
|
if (fl_get_choice(choice_type) != 7) {
|
|
|
|
|
fl_set_input(input_length, "");
|
|
|
|
|
setEnabled(input_length, false);
|
|
|
|
|
setEnabled(choice_length, false);
|
|
|
|
|
|
|
|
|
|
} else {
|
2002-06-11 16:40:18 +00:00
|
|
|
|
setEnabled(input_length, true);
|
|
|
|
|
setEnabled(choice_length, true);
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
|
|
|
|
string const length = getStringFromInput(input_length);
|
|
|
|
|
|
|
|
|
|
if (strip(length).empty()) {
|
2002-03-19 21:42:50 +00:00
|
|
|
|
bool const metric = lyxrc.default_papersize > 3;
|
2002-03-20 17:53:39 +00:00
|
|
|
|
int const default_unit = metric ? 8 : 9;
|
|
|
|
|
|
|
|
|
|
fl_set_choice(choice_length, default_unit);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-03-20 17:53:39 +00:00
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
bool validSpaceWidgets(FL_OBJECT * choice_type, FL_OBJECT * input_length)
|
|
|
|
|
{
|
|
|
|
|
// Paranoia check!
|
|
|
|
|
lyx::Assert(choice_type && choice_type->objclass == FL_CHOICE &&
|
|
|
|
|
input_length && input_length->objclass == FL_INPUT);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
if (fl_get_choice(choice_type) != 7)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
string const input = getStringFromInput(input_length);
|
|
|
|
|
return (input.empty() ||
|
|
|
|
|
isValidGlueLength(input) ||
|
|
|
|
|
isStrDbl(input));
|
2000-09-25 15:59:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
} // namespace anon
|
2000-09-25 15:59:27 +00:00
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
ButtonPolicy::SMInput FormParagraph::input(FL_OBJECT * ob, long)
|
2000-09-25 15:59:27 +00:00
|
|
|
|
{
|
2002-03-20 17:53:39 +00:00
|
|
|
|
clearMessage();
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
|
|
// First check the buttons which are exclusive and you have to
|
|
|
|
|
// check only the actuall de/activated button.
|
|
|
|
|
//
|
|
|
|
|
// "Synchronize" the choices and input fields, making it
|
|
|
|
|
// impossible to commit senseless data.
|
|
|
|
|
if (ob == dialog_->choice_space_above) {
|
2002-03-20 17:53:39 +00:00
|
|
|
|
synchronizeSpaceWidgets(dialog_->choice_space_above,
|
|
|
|
|
dialog_->input_space_above,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
dialog_->choice_value_space_above);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
2002-03-20 17:53:39 +00:00
|
|
|
|
|
2002-03-19 21:42:50 +00:00
|
|
|
|
if (ob == dialog_->choice_space_below) {
|
2002-03-20 17:53:39 +00:00
|
|
|
|
synchronizeSpaceWidgets(dialog_->choice_space_below,
|
|
|
|
|
dialog_->input_space_below,
|
2002-06-11 16:40:18 +00:00
|
|
|
|
dialog_->choice_value_space_below);
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
// Display a warning if the input is senseless
|
|
|
|
|
bool valid = (validSpaceWidgets(dialog_->choice_space_above,
|
|
|
|
|
dialog_->input_space_above) &&
|
|
|
|
|
validSpaceWidgets(dialog_->choice_space_below,
|
|
|
|
|
dialog_->input_space_below));
|
|
|
|
|
|
|
|
|
|
if (!valid) {
|
|
|
|
|
postWarning(_("Invalid Length (valid example: 10mm)"));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
int const choice_spacing = fl_get_choice(dialog_->choice_linespacing);
|
|
|
|
|
|
|
|
|
|
if (choice_spacing == 5)
|
2002-03-19 21:42:50 +00:00
|
|
|
|
setEnabled(dialog_->input_linespacing, true);
|
|
|
|
|
else {
|
2002-03-20 17:53:39 +00:00
|
|
|
|
fl_set_input(dialog_->input_linespacing, "");
|
2002-03-19 21:42:50 +00:00
|
|
|
|
setEnabled(dialog_->input_linespacing, false);
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
double const spacing =
|
|
|
|
|
strToDbl(getStringFromInput(dialog_->input_linespacing));
|
2002-03-19 21:42:50 +00:00
|
|
|
|
|
2002-03-20 17:53:39 +00:00
|
|
|
|
if (choice_spacing == 5 && int(spacing) == 0)
|
2002-03-19 21:42:50 +00:00
|
|
|
|
valid = false;
|
|
|
|
|
|
2002-06-11 16:40:18 +00:00
|
|
|
|
return ButtonPolicy::SMI_VALID;
|
2000-09-25 15:59:27 +00:00
|
|
|
|
}
|