]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettabular.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettabular.h
index 1849f8b407ff4e045ce77247a41063b50523333f..21c7a728fa05cdd924df6f3402e71d32007f97d4 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
 
 #include "inset.h"
 #include "tabular.h"
+#include "mailinset.h"
 
-#include "frontends/mouse_state.h"
-
+namespace lyx {
 
 class FuncStatus;
 class LyXLex;
-class Painter;
 class BufferView;
 class Buffer;
 class BufferParams;
 class Paragraph;
 class CursorSlice;
 
+namespace frontend { class Painter; }
 
-class InsetTabular : public UpdatableInset {
+class InsetTabular : public InsetOld {
 public:
        ///
-       InsetTabular(Buffer const &, int rows = 1, int columns = 1);
-       ///
-       InsetTabular(InsetTabular const &);
+       InsetTabular(Buffer const &, row_type rows = 1,
+                    col_type columns = 1);
        ///
        ~InsetTabular();
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
        void read(Buffer const &, LyXLex &);
        ///
        void write(Buffer const &, std::ostream &) const;
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       bool metrics(MetricsInfo &, Dimension &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       std::string const editMessage() const;
+       void drawSelection(PainterInfo & pi, int x, int y) const;
+       ///
+       virtual docstring const editMessage() const;
+       ///
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       void updateLocal(LCursor & cur) const;
+       bool insetAllowed(InsetBase::Code) const { return true; }
        ///
-       bool insetAllowed(InsetOld::Code) const { return true; }
+       bool allowSpellCheck() const { return true; }
        ///
-       bool isTextInset() const { return true; }
+       bool canTrackChanges() const { return true; }
        /** returns true if, when outputing LaTeX, font changes should
            be closed before generating this inset. This is needed for
            insets that may contain several paragraphs */
@@ -94,23 +82,21 @@ public:
        ///
        bool display() const { return tabular.isLongTabular(); }
        ///
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, std::ostream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const &, std::ostream &,
-                    OutputParams const &) const;
-       ///
-       int docbook(Buffer const &, std::ostream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::TABULAR_CODE; }
-       /// get the absolute screen x,y of the cursor
-       void getCursorPos(int cell, int & x, int & y) const;
+       Code lyxCode() const { return InsetBase::TABULAR_CODE; }
+       /// get offset of this cursor slice relative to our upper left corner
+       void cursorPos(BufferView const & bv, CursorSlice const & sl,
+               bool boundary, int & x, int & y) const;
        ///
        bool tabularFeatures(LCursor & cur, std::string const & what);
        ///
@@ -120,36 +106,39 @@ public:
        void openLayoutDialog(BufferView *) const;
        ///
        bool showInsetDialog(BufferView *) const;
+       /// number of cells
+       size_t nargs() const { return tabular.getNumberOfCells(); }
        ///
-       FuncStatus getStatus(std::string const & argument, int cell) const;
-       /// Appends \c list with all labels found within this inset.
-       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
+       boost::shared_ptr<InsetText const> cell(idx_type) const;
        ///
-       int numParagraphs() const;
+       boost::shared_ptr<InsetText> cell(idx_type);
        ///
        LyXText * getText(int) const;
 
-       ///
-       void markErased();
+       /// set the change for the entire inset
+       void setChange(Change const & change);
+       /// accept the changes within the inset
+       void acceptChanges();
+       /// reject the changes within the inset
+       void rejectChanges();
 
-       // this should return true if we have a "normal" cell, otherwise true.
+       // this should return true if we have a "normal" cell, otherwise false.
        // "normal" means without width set!
-       bool forceDefaultParagraphs(InsetOld const * in) const;
+       /// should all paragraphs be output with "Standard" layout?
+       bool forceDefaultParagraphs(idx_type cell = 0) const;
 
        ///
-       void addPreview(lyx::graphics::PreviewLoader &) const;
+       void addPreview(graphics::PreviewLoader &) const;
 
-       /// are some cells selected ?
-       bool hasSelection() const { return has_selection; }
        ///
        Buffer const & buffer() const;
 
        /// set the owning buffer
-       void buffer(Buffer * buf);
+       void buffer(Buffer const * buf);
        /// lock cell with given index
-       void edit(LCursor & cur, bool);
+       void edit(LCursor & cur, bool left);
        ///
-       void edit(LCursor & cur, int, int);
+       InsetBase * editXY(LCursor & cur, int x, int y);
        /// can we go further down on mouse click?
        bool descendable() const { return true; }
 
@@ -160,108 +149,63 @@ public:
 
 protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(LCursor & cur, FuncRequest const & cmd);
-private:
-       ///
-       void lfunMousePress(LCursor & cur, FuncRequest const & cmd);
-       ///
-       void lfunMouseRelease(LCursor & cur, FuncRequest const & cmd);
-       ///
-       void lfunMouseMotion(LCursor & cur, FuncRequest const & cmd);
-       ///
-       void calculate_dimensions_of_cells(MetricsInfo & mi) 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 setPos(BufferView &, int x, int y) const;
-       ///
-       bool moveRight(LCursor & cur);
+       InsetTabular(InsetTabular const &);
        ///
-       bool moveLeft(LCursor & cur);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       bool moveUp(LCursor & cur);
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
        ///
-       bool moveDown(LCursor & cur);
+       int scroll() const { return scx_; }
+
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 
        ///
-       bool moveRightLock(LCursor & cur);
-       ///
-       bool moveLeftLock(LCursor & cur);
-       ///
-       bool moveUpLock(LCursor & cur);
+       void drawCellLines(frontend::Painter &, int x, int y, row_type row,
+                          idx_type cell, bool erased) const;
        ///
-       bool moveDownLock(LCursor & cur);
+       void setCursorFromCoordinates(LCursor & cur, int x, int y) const;
 
        ///
-       bool moveNextCell(LCursor & cur);
+       void moveNextCell(LCursor & cur);
        ///
-       bool movePrevCell(LCursor & cur);
-
-
+       void movePrevCell(LCursor & cur);
        ///
-       int getCellXPos(int cell) const;
+       int getCellXPos(idx_type cell) const;
        ///
        void resetPos(LCursor & cur) const;
        ///
        void removeTabularRow();
        ///
-       void clearSelection() const;
-       ///
-       void setSelection(int start, int end) const;
-       ///
-       void activateCellInset(LCursor &, int cell, int x, int y);
-       ///
-       void activateCellInset(LCursor &, int cell, bool behind);
-       ///
-       bool hasPasteBuffer() const;
+       bool copySelection(LCursor & cur);
        ///
-       bool copySelection(BufferView &);
+       bool pasteSelection(LCursor & cur);
        ///
-       bool pasteSelection(BufferView &);
+       void cutSelection(LCursor & cur);
        ///
-       bool cutSelection(BufferParams const & bp);
+       bool isRightToLeft(LCursor & cur) const;
        ///
-       bool isRightToLeft(LCursor & cur);
+       void getSelection(LCursor & cur, row_type & rs, row_type & re,
+                         col_type & cs, col_type & ce) const;
        ///
-       void getSelection(int cell,
-               int & scol, int & ecol, int & srow, int & erow) const;
-       ///
-       bool insertAsciiString(BufferView &, std::string const & buf, bool usePaste);
+       bool insertPlaintextString(BufferView &, docstring const & buf, bool usePaste);
+       /// are we operating on several cells?
+       bool tablemode(LCursor & cur) const;
+
+       /// return the "Manhattan distance" to nearest corner
+       int dist(BufferView &, idx_type cell, int x, int y) const;
+       /// return the cell nearest to x, y
+       idx_type getNearestCell(BufferView &, int x, int y) const;
 
-       //
-       // Private structures and variables
        ///
        Buffer const * buffer_;
        ///
-       mutable int cursorx_;
-       ///
-       mutable int cursory_;
-       /// 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 first_visible_cell;
+       mutable idx_type first_visible_cell;
        ///
-       mutable int in_reset_pos;
-       /// tablemode == true  means we operate on the table as such,
-       // i.e. select cells instead of characters in a cell etc.
-       // tablemode == false directs most LFUN handling to the 'current' cell.
-       mutable bool tablemode;
+       mutable int scx_;
 };
 
 
-#include "mailinset.h"
-
-
 class InsetTabularMailer : public MailInset {
 public:
        ///
@@ -272,8 +216,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:
@@ -285,4 +229,6 @@ private:
 
 std::string const featureAsString(LyXTabular::Feature feature);
 
+} // namespace lyx
+
 #endif