lyx_mirror/src/frontends/xforms/FormText.C
Lars Gullik Bjønnes 44cd0fc9a1 The std::string mammoth path.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
2003-10-06 15:43:21 +00:00

71 lines
1.5 KiB
C

/**
* \file FormText.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "FormText.h"
#include "ControlCommand.h"
#include "forms/form_text.h"
#include "xformsBC.h"
#include "forms_gettext.h"
#include "controllers/ButtonController.h"
#include "support/lstrings.h"
#include "lyx_forms.h"
using lyx::support::trim;
using std::string;
typedef FormController<ControlCommand, FormView<FD_text> > base_class;
FormText::FormText(Dialog & parent, string const & title, string const & label)
: base_class(parent, title), label_(label)
{}
void FormText::build()
{
dialog_.reset(build_text(this));
fl_set_input_return(dialog_->input_text, FL_RETURN_CHANGED);
setPrehandler(dialog_->input_text);
fl_set_object_label(dialog_->input_text, idex(label_).c_str());
fl_set_button_shortcut(dialog_->input_text, scex(label_).c_str(), 1);
// Manage the ok, apply, restore and cancel/close buttons
bcview().setOK(dialog_->button_ok);
bcview().setApply(dialog_->button_apply);
bcview().setCancel(dialog_->button_close);
bcview().setRestore(dialog_->button_restore);
bcview().addReadOnly(dialog_->input_text);
}
void FormText::update()
{
string const contents = trim(controller().params().getContents());
fl_set_input(dialog_->input_text, contents.c_str());
bc().valid(!contents.empty());
}
void FormText::apply()
{
controller().params().setContents(fl_get_input(dialog_->input_text));
}