]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettabular.h
prepare for 1.1.6pre2
[lyx.git] / src / insets / insettabular.h
index fe59d089ba156e5fb23a711732efc6058af68333..f9d8396978d1e247f87babad3462af72dc0c0b95 100644 (file)
@@ -4,7 +4,7 @@
  * 
  *           LyX, The Document Processor
  *
- *           Copyright (C) 1995-2000 The LyX Team.
+ *           Copyright 1995-2000 The LyX Team.
  *
  *======================================================
  */
 #include "tabular.h"
 #include "LString.h"
 #include "lyxcursor.h"
+#include "lyxfunc.h"
+#include <sigc++/signal_system.h>
+
+#ifdef SIGC_CXX_NAMESPACES
+using SigC::Signal0;
+#endif
 
 class LyXLex;
 class Painter;
@@ -62,29 +68,38 @@ class Buffer;
 class InsetTabular : public UpdatableInset {
 public:
     ///
-    InsetTabular(Buffer *, int rows=1, int columns=1);
+    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 *);
+    InsetTabular(InsetTabular const &, Buffer const &);
     ///
     ~InsetTabular();
     ///
-    Inset * Clone() const;
+    Inset * Clone(Buffer const &) const;
     ///
     void Read(Buffer const *, LyXLex &);
     ///
     void Write(Buffer const *, std::ostream &) const;
     ///
-    int ascent(Painter &, LyXFont const &) const;
+    int ascent(BufferView *, LyXFont const &) const;
     ///
-    int descent(Painter &, LyXFont const &) const;
+    int descent(BufferView *, LyXFont const &) const;
     ///
-    int width(Painter &, LyXFont const & f) const;
+    int width(BufferView *, LyXFont const & f) const;
     ///
-    void draw(BufferView *, const LyXFont &, int , float &) const;
+    void draw(BufferView *, const LyXFont &, int , float &, bool) const;
     ///
-    void update(BufferView *, LyXFont const &, bool);
+    void update(BufferView *, LyXFont const &, bool = false);
     ///
-    const char * EditMessage() const;
+    string const EditMessage() const;
     ///
     void Edit(BufferView *, int x, int y, unsigned int);
     ///
@@ -92,15 +107,15 @@ public:
     ///
     void InsetUnlock(BufferView *);
     ///
-    void UpdateLocal(BufferView *, bool what, bool mark_dirty);
+    void UpdateLocal(BufferView *, UpdateCodes, bool mark_dirty) const;
     ///
     bool LockInsetInInset(BufferView *, UpdatableInset *);
     ///
-    bool UnlockInsetInInset(BufferView *, UpdatableInset *, bool lr=false);
+    bool UnlockInsetInInset(BufferView *, UpdatableInset *, bool lr = false);
     ///
     bool UpdateInsetInInset(BufferView *, Inset *);
     ///
-    int InsetInInsetY();
+    unsigned int InsetInInsetY();
     ///
     UpdatableInset * GetLockingInset();
     ///
@@ -108,6 +123,8 @@ public:
     ///
     bool InsertInset(BufferView *, Inset *);
     ///
+    bool IsTextInset() const { return true; }
+    ///
     bool display() const { return tabular->IsLongTabular(); }
     ///
     void InsetButtonRelease(BufferView *, int, int, int);
@@ -122,7 +139,7 @@ public:
     ///
     int Latex(Buffer const *, std::ostream &, bool, bool) const;
     ///
-    int Ascii(Buffer const *, std::ostream &) const;
+    int Ascii(Buffer const *, std::ostream &, int linelen) const;
     ///
     int Linuxdoc(Buffer const *, std::ostream &) const;
     ///
@@ -136,86 +153,130 @@ public:
     ///
     void ToggleInsetCursor(BufferView *);
     ///
-    void TabularFeatures(BufferView * bv, int feature, string val="");
+    bool TabularFeatures(BufferView * bv, string const & what);
+    ///
+    void TabularFeatures(BufferView * bv, LyXTabular::Feature feature,
+                        string const & val = string());
     ///
-    int GetActCell() { return actcell; }
+    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; }
-
+    Buffer * BufferOwner() const { return const_cast<Buffer *>(buffer); }
+    ///
+    LyXText * getLyXText(BufferView *) const;
+    ///
+    void resizeLyXText(BufferView *) const;
     ///
-    /// Public structures and variables
+    void OpenLayoutDialog(BufferView *) const;
+    ///
+    LyXFunc::func_status getStatus(string const & argument) const;
+
+    //
+    // Public structures and variables
     ///
     LyXTabular * tabular;
+       ///
+       Signal0<void> hideDialog;
 
 private:
-    bool calculate_dimensions_of_cells(BufferView *, LyXFont const &, bool =false) const;
     ///
-    void DrawCellLines(Painter &, int x, int baseline, int row, int cell)
-           const;
+    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 ShowInsetCursor(BufferView *, bool show=true);
     ///
     void HideInsetCursor(BufferView *);
     ///
-    void setPos(Painter &, int x, int y) const;
+    void setPos(BufferView *, int x, int y) const;
+    ///
+    UpdatableInset::RESULT moveRight(BufferView *, bool lock = true);
     ///
-    bool SetCellDimensions(Painter & pain, int cell, int row);
+    UpdatableInset::RESULT moveLeft(BufferView *, bool lock = true);
     ///
-    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(Painter &) const;
+    ///
+    void resetPos(BufferView *) const;
     ///
     void RemoveTabularRow();
     ///
-    bool hasSelection() const {return ((sel_pos_start != sel_pos_end) ||
+    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,
+    void clearSelection() const {
+       sel_pos_start = sel_pos_end = sel_cell_start = sel_cell_end = 0;
+    }
+    ///
+    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;
     ///
-    void recomputeTextInsets(BufferView *, const LyXFont &) const;
-
-    ///
-    /// Private structures and variables
-    ///
-    InsetText
-        * the_locking_inset;
-    Buffer
-        * buffer;
-    mutable LyXCursor
-        cursor,
-       old_cursor;
-    mutable int
-        inset_pos,
-        inset_x, inset_y,
-        sel_pos_start,
-       sel_pos_end,
-       sel_cell_start,
-       sel_cell_end,
-        actcell,
-       oldcell,
-        actcol,
-        actrow;
+    bool hasPasteBuffer() const;
+    ///
+    bool copySelection(BufferView *);
+    ///
+    bool pasteSelection(BufferView *);
+    ///
+    bool cutSelection();
+
+    //
+    // Private structures and variables
+    ///
+    InsetText * the_locking_inset;
+    ///
+    Buffer const * buffer;
+    ///
+    mutable LyXCursor cursor;
+    ///
+    mutable LyXCursor old_cursor;
+    ///
+    mutable LyXParagraph::size_type inset_pos;
+    ///
+    mutable unsigned int inset_x;
+    ///
+    mutable unsigned int inset_y;
+    ///
+    mutable LyXParagraph::size_type sel_pos_start;
+    ///
+    mutable LyXParagraph::size_type 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 bool init_inset;
+    ///
+    mutable UpdateCodes need_update;
 };
 #endif