]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
* Painter.h:
[lyx.git] / src / BufferView.h
index 94c1588e8a688ca68f68662b65971fecaf20eafb..75f5da045397ac248101862c5fc27afe8f212651 100644 (file)
 #ifndef BUFFER_VIEW_H
 #define BUFFER_VIEW_H
 
+#include "coordcache.h"
 #include "cursor.h"
 #include "metricsinfo.h"
-
-#include "frontends/LyXKeySym.h"
-
+#include "UpdateFlags.h"
 #include "support/types.h"
 
 #include <boost/utility.hpp>
@@ -27,6 +26,9 @@
 
 #include <string>
 
+
+namespace lyx {
+
 class Buffer;
 class Change;
 class DocIterator;
@@ -36,30 +38,9 @@ class Intl;
 class Language;
 class LCursor;
 class LyXText;
-class LyXView;
 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
 {
@@ -88,11 +69,7 @@ struct ScrollbarParameters
  */
 class BufferView : boost::noncopyable {
 public:
-       /**
-        * Create a view with the given owner main window,
-        * of the given dimensions.
-        */
-       BufferView(LyXView * owner);
+       BufferView();
 
        ~BufferView();
 
@@ -101,9 +78,6 @@ public:
        /// return the buffer being viewed
        Buffer * buffer() const;
 
-       /// return the owning main view
-       LyXView * owner() const;
-
        /// resize event has happened
        void resize();
 
@@ -138,7 +112,7 @@ public:
        void saveSavedPositions();
 
        /// return the current change at the cursor
-       Change const getCurrentChange();
+       Change const getCurrentChange() const;
 
        /// return the lyxtext we are using
        LyXText * getLyXText();
@@ -147,7 +121,7 @@ public:
        LyXText const * getLyXText() const;
 
        /// move cursor to the named label
-       void gotoLabel(std::string const & label);
+       void gotoLabel(docstring const & label);
 
        /// set the cursor based on the given TeX source row
        void setCursorFromRow(int row);
@@ -175,7 +149,7 @@ public:
        bool dispatch(FuncRequest const & argument);
 
        ///
-       lyx::docstring const requestSelection();
+       docstring const requestSelection();
        ///
        void clearSelection();
 
@@ -186,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();
@@ -209,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;
@@ -233,6 +215,9 @@ public:
        boost::signal<void(std::string name,
                std::string data)> updateDialog;
 
+       /// This signal is emitted when the layout at the cursor is changed.
+       boost::signal<void(std::string layout)> layoutChanged;
+
 private:
        ///
        bool multiParSel();
@@ -243,14 +228,9 @@ private:
        ///
        ScrollbarParameters scrollbarParameters_;
 
-       /// track changes for the document
-       void trackChanges();
-
        ///
        ViewMetricsInfo metrics_info_;
-
-       ///
-       LyXView * owner_;
+       CoordCache coord_cache_;
        ///
        Buffer * buffer_;
 
@@ -264,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) {}
        };
        ///
@@ -287,7 +267,7 @@ private:
        ///
        bool multiparsel_cache_;
        ///
-       lyx::pit_type anchor_ref_;
+       pit_type anchor_ref_;
        ///
        int offset_ref_;
 
@@ -295,4 +275,7 @@ private:
        boost::scoped_ptr<Intl> const intl_;
 };
 
+
+} // namespace lyx
+
 #endif // BUFFERVIEW_H