]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettabular.h
some reindentation, revert workarea xpos++, constify, remove all traces of LyXParagra...
[lyx.git] / src / insets / insettabular.h
index 39521dbbbaa6d3a61776df2d100e7e834699361d..ba72465347d888035e94748d4bc635afc9f47c52 100644 (file)
@@ -101,7 +101,7 @@ public:
        ///
        void Edit(BufferView *, int x, int y, unsigned int);
        ///
-       bool doClearArea() const { return !locked; };
+       bool doClearArea() const;
        ///
        void InsetUnlock(BufferView *);
        ///
@@ -178,6 +178,20 @@ public:
        LyXFunc::func_status getStatus(string const & argument) const;
        ///
        std::vector<string> const getLabelList() const;
+       ///
+       void nodraw(bool b) {
+               UpdatableInset::nodraw(b);
+       }
+       bool nodraw() const;
+       ///
+       int scroll(bool recursive=true) const;
+       void scroll(BufferView *bv, float sx) const {
+               UpdatableInset::scroll(bv, sx);
+       }
+       void scroll(BufferView *bv, int offset) const {
+               UpdatableInset::scroll(bv, offset);
+       }
+
        //
        // Public structures and variables
        ///
@@ -283,8 +297,6 @@ private:
        ///
        bool no_selection;
        ///
-       bool no_draw;
-       ///
        mutable bool locked;
        ///
        mutable UpdateCodes need_update;