]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
* Painter.h:
[lyx.git] / src / BufferView.h
index 9825e8fbc5cfa49bba3f9fddb309f0658180bf4e..75f5da045397ac248101862c5fc27afe8f212651 100644 (file)
 #ifndef BUFFER_VIEW_H
 #define BUFFER_VIEW_H
 
+#include "coordcache.h"
 #include "cursor.h"
 #include "metricsinfo.h"
-
+#include "UpdateFlags.h"
 #include "support/types.h"
 
 #include <boost/utility.hpp>
@@ -25,6 +26,9 @@
 
 #include <string>
 
+
+namespace lyx {
+
 class Buffer;
 class Change;
 class DocIterator;
@@ -37,26 +41,6 @@ class LyXText;
 class ParIterator;
 class ViewMetricsInfo;
 
-namespace Update {
-       enum flags {
-               FitCursor = 1,
-               Force = 2,
-               SinglePar = 4,
-               MultiParSel = 8
-       };
-
-inline flags operator|(flags const f, flags const g)
-{
-       return static_cast<flags>(int(f) | int(g));
-}
-
-inline flags operator&(flags const f, flags const g)
-{
-       return static_cast<flags>(int(f) & int(g));
-}
-
-} // namespace
-
 /// Scrollbar Parameters
 struct ScrollbarParameters
 {
@@ -137,7 +121,7 @@ public:
        LyXText const * getLyXText() const;
 
        /// move cursor to the named label
-       void gotoLabel(lyx::docstring const & label);
+       void gotoLabel(docstring const & label);
 
        /// set the cursor based on the given TeX source row
        void setCursorFromRow(int row);
@@ -165,7 +149,7 @@ public:
        bool dispatch(FuncRequest const & argument);
 
        ///
-       lyx::docstring const requestSelection();
+       docstring const requestSelection();
        ///
        void clearSelection();
 
@@ -176,7 +160,7 @@ public:
        bool workAreaDispatch(FuncRequest const & ev);
 
        /// access to anchor
-       lyx::pit_type anchor_ref() const;
+       pit_type anchor_ref() const;
 
        /// access to full cursor
        LCursor & cursor();
@@ -199,13 +183,21 @@ public:
        ///
        void updateMetrics(bool singlepar = false);
 
+       ///
+       CoordCache & coordCache() {
+               return coord_cache_;
+       }
+       ///
+       CoordCache const & coordCache() const {
+               return coord_cache_;
+       }
        /// get this view's keyboard map handler
        Intl & getIntl() { return *intl_.get(); }
        ///
        Intl const & getIntl() const { return *intl_.get(); }
 
        /// This signal is emitted when some message shows up.
-       boost::signal<void(lyx::docstring)> message;
+       boost::signal<void(docstring)> message;
 
        /// This signal is emitted when some dialog needs to be shown.
        boost::signal<void(std::string name)> showDialog;
@@ -238,7 +230,7 @@ private:
 
        ///
        ViewMetricsInfo metrics_info_;
-
+       CoordCache coord_cache_;
        ///
        Buffer * buffer_;
 
@@ -252,11 +244,11 @@ private:
                /// Cursor paragraph Id
                int par_id;
                /// Cursor position
-               lyx::pos_type par_pos;
+               pos_type par_pos;
                ///
                Position() : par_id(0), par_pos(0) {}
                ///
-               Position(std::string const & f, int id, lyx::pos_type pos)
+               Position(std::string const & f, int id, pos_type pos)
                        : filename(f), par_id(id), par_pos(pos) {}
        };
        ///
@@ -275,7 +267,7 @@ private:
        ///
        bool multiparsel_cache_;
        ///
-       lyx::pit_type anchor_ref_;
+       pit_type anchor_ref_;
        ///
        int offset_ref_;
 
@@ -283,4 +275,7 @@ private:
        boost::scoped_ptr<Intl> const intl_;
 };
 
+
+} // namespace lyx
+
 #endif // BUFFERVIEW_H