revert 18186: this cannot be done right now because of the way LFUN_BUFFER_PARAMS_APPLY is implemented.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18187 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-05-03 14:47:22 +00:00
parent 696b6a2167
commit 9ed920f62a
2 changed files with 15 additions and 16 deletions

View File

@ -60,30 +60,28 @@ ControlDocument::~ControlDocument()
bool ControlDocument::initialiseParams(std::string const &)
{
bp_.reset(new BufferParams);
*bp_ = kernel().buffer().params();
return true;
}
void ControlDocument::clearParams()
{
bp_.reset();
}
BufferParams const & ControlDocument::params() const
BufferParams & ControlDocument::params() const
{
return kernel().buffer().params();
}
BufferParams & ControlDocument::params()
{
return kernel().buffer().params();
BOOST_ASSERT(bp_.get());
return *bp_;
}
TextClass const & ControlDocument::textClass() const
{
return textclasslist[params().textclass];
return textclasslist[bp_->textclass];
}
@ -110,14 +108,14 @@ void ControlDocument::dispatchParams()
// Set the document class.
textclass_type const old_class =
kernel().buffer().params().textclass;
textclass_type const new_class = params().textclass;
textclass_type const new_class = bp_->textclass;
if (new_class != old_class) {
string const name = textclasslist[new_class].name();
kernel().dispatch(FuncRequest(LFUN_TEXTCLASS_APPLY, name));
}
int const old_secnumdepth = kernel().buffer().params().secnumdepth;
int const new_secnumdepth = params().secnumdepth;
int const new_secnumdepth = bp_->secnumdepth;
// Apply the BufferParams.
dispatch_bufferparams(kernel(), params(), LFUN_BUFFER_PARAMS_APPLY);
@ -153,7 +151,7 @@ void ControlDocument::dispatchParams()
void ControlDocument::setLanguage() const
{
Language const * const newL = params().language;
Language const * const newL = bp_->language;
if (kernel().buffer().params().language == newL)
return;

View File

@ -13,8 +13,8 @@
#define CONTROLDOCUMENT_H
#include "Dialog.h"
#include "support/types.h"
#include <boost/scoped_ptr.hpp>
namespace lyx {
@ -48,9 +48,7 @@ public:
///
TextClass const & textClass() const;
///
BufferParams const & params() const;
///
BufferParams & params();
BufferParams & params() const;
///
void setLanguage() const;
///
@ -65,6 +63,9 @@ public:
bool const providesSC(std::string const & font) const;
/// does this font provide size adjustment?
bool const providesScale(std::string const & font) const;
private:
///
boost::scoped_ptr<BufferParams> bp_;
};
} // namespace frontend