mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.1 KiB
C
69 lines
1.1 KiB
C
/**
|
|
* \file FormPreamble.C
|
|
* Copyright 2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ViewBase.h"
|
|
#include "ButtonControllerBase.h"
|
|
#include "ControlPreamble.h"
|
|
#include "LyXView.h"
|
|
#include "Dialogs.h"
|
|
#include "buffer.h"
|
|
#include "lyxrc.h"
|
|
#include "Liason.h"
|
|
#include "gettext.h"
|
|
#include "BufferView.h"
|
|
#include "support/LAssert.h"
|
|
|
|
ControlPreamble::ControlPreamble(LyXView & lv, Dialogs & d)
|
|
: ControlDialogBD(lv, d),
|
|
params_(0)
|
|
{
|
|
d_.showPreamble.connect(SigC::slot(this, &ControlPreamble::show));
|
|
}
|
|
|
|
|
|
void ControlPreamble::apply()
|
|
{
|
|
if (!lv_.view()->available())
|
|
return;
|
|
|
|
view().apply();
|
|
|
|
lv_.buffer()->params.preamble = params();
|
|
lv_.buffer()->markDirty();
|
|
Liason::setMinibuffer(&lv_, _("LaTeX preamble set"));
|
|
}
|
|
|
|
|
|
string & ControlPreamble::params() const
|
|
{
|
|
lyx::Assert(params_);
|
|
return *params_;
|
|
}
|
|
|
|
|
|
void ControlPreamble::setParams()
|
|
{
|
|
if (params_) delete params_;
|
|
params_ = new string(lv_.buffer()->params.preamble);
|
|
}
|
|
|
|
|
|
void ControlPreamble::clearParams()
|
|
{
|
|
if (params_) {
|
|
delete params_;
|
|
params_ = 0;
|
|
}
|
|
}
|