]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView_pimpl.h
Reduce Michael's buglist.
[lyx.git] / src / BufferView_pimpl.h
index e7a9c8ba750b0108d3bd656c8ba707e28131b513..320c7d18a72bb5d69faec66ea7a62974c39dcf47 100644 (file)
@@ -10,6 +10,8 @@
 #include "commandtags.h"
 #include "frontends/Timeout.h"
 #include "WorkArea.h"
+#include "insets/insetspecialchar.h"
+#include "support/types.h"
 
 #ifdef __GNUG__
 #pragma interface
@@ -35,7 +37,7 @@ struct BufferView::Pimpl : public SigC::Object {
        ///
        void redraw();
        /// Return true if the cursor was fitted.
-       bool fitCursor(LyXText *);
+       bool fitCursor();
        ///
        void redoCurrentBuffer();
        ///
@@ -118,11 +120,33 @@ struct BufferView::Pimpl : public SigC::Object {
        ///
        void center();
        ///
+       bool insertInset(Inset * inset, string const & lout = string());
+       ///
+       void updateInset(Inset * inset, bool mark_dirty);
+       ///
        bool Dispatch(kb_action action, string const & argument);
 private:
        ///
        friend class BufferView;
-       
+       /// open and lock an updatable inset
+       bool open_new_inset(UpdatableInset * new_inset, bool behind = false);
+       ///
+       void protectedBlank(LyXText * lt);
+       /// 
+       void specialChar(InsetSpecialChar::Kind);
+       ///
+       void newline();
+       ///
+       void hfill();
+       ///
+       void smartQuote();
+       ///
+       void insertAndEditInset(Inset *);
+       ///
+       void gotoInset(std::vector<Inset::Code> const & codes,
+                      bool same_content);
+       ///
+       void gotoInset(Inset::Code codes, bool same_content);
        ///
        BufferView * bv_;
        ///
@@ -134,13 +158,7 @@ private:
        ///
        long current_scrollbar_value;
        ///
-       FL_OBJECT * figinset_canvas;
-       ///
        Timeout cursor_timeout;
-        ///
-       int last_click_x;
-       ///
-       int last_click_y;
        ///
        WorkArea workarea_;
        ///
@@ -154,24 +172,26 @@ private:
        ///
        struct Position {
                /// Filename
-                string filename;
-                /// Cursor paragraph Id
-                int par_id;
-                /// Cursor position
-                LyXParagraph::size_type par_pos;
+               string filename;
+               /// Cursor paragraph Id
+               int par_id;
+               /// Cursor position
+               lyx::pos_type par_pos;
                ///
                Position() : par_id(0), par_pos(0) {}
                ///
-               Position(string const & f, int id, LyXParagraph::size_type pos)
-                        : filename(f), par_id(id), par_pos(pos) {}
+               Position(string const & f, int id, lyx::pos_type pos)
+                       : filename(f), par_id(id), par_pos(pos) {}
        };
        ///
        std::vector<Position> saved_positions;
        ///
        void moveCursorUpdate(bool selecting);
-        /// Get next inset of this class from current cursor position  
+       /// Get next inset of this class from current cursor position  
        Inset * getInsetByCode(Inset::Code code);
        ///
        void MenuInsertLyXFile(string const & filen);
+       ///
+       bool inset_slept;
 };
 #endif