mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
2a31934f38
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.6 KiB
C
77 lines
1.6 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 std::string;
|
|
|
|
namespace lyx {
|
|
|
|
using support::trim;
|
|
|
|
namespace frontend {
|
|
|
|
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));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|