]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettabular.h
fix #832
[lyx.git] / src / insets / insettabular.h
index 64191fa33bc0d7fdb4a22a596ac8d6c2ff2a0f30..b1992c9ccadb16782fcc5ffbd7bf8eebfad9b231 100644 (file)
@@ -1,12 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insettabular.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1995-2000 The LyX Team.
+ * \author Jürgen Vigna
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 // This is the rewrite of the tabular (table) support.
 
 #ifndef INSETTABULAR_H
 #define INSETTABULAR_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "lyxinset.h"
+#include "inset.h"
 #include "tabular.h"
 #include "LString.h"
 #include "lyxcursor.h"
-#include "lyxfunc.h"
+#include "FuncStatus.h"
+
+#include <boost/scoped_ptr.hpp>
+#include <boost/weak_ptr.hpp>
 
 class LyXLex;
 class Painter;
 class BufferView;
 class Buffer;
-class Dialogs;
+class BufferParams;
+class Paragraph;
 
 class InsetTabular : public UpdatableInset {
 public:
-    ///
-    enum UpdateCodes {
-       NONE = 0,
-       INIT,
-       FULL,
-       CELL,
-       CURSOR,
-       SELECTION
-    };
-    ///
-    InsetTabular(Buffer *, int rows = 1, int columns = 1);
-    ///
-    InsetTabular(InsetTabular const &, Buffer *);
-    ///
-    ~InsetTabular();
-    ///
-    Inset * Clone() const;
-    ///
-    void Read(Buffer const *, LyXLex &);
-    ///
-    void Write(Buffer const *, std::ostream &) const;
-    ///
-    int ascent(BufferView *, LyXFont const &) const;
-    ///
-    int descent(BufferView *, LyXFont const &) const;
-    ///
-    int width(BufferView *, LyXFont const & f) const;
-    ///
-    void draw(BufferView *, const LyXFont &, int , float &, bool) const;
-    ///
-    void update(BufferView *, LyXFont const &, bool = false);
-    ///
-    string const EditMessage() const;
-    ///
-    void Edit(BufferView *, int x, int y, unsigned int);
-    ///
-    bool doClearArea() const { return !locked; };
-    ///
-    void InsetUnlock(BufferView *);
-    ///
-    void UpdateLocal(BufferView *, UpdateCodes, bool mark_dirty) const;
-    ///
-    bool LockInsetInInset(BufferView *, UpdatableInset *);
-    ///
-    bool UnlockInsetInInset(BufferView *, UpdatableInset *, bool lr = false);
-    ///
-    bool UpdateInsetInInset(BufferView *, Inset *);
-    ///
-    int InsetInInsetY();
-    ///
-    UpdatableInset * GetLockingInset();
-    ///
-    UpdatableInset * GetFirstLockingInsetOfType(Inset::Code);
-    ///
-    bool InsertInset(BufferView *, Inset *);
-    ///
-    bool IsTextInset() const { return true; }
-    ///
-    bool display() const { return tabular->IsLongTabular(); }
-    ///
-    void InsetButtonRelease(BufferView *, int, int, int);
-    ///
-    void InsetButtonPress(BufferView *, int, int, int);
-    ///
-    void InsetMotionNotify(BufferView *, int, int, int);
-    ///
-    void InsetKeyPress(XKeyEvent *);
-    ///
-    UpdatableInset::RESULT LocalDispatch(BufferView *, int, string const &);
-    ///
-    int Latex(Buffer const *, std::ostream &, bool, bool) const;
-    ///
-    int Ascii(Buffer const *, std::ostream &) const;
-    ///
-    int Linuxdoc(Buffer const *, std::ostream &) const;
-    ///
-    int DocBook(Buffer const *, std::ostream &) const;
-    ///
-    void Validate(LaTeXFeatures & features) const;
-    ///
-    Inset::Code LyxCode() const { return Inset::TABULAR_CODE; }
-    ///
-    void GetCursorPos(BufferView *, int & x, int & y) const;
-    ///
-    void ToggleInsetCursor(BufferView *);
-    ///
-    bool TabularFeatures(BufferView * bv, string const & what);
-    ///
-    void TabularFeatures(BufferView * bv, int feature,
-                        string const & val = string());
-    ///
-    int GetActCell() const { return actcell; }
-    ///
-    void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
-    ///
-    int getMaxWidth(Painter & pain, UpdatableInset const *) const;
-    ///
-    Buffer * BufferOwner() const { return buffer; }
-    ///
-    LyXText * getLyXText(BufferView *) const;
-    ///
-    void resizeLyXText(BufferView *) const;
-    ///
-    void OpenLayoutDialog(BufferView *) const;
-    ///
-    LyXFunc::func_status getStatus(string const & argument) const;
+       ///
+       enum UpdateCodes {
+               NONE = 0,
+               CURSOR = 1,
+               CELL = 2,
+               SELECTION = 3,
+               FULL = 4,
+               INIT = 5
+       };
+       ///
+       InsetTabular(Buffer const &, int rows = 1, int columns = 1);
+       ///
+       InsetTabular(InsetTabular const &, Buffer const &, bool same_id = false);
+       ///
+       ~InsetTabular();
+       ///
+       Inset * clone(Buffer const &, bool same_id = false) const;
+       ///
+       void read(Buffer const *, LyXLex &);
+       ///
+       void write(Buffer const *, std::ostream &) const;
+       ///
+       int ascent(BufferView *, LyXFont const &) const;
+       ///
+       int descent(BufferView *, LyXFont const &) const;
+       ///
+       int width(BufferView *, LyXFont const & f) const;
+       ///
+       void draw(BufferView *, const LyXFont &, int , float &) const;
+       ///
+       void update(BufferView *, bool = false);
+       ///
+       string const editMessage() const;
+       //
+       void insetUnlock(BufferView *);
+       ///
+       void updateLocal(BufferView *, UpdateCodes) const;
+       ///
+       bool lockInsetInInset(BufferView *, UpdatableInset *);
+       ///
+       bool unlockInsetInInset(BufferView *, UpdatableInset *,
+                               bool lr = false);
+       ///
+       bool updateInsetInInset(BufferView *, Inset *);
+       ///
+       int insetInInsetY() const;
+       ///
+       UpdatableInset * getLockingInset() const;
+       ///
+       UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
+       ///
+       bool insertInset(BufferView *, Inset *);
+       ///
+       bool insetAllowed(Inset::Code code) const;
+       ///
+       bool isTextInset() 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 */
+       bool noFontChange() const { return true; }
+       ///
+       bool display() const { return tabular->IsLongTabular(); }
+       ///
+       RESULT localDispatch(FuncRequest const &);
+       ///
+       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       ///
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       ///
+       int linuxdoc(Buffer const *, std::ostream &) const;
+       ///
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
+       ///
+       Inset::Code lyxCode() const { return Inset::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;
+       ///
+       bool tabularFeatures(BufferView * bv, string const & what);
+       ///
+       void tabularFeatures(BufferView * bv, LyXTabular::Feature feature,
+                            string const & val = string());
+       ///
+       int getActCell() const { return actcell; }
+       ///
+       void setFont(BufferView *, LyXFont const &, bool toggleall = false,
+                    bool selectall = false);
+       ///
+       int getMaxWidth(BufferView *, UpdatableInset const *) const;
+       ///
+       Buffer * bufferOwner() const { return const_cast<Buffer *>(buffer); }
+       ///
+       LyXText * getLyXText(BufferView const *,
+                            bool const recursive = false) const;
+       ///
+       void deleteLyXText(BufferView *, bool recursive = true) const;
+       ///
+       void resizeLyXText(BufferView *, bool force = false) const;
+       ///
+       void openLayoutDialog(BufferView *) const;
+       ///
+       bool showInsetDialog(BufferView *) const;
+       ///
+       FuncStatus getStatus(string const & argument) const;
+       ///
+       std::vector<string> const getLabelList() const;
+       ///
+       void nodraw(bool b) const {
+               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);
+       }
+       ///
+       Inset * getInsetFromID(int id) const;
+       ///
+       ParagraphList * getParagraphs(int) const;
+       ///
+       LyXCursor const & cursor(BufferView *) const;
+       ///
+       bool allowSpellcheck() const { return true; }
+       ///
+       WordLangTuple const
+       selectNextWordToSpellcheck(BufferView *, float & value) const;
+       ///
+       void selectSelectedWord(BufferView *);
+       ///
+       void toggleSelection(BufferView *, bool kill_selection);
+
+       void markErased();
+
+       /// find next change
+       bool nextChange(BufferView *, lyx::pos_type & length);
+       ///
+       bool searchForward(BufferView *, string const &,
+                          bool = true, bool = false);
+       bool searchBackward(BufferView *, string const &,
+                           bool = true, bool = false);
 
-    //
-    // Public structures and variables
-    ///
-    LyXTabular * tabular;
+       // this should return true if we have a "normal" cell, otherwise true.
+       // "normal" means without width set!
+       bool forceDefaultParagraphs(Inset const * in) const;
 
+       ///
+       void addPreview(grfx::PreviewLoader &) const;
+
+       //
+       // Public structures and variables
+       ///
+       boost::scoped_ptr<LyXTabular> tabular;
+
+       /// are some cells selected ?
+       bool hasSelection() const {
+               return has_selection;
+       }
+
+       ///
+       virtual BufferView * view() const;
 private:
-    ///
-    bool calculate_dimensions_of_cells(BufferView *, LyXFont const &,
-                                      bool = false) 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 ShowInsetCursor(BufferView *);
-    ///
-    void HideInsetCursor(BufferView *);
-    ///
-    void setPos(BufferView *, int x, int y) const;
-    ///
-    UpdatableInset::RESULT moveRight(BufferView *, bool lock = true);
-    ///
-    UpdatableInset::RESULT moveLeft(BufferView *, bool lock = true);
-    ///
-    UpdatableInset::RESULT moveUp(BufferView *);
-    ///
-    UpdatableInset::RESULT moveDown(BufferView *);
-    ///
-    bool moveNextCell(BufferView *);
-    ///
-    bool movePrevCell(BufferView *);
-    ///
-    bool Delete();
-    ///
-    int getCellXPos(int cell) const;
-    ///
-    void resetPos(BufferView *) const;
-    ///
-    void RemoveTabularRow();
-    ///
-    bool hasSelection() const { return ((sel_pos_start != sel_pos_end) ||
-                                      (sel_cell_start != sel_cell_end));}
-    ///
-    bool ActivateCellInset(BufferView *, int x = 0, int y = 0, int button = 0,
-                          bool behind = false);
-    ///
-    bool InsetHit(BufferView * bv, int x, int y) const;
-    ///
-    int GetMaxWidthOfCell(Painter &, int cell) const;
-    ///
-    bool hasPasteBuffer() const;
-    ///
-    bool copySelection();
-    ///
-    bool pasteSelection(BufferView *);
-    ///
-    bool cutSelection();
+       ///
+       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 &);
+       ///
+       bool calculate_dimensions_of_cells(BufferView *, bool = false) 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;
+       ///
+       void setPos(BufferView *, int x, int y) const;
+       ///
+       RESULT moveRight(BufferView *, bool lock = true);
+       ///
+       RESULT moveLeft(BufferView *, bool lock = true);
+       ///
+       RESULT moveUp(BufferView *, bool lock = true);
+       ///
+       RESULT moveDown(BufferView *, bool lock = true);
+       ///
+       bool moveNextCell(BufferView *, bool lock = false);
+       ///
+       bool movePrevCell(BufferView *, bool lock = false);
+       ///
+       int getCellXPos(int cell) const;
+       ///
+       void resetPos(BufferView *) 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 activateCellInsetAbs(BufferView *, int x = 0, int y = 0,
+                                 mouse_button::state button = mouse_button::none);
+       ///
+       bool insetHit(BufferView * bv, int x, int y) const;
+       ///
+       int getMaxWidthOfCell(BufferView * bv, int cell) const;
+       ///
+       bool hasPasteBuffer() const;
+       ///
+       bool copySelection(BufferView *);
+       ///
+       bool pasteSelection(BufferView *);
+       ///
+       bool cutSelection(BufferParams const & bp);
+       ///
+       bool isRightToLeft(BufferView *);
+       ///
+       void getSelection(int & scol, int & ecol,
+                         int & srow, int & erow) const;
+       ///
+       WordLangTuple selectNextWordInt(BufferView *, float & value) const;
+       ///
+       bool insertAsciiString(BufferView *, string const & buf, bool usePaste);
 
-    //
-    // Private structures and variables
-    ///
-    InsetText * the_locking_inset;
-    ///
-    Buffer * buffer;
-    ///
-    mutable LyXCursor cursor;
-    ///
-    mutable LyXCursor old_cursor;
-    ///
-    mutable int inset_pos;
-    ///
-    mutable int inset_x;
-    ///
-    mutable int inset_y;
-    ///
-    mutable int sel_pos_start;
-    ///
-    mutable int sel_pos_end;
-    ///
-    mutable int sel_cell_start;
-    ///
-    mutable int sel_cell_end;
-    ///
-    mutable int actcell;
-    ///
-    mutable int oldcell;
-    ///
-    mutable int actcol;
-    ///
-    mutable int actrow;
-    ///
-    bool no_selection;
-    ///
-    mutable bool locked;
-    ///
-    mutable UpdateCodes need_update;
-    ///
-    mutable Dialogs * dialogs_;
+       //
+       // Private structures and variables
+       ///
+       InsetText * the_locking_inset;
+       ///
+       InsetText * old_locking_inset;
+       ///
+       Buffer const * buffer;
+       ///
+       mutable LyXCursor cursor_;
+       ///
+       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 UpdateCodes need_update;
+       ///
+       bool in_update;
+       ///
+       mutable int in_reset_pos;
 };
+
+
+#include "mailinset.h"
+
+
+class InsetTabularMailer : public MailInset {
+public:
+       ///
+       InsetTabularMailer(InsetTabular & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual string const & name() const { return name_; }
+       ///
+       virtual string const inset2string() const;
+       /// Returns the active cell if successful, else -1.
+       static int string2params(string const &, InsetTabular &);
+       ///
+       static string const params2string(InsetTabular const &);
+private:
+       ///
+       static string const name_;
+       ///
+       InsetTabular & inset_;
+};
+
+string const featureAsString(LyXTabular::Feature feature);
+
 #endif