mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
ba9cdda813
a View. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6410 a592a061-630c-0410-9148-cb99ea01b6c8
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
/**
|
|
* \file FormPreamble.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
#include "xformsBC.h"
|
|
#include "ControlPreamble.h"
|
|
#include "FormPreamble.h"
|
|
#include "forms/form_preamble.h"
|
|
#include "xforms_helpers.h"
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
|
|
|
|
FormPreamble::FormPreamble()
|
|
: base_class(_("LaTeX preamble"))
|
|
{}
|
|
|
|
|
|
void FormPreamble::build()
|
|
{
|
|
dialog_.reset(build_preamble(this));
|
|
|
|
// Manage the ok, apply and cancel/close buttons
|
|
bcview().setOK(dialog_->button_ok);
|
|
bcview().setApply(dialog_->button_apply);
|
|
bcview().setCancel(dialog_->button_close);
|
|
|
|
// trigger an input event for cut&paste with middle mouse button.
|
|
setPrehandler(dialog_->input_preamble);
|
|
|
|
// for activate ok/apply immediately upon input
|
|
fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
|
|
}
|
|
|
|
|
|
void FormPreamble::apply()
|
|
{
|
|
controller().params(getString(dialog_->input_preamble));
|
|
}
|
|
|
|
|
|
void FormPreamble::update()
|
|
{
|
|
fl_set_input(dialog_->input_preamble, controller().params().c_str());
|
|
}
|