2001-02-20 13:34:05 +00:00
|
|
|
/**
|
|
|
|
* \file FormPreamble.C
|
|
|
|
* Copyright 2001 The LyX Team.
|
|
|
|
* See the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 13:34:05 +00:00
|
|
|
#include "form_preamble.h"
|
|
|
|
#include "FormPreamble.h"
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "Liason.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "gettext.h"
|
2001-03-05 19:02:40 +00:00
|
|
|
#include "xforms_helpers.h"
|
2001-02-20 13:34:05 +00:00
|
|
|
|
|
|
|
using Liason::setMinibuffer;
|
|
|
|
|
|
|
|
FormPreamble::FormPreamble(LyXView * lv, Dialogs * d)
|
2001-03-15 13:37:04 +00:00
|
|
|
: FormBaseBD(lv, d, _("LaTeX preamble"))
|
2001-02-20 13:34:05 +00:00
|
|
|
{
|
|
|
|
// let the popup be shown
|
|
|
|
// This is a permanent connection so we won't bother
|
|
|
|
// storing a copy because we won't be disconnecting.
|
|
|
|
d->showPreamble.connect(slot(this, &FormPreamble::show));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FL_FORM * FormPreamble::form() const
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
if (dialog_.get()) return dialog_->form;
|
2001-02-20 13:34:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2001-02-20 13:34:05 +00:00
|
|
|
void FormPreamble::build()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
dialog_.reset(build_preamble());
|
2001-02-20 13:34:05 +00:00
|
|
|
// Workaround dumb xforms sizing bug
|
|
|
|
minw_ = form()->w;
|
|
|
|
minh_ = form()->h;
|
|
|
|
|
|
|
|
fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
|
|
|
|
// Manage the ok, apply and cancel/close buttons
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().setOK(dialog_->button_ok);
|
|
|
|
bc().setApply(dialog_->button_apply);
|
|
|
|
bc().setCancel(dialog_->button_cancel);
|
|
|
|
bc().addReadOnly(dialog_->input_preamble);
|
|
|
|
bc().refresh();
|
2001-02-20 13:34:05 +00:00
|
|
|
}
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2001-02-20 13:34:05 +00:00
|
|
|
void FormPreamble::apply()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
if (!lv_->view()->available() || !dialog_.get())
|
2001-02-20 13:34:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// is this needed?:
|
|
|
|
// lv_->view()->update(BufferView::SELECT | BufferView::FITCUR | BufferView::CHANGE);
|
|
|
|
|
|
|
|
lv_->buffer()->params.preamble = fl_get_input(dialog_->input_preamble);
|
|
|
|
lv_->buffer()->markDirty();
|
|
|
|
setMinibuffer(lv_, _("LaTeX preamble set"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormPreamble::update()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
if (!dialog_.get())
|
2001-02-20 13:34:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
fl_set_input(dialog_->input_preamble,lv_->buffer()->params.preamble.c_str());
|
2001-03-05 19:02:40 +00:00
|
|
|
|
|
|
|
bool const enable = (! lv_->buffer()->isReadonly());
|
|
|
|
setEnabled(dialog_->input_preamble, enable);
|
|
|
|
setEnabled(dialog_->button_ok, enable);
|
|
|
|
setEnabled(dialog_->button_apply, enable);
|
2001-02-20 13:34:05 +00:00
|
|
|
|
|
|
|
// need this?
|
2001-03-15 13:37:04 +00:00
|
|
|
// bc().readOnly(lv_->buffer()->isReadonly());
|
2001-02-20 13:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|