]> git.lyx.org Git - features.git/commitdiff
Fix interface problem in order to cleanly support "cursor position memory" in the...
authorAbdelrazak Younes <younes@lyx.org>
Thu, 3 May 2007 14:20:12 +0000 (14:20 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Thu, 3 May 2007 14:20:12 +0000 (14:20 +0000)
* ControlDocument::params(): replace BufferParams local copy with Buffer::params() direct access.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18186 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ControlDocument.cpp
src/frontends/controllers/ControlDocument.h

index 36c3bbd5294ab53884a2de1b607891643b23630a..804725c67353257fcae3fad3f9b880d4aa93f0bf 100644 (file)
@@ -60,28 +60,30 @@ ControlDocument::~ControlDocument()
 
 bool ControlDocument::initialiseParams(std::string const &)
 {
-       bp_.reset(new BufferParams);
-       *bp_ = kernel().buffer().params();
        return true;
 }
 
 
 void ControlDocument::clearParams()
 {
-       bp_.reset();
 }
 
 
-BufferParams & ControlDocument::params() const
+BufferParams const & ControlDocument::params() const
 {
-       BOOST_ASSERT(bp_.get());
-       return *bp_;
+       return kernel().buffer().params();
+}
+
+
+BufferParams & ControlDocument::params()
+{
+       return kernel().buffer().params();
 }
 
 
 TextClass const & ControlDocument::textClass() const
 {
-       return textclasslist[bp_->textclass];
+       return textclasslist[params().textclass];
 }
 
 
@@ -108,14 +110,14 @@ void ControlDocument::dispatchParams()
        // Set the document class.
        textclass_type const old_class =
                kernel().buffer().params().textclass;
-       textclass_type const new_class = bp_->textclass;
+       textclass_type const new_class = params().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 = bp_->secnumdepth;
+       int const new_secnumdepth = params().secnumdepth;
 
        // Apply the BufferParams.
        dispatch_bufferparams(kernel(), params(), LFUN_BUFFER_PARAMS_APPLY);
@@ -151,7 +153,7 @@ void ControlDocument::dispatchParams()
 
 void ControlDocument::setLanguage() const
 {
-       Language const * const newL = bp_->language;
+       Language const * const newL = params().language;
        if (kernel().buffer().params().language == newL)
                return;
 
index d85cdf306e3fc77a63a4898c14ba2c6238862a3c..843558154c28e552a85de9061df0290023e78cdd 100644 (file)
@@ -13,8 +13,8 @@
 #define CONTROLDOCUMENT_H
 
 #include "Dialog.h"
+
 #include "support/types.h"
-#include <boost/scoped_ptr.hpp>
 
 namespace lyx {
 
@@ -48,7 +48,9 @@ public:
        ///
        TextClass const & textClass() const;
        ///
-       BufferParams & params() const;
+       BufferParams const & params() const;
+       ///
+       BufferParams & params();
        ///
        void setLanguage() const;
        ///
@@ -63,9 +65,6 @@ 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