X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettabular.h;h=21c7a728fa05cdd924df6f3402e71d32007f97d4;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=54e279e3d2ce14a1475b2041ef95b742401fefab;hpb=59413be9a0b999c17784d1abad01e55819ecd27a;p=lyx.git diff --git a/src/insets/insettabular.h b/src/insets/insettabular.h index 54e279e3d2..21c7a728fa 100644 --- a/src/insets/insettabular.h +++ b/src/insets/insettabular.h @@ -34,21 +34,25 @@ #include "inset.h" #include "tabular.h" +#include "mailinset.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(Buffer const &, row_type rows = 1, + col_type columns = 1); /// ~InsetTabular(); /// @@ -56,15 +60,21 @@ public: /// 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; } /// bool insetAllowed(InsetBase::Code) const { return true; } /// - bool isTextInset() const { return true; } + bool allowSpellCheck() 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 */ @@ -72,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; /// 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; + /// 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); /// @@ -98,26 +106,29 @@ public: void openLayoutDialog(BufferView *) const; /// bool showInsetDialog(BufferView *) const; - /// Appends \c list with all labels found within this inset. - void getLabelList(Buffer const &, std::vector & list) const; /// number of cells - size_t nargs() const; + size_t nargs() const { return tabular.getNumberOfCells(); } /// - boost::shared_ptr cell(int) const; + boost::shared_ptr cell(idx_type) const; /// - boost::shared_ptr cell(int); + boost::shared_ptr 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(InsetBase 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; /// Buffer const & buffer() const; @@ -127,7 +138,7 @@ public: /// lock cell with given index void edit(LCursor & cur, bool left); /// - InsetBase * editXY(LCursor & cur, int x, int y) const; + InsetBase * editXY(LCursor & cur, int x, int y); /// can we go further down on mouse click? bool descendable() const { return true; } @@ -137,36 +148,35 @@ public: mutable LyXTabular tabular; protected: + /// InsetTabular(InsetTabular const &); /// - void priv_dispatch(LCursor & cur, FuncRequest & cmd); + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); /// bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const; + /// + int scroll() const { return scx_; } + private: virtual std::auto_ptr doClone() const; /// - void drawCellLines(Painter &, int x, int baseline, - int row, int cell) const; - /// - void drawCellSelection(PainterInfo &, int x, int baseline, - int row, int column, int cell) const; + void drawCellLines(frontend::Painter &, int x, int y, row_type row, + idx_type cell, bool erased) const; /// - InsetBase * setPos(LCursor & cur, int x, int y) const; + void setCursorFromCoordinates(LCursor & cur, int x, int y) const; /// void moveNextCell(LCursor & cur); /// void movePrevCell(LCursor & cur); /// - int getCellXPos(int cell) const; + int getCellXPos(idx_type cell) const; /// void resetPos(LCursor & cur) const; /// void removeTabularRow(); /// - bool hasPasteBuffer() const; - /// bool copySelection(LCursor & cur); /// bool pasteSelection(LCursor & cur); @@ -175,25 +185,27 @@ private: /// bool isRightToLeft(LCursor & cur) const; /// - void getSelection(LCursor & cur, - int & rs, int & re, int & cs, int & ce) const; + void getSelection(LCursor & cur, row_type & rs, row_type & re, + col_type & cs, col_type & ce) 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; + /// Buffer const * buffer_; /// - mutable int cursorx_; + mutable idx_type first_visible_cell; /// - mutable int first_visible_cell; + mutable int scx_; }; -#include "mailinset.h" - - class InsetTabularMailer : public MailInset { public: /// @@ -217,4 +229,6 @@ private: std::string const featureAsString(LyXTabular::Feature feature); +} // namespace lyx + #endif