]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettabular.h
changelogs
[lyx.git] / src / insets / insettabular.h
index 2e0d2a6c3af5792ae0233d71077d8b42d04d4bf4..b6a6f93970afbe7cb5beb1799c06f86e05c2b3eb 100644 (file)
@@ -8,21 +8,11 @@
  *
  * Full author contact details are available in file CREDITS.
  */
-// This is the rewrite of the tabular (table) support.
 
-// It will probably be a lot of work.
 
-// One first goal could be to make the inset read the old table format
-// and just output it again... no viewing at all.
+// This is Juergen's rewrite of the tabular (table) support.
 
-// When making the internal structure of tabular support I really think
-// that STL containers should be used. This will separate the container from
-// the rest of the code, which is a good thing.
-
-// Ideally the tabular support should do as the mathed and use
-// LaTeX in the .lyx file too.
-
-// Things to think of when desingning the new tabular support:
+// Things to think of when designing the new tabular support:
 // - color support (colortbl, color)
 // - decimal alignment (dcloumn)
 // - custom lines (hhline)
 // This is what I have written about tabular support in the LyX3-Tasks file:
 //
 //  o rewrite of table code. Should probably be written as some
-//          kind of an inset. At least get the code out of the kernel.
-//                - colortbl  -multirow
-//                - hhline    -multicolumn
-//                - dcolumn
+//    kind of an inset. [Done]
 // o enhance longtable support
 
 // Lgb
@@ -47,7 +34,6 @@
 
 #include "inset.h"
 #include "tabular.h"
-#include "frontends/mouse_state.h"
 
 class FuncStatus;
 class LyXLex;
@@ -56,18 +42,16 @@ class BufferView;
 class Buffer;
 class BufferParams;
 class Paragraph;
+class CursorSlice;
+
 
 class InsetTabular : public UpdatableInset {
 public:
        ///
        InsetTabular(Buffer const &, int rows = 1, int columns = 1);
        ///
-       InsetTabular(InsetTabular const &);
-       ///
        ~InsetTabular();
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
        void read(Buffer const &, LyXLex &);
        ///
        void write(Buffer const &, std::ostream &) const;
@@ -77,25 +61,8 @@ public:
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        std::string const editMessage() const;
-       //
-       void insetUnlock(BufferView *);
-       ///
-       void updateLocal(BufferView *) const;
-       ///
-       bool lockInsetInInset(BufferView *, UpdatableInset *);
-       ///
-       bool unlockInsetInInset(BufferView *, UpdatableInset *,
-                               bool lr = false);
        ///
-       int insetInInsetY() const;
-       ///
-       UpdatableInset * getLockingInset() const;
-       ///
-       UpdatableInset * getFirstLockingInsetOfType(InsetOld::Code);
-       ///
-       bool insertInset(BufferView *, InsetOld *);
-       ///
-       bool insetAllowed(InsetOld::Code code) const;
+       bool insetAllowed(InsetBase::Code) const { return true; }
        ///
        bool isTextInset() const { return true; }
        /** returns true if, when outputing LaTeX, font changes should
@@ -106,227 +73,122 @@ public:
        bool display() const { return tabular.isLongTabular(); }
        ///
        int latex(Buffer const &, std::ostream &,
-                 LatexRunParams const &) const;
+                 OutputParams const &) const;
        ///
-       int ascii(Buffer const &, std::ostream &,
-                 LatexRunParams const &) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
        int linuxdoc(Buffer const &, std::ostream &,
-                    LatexRunParams const &) const;
+                    OutputParams const &) const;
        ///
        int docbook(Buffer const &, std::ostream &,
-                   LatexRunParams const &) const;
+                   OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::TABULAR_CODE; }
-       /// FIXME, document
-       void getCursorPos(BufferView *, int & x, int & y) const;
-       /// Get the absolute document x,y of the cursor
-       virtual void getCursor(BufferView &, int &, int &) const;
+       Code lyxCode() const { return InsetBase::TABULAR_CODE; }
+       /// get the absolute screen x,y of the cursor
+       void getCursorPos(LCursor const & cur, int & x, int & y) const;
        ///
-       bool tabularFeatures(BufferView * bv, std::string const & what);
+       bool tabularFeatures(LCursor & cur, std::string const & what);
        ///
-       void tabularFeatures(BufferView * bv, LyXTabular::Feature feature,
+       void tabularFeatures(LCursor & cur, LyXTabular::Feature feature,
                             std::string const & val = std::string());
        ///
-       int getActCell() const { return actcell; }
-       ///
-       void setFont(BufferView *, LyXFont const &, bool toggleall = false,
-                    bool selectall = false);
-       ///
-       LyXText * getLyXText(BufferView const *,
-                            bool const recursive = false) const;
-       ///
-       void deleteLyXText(BufferView *, bool recursive = true) const;
-       ///
        void openLayoutDialog(BufferView *) const;
        ///
        bool showInsetDialog(BufferView *) const;
-       ///
-       FuncStatus getStatus(std::string const & argument) const;
        /// Appends \c list with all labels found within this inset.
        void getLabelList(Buffer const &, std::vector<std::string> & list) const;
+       /// number of cells
+       size_t nargs() const;
        ///
-       int scroll(bool recursive=true) const;
+       boost::shared_ptr<InsetText const> cell(int) const;
        ///
-       void scroll(BufferView *bv, float sx) const {
-               UpdatableInset::scroll(bv, sx);
-       }
-       ///
-       void scroll(BufferView *bv, int offset) const {
-               UpdatableInset::scroll(bv, offset);
-       }
-       ///
-       InsetOld * getInsetFromID(int id) const;
-       ///
-       ParagraphList * getParagraphs(int) const;
+       boost::shared_ptr<InsetText> cell(int);
        ///
        LyXText * getText(int) const;
-       ///
-       LyXCursor const & cursor(BufferView *) const;
-       ///
-       bool allowSpellcheck() const { return true; }
-       ///
-       WordLangTuple const
-       selectNextWordToSpellcheck(BufferView *, float & value) const;
-       ///
-       void selectSelectedWord(BufferView *);
-
-       void markErased();
 
-       /// find next change
-       bool nextChange(BufferView *, lyx::pos_type & length);
        ///
-       bool searchForward(BufferView *, std::string const &,
-                          bool = true, bool = false);
-       bool searchBackward(BufferView *, std::string const &,
-                           bool = true, bool = false);
+       void markErased();
 
        // this should return true if we have a "normal" cell, otherwise true.
        // "normal" means without width set!
-       bool forceDefaultParagraphs(InsetOld const * in) const;
+       bool forceDefaultParagraphs(InsetBase const * in) const;
 
        ///
        void addPreview(lyx::graphics::PreviewLoader &) const;
 
+       ///
+       Buffer const & buffer() const;
+
+       /// set the owning buffer
+       void buffer(Buffer const * buf);
+       /// lock cell with given index
+       void edit(LCursor & cur, bool left);
+       ///
+       InsetBase * editXY(LCursor & cur, int x, int y) const;
+       /// can we go further down on mouse click?
+       bool descendable() const { return true; }
+
        //
        // Public structures and variables
        ///
        mutable LyXTabular tabular;
 
-       /// are some cells selected ?
-       bool hasSelection() const {
-               return has_selection;
-       }
+protected:
+       InsetTabular(InsetTabular const &);
 
-       ///
-       virtual BufferView * view() const;
-       ///
-       Buffer const & buffer() const;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 
-       /// set the owning buffer
-       void buffer(Buffer * buf);
-protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
 private:
-       /// lock cell with given index
-       void edit(BufferView * bv, int index);
-       ///
-       void lfunMousePress(FuncRequest const &);
-       ///
-       // the bool return is used to see if we opened a dialog so that we can
-       // check this from an outer inset and open the dialog of the outer inset
-       // if that one has one!
-       ///
-       bool lfunMouseRelease(FuncRequest const &);
-       ///
-       void lfunMouseMotion(FuncRequest const &);
-       ///
-       void calculate_dimensions_of_cells(MetricsInfo & mi) const;
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
        void drawCellLines(Painter &, int x, int baseline,
-                          int row, int cell) const;
-       ///
-       void drawCellSelection(Painter &, int x, int baseline,
-                              int row, int column, int cell) const;
-       ///
-       void fitInsetCursor(BufferView *) const;
+               int row, int cell) const;
        ///
-       void setPos(BufferView *, int x, int y) const;
+       void drawCellSelection(PainterInfo &, int x, int baseline,
+               int row, int column, int cell) const;
        ///
-       DispatchResult moveRight(BufferView *, bool lock = true);
-       ///
-       DispatchResult moveLeft(BufferView *, bool lock = true);
-       ///
-       DispatchResult moveUp(BufferView *, bool lock = true);
-       ///
-       DispatchResult moveDown(BufferView *, bool lock = true);
+       InsetBase * setPos(LCursor & cur, int x, int y) const;
+
        ///
-       bool moveNextCell(BufferView *, bool lock = false);
+       void moveNextCell(LCursor & cur);
        ///
-       bool movePrevCell(BufferView *, bool lock = false);
+       void movePrevCell(LCursor & cur);
        ///
        int getCellXPos(int cell) const;
        ///
-       void resetPos(BufferView *) const;
+       void resetPos(LCursor & cur) const;
        ///
        void removeTabularRow();
        ///
-       void clearSelection() const {
-               sel_cell_start = sel_cell_end = 0;
-               has_selection = false;
-       }
-       void setSelection(int start, int end) const {
-               sel_cell_start = start;
-               sel_cell_end = end;
-               has_selection = true;
-       }
-       ///
-       bool activateCellInset(BufferView *, int x = 0, int y = 0,
-                              mouse_button::state button = mouse_button::none,
-                              bool behind = false);
-       ///
-       bool insetHit(BufferView * bv, int x, int y) const;
-       ///
        bool hasPasteBuffer() const;
        ///
-       bool copySelection(BufferView *);
+       bool copySelection(LCursor & cur);
        ///
-       bool pasteSelection(BufferView *);
+       bool pasteSelection(LCursor & cur);
        ///
-       bool cutSelection(BufferParams const & bp);
+       void cutSelection(LCursor & cur);
        ///
-       bool isRightToLeft(BufferView *);
+       bool isRightToLeft(LCursor & cur) const;
        ///
-       void getSelection(int & scol, int & ecol,
-                         int & srow, int & erow) const;
+       void getSelection(LCursor & cur,
+               int & rs, int & re, int & cs, int & ce) const;
        ///
-       WordLangTuple selectNextWordInt(BufferView *, float & value) const;
-       ///
-       bool insertAsciiString(BufferView *, std::string const & buf, bool usePaste);
+       bool insertAsciiString(BufferView &, std::string const & buf, bool usePaste);
+       /// are we operating on several cells?
+       bool tablemode(LCursor & cur) const;
 
-       //
-       // Private structures and variables
-       ///
-       InsetText * the_locking_inset;
-       ///
-       InsetText * old_locking_inset;
        ///
        Buffer const * buffer_;
        ///
        mutable int cursorx_;
        ///
-       mutable int cursory_;
-       ///
-       mutable unsigned int inset_x;
-       ///
-       mutable unsigned int inset_y;
-       /// true if a set of cells are selected
-       mutable bool has_selection;
-       /// the starting cell selection nr
-       mutable int sel_cell_start;
-       /// the ending cell selection nr
-       mutable int sel_cell_end;
-       ///
-       mutable int actcell;
-       ///
-       mutable int oldcell;
-       ///
-       mutable int actcol;
-       ///
-       mutable int actrow;
-       ///
        mutable int first_visible_cell;
-       ///
-       bool no_selection;
-       ///
-       mutable bool locked;
-       ///
-       mutable int in_reset_pos;
 };
 
 
@@ -343,8 +205,8 @@ public:
        virtual std::string const & name() const { return name_; }
        ///
        virtual std::string const inset2string(Buffer const &) const;
-       /// Returns the active cell if successful, else -1.
-       static int string2params(std::string const &, InsetTabular &);
+       ///
+       static void string2params(std::string const &, InsetTabular &);
        ///
        static std::string const params2string(InsetTabular const &);
 private: