]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTabular.h
make selecting several rows/col more convenient
[lyx.git] / src / insets / InsetTabular.h
index ae4c7e268dc82cddabd94ddbe0d1c28d83deed33..493c03eeb11bed3ca2a91e372d84744a5ae2d0fc 100644 (file)
@@ -613,9 +613,9 @@ public:
        ///
        int TeXBottomHLine(odocstream &, row_type row) const;
        ///
-       int TeXCellPreamble(odocstream &, idx_type cell) const;
+       int TeXCellPreamble(odocstream &, idx_type cell, bool & ismulticol) const;
        ///
-       int TeXCellPostamble(odocstream &, idx_type cell) const;
+       int TeXCellPostamble(odocstream &, idx_type cell, bool ismulticol) const;
        ///
        int TeXLongtableHeaderFooter(odocstream &, OutputParams const &) const;
        ///
@@ -864,6 +864,10 @@ private:
        mutable idx_type first_visible_cell;
        ///
        mutable int scx_;
+       /// true when selecting rows with the mouse
+       bool rowselect_;
+       /// true when selecting columns with the mouse
+       bool colselect_;
 };