X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBufferView_pimpl.h;h=f1234753cf994ca39185ffb3adf664ef7614f5e4;hb=31b56dac8042735f75229ad480b3e98531c181ff;hp=59a2cba5f73a7c578e0614b0a11cee2a3fc7d6b6;hpb=ee7a1321a7e1538db895c77307a8dc021248f315;p=lyx.git diff --git a/src/BufferView_pimpl.h b/src/BufferView_pimpl.h index 59a2cba5f7..f1234753cf 100644 --- a/src/BufferView_pimpl.h +++ b/src/BufferView_pimpl.h @@ -118,6 +118,10 @@ 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: /// @@ -141,6 +145,11 @@ private: /// void insertNote(); /// + void gotoInset(std::vector const & codes, + bool same_content); + /// + void gotoInset(Inset::Code codes, bool same_content); + /// BufferView * bv_; /// LyXView * owner_; @@ -152,10 +161,6 @@ private: long current_scrollbar_value; /// Timeout cursor_timeout; - /// - int last_click_x; - /// - int last_click_y; /// WorkArea workarea_; /// @@ -188,5 +193,7 @@ private: Inset * getInsetByCode(Inset::Code code); /// void MenuInsertLyXFile(string const & filen); + /// + bool inset_slept; }; #endif