]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettext.h
index d7d80b0c1b6e547525d2f8e121befd89096f89e7..a2dd9f98a993545f27db2a944adb93e8df52160f 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *           Copyright 1998 The LyX Team.
+/**
+ * \file insettext.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
+ * \author Jürgen Vigna
  *
- *======================================================
+ * Full author contact details are available in file CREDITS.
  */
-// The pristine updatable inset: Text
-
 
 #ifndef INSETTEXT_H
 #define INSETTEXT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "inset.h"
-#include "LString.h"
-#include "LColor.h"
-#include "paragraph.h"
-#include "lyxcursor.h"
+#include "RowList_fwd.h"
+#include "lyxfont.h"
+#include "lyxtext.h"
+#include "ParagraphList_fwd.h"
 
-#include <boost/smart_ptr.hpp>
+#include "support/types.h"
+
+#include "frontends/mouse_state.h"
+
+
+namespace lyx {
 
-class Painter;
-class BufferView;
 class Buffer;
 class BufferParams;
-class LyXCursor;
-class LyXText;
-class LyXScreen;
-class Row;
+class BufferView;
+class CursorSlice;
+class Dimension;
+class LColor_color;
+
 
 /**
  A text inset is like a TeX box to write full text
  (including styles and other insets) in a given space.
- @author: Jürgen Vigna
  */
-class InsetText : public UpdatableInset {
+class InsetText : public InsetOld {
 public:
        ///
-       /// numbers need because of test if codeA < codeB
-       ///
-       enum UpdateCodes {
-               ///
-               NONE = 0,
-               ///
-               CURSOR = 1,
-               ///
-               CLEAR_FRAME = 2,
-               ///
-               DRAW_FRAME = 4,
-               ///
-               SELECTION = 8,
-               ///
-               CURSOR_PAR = 16,
-               ///
-               FULL = 32,
-               ///
-               INIT = 64
-       };
-       ///
-       enum DrawFrame {
-               ///
-               NEVER = 0,
-               ///
-               LOCKED,
-               ///
-               ALWAYS
-       };
-       ///
-       InsetText(BufferParams const &);
-       ///
-       explicit
-       InsetText(InsetText const &, bool same_id = false);
-       ///
-       ~InsetText();
-       ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
-       InsetText & operator=(InsetText const & it);
+       explicit InsetText(BufferParams const &);
        ///
+       InsetText();
+       /// empty inset to empty par
        void clear();
        ///
-       void read(Buffer const *, LyXLex &);
-       ///
-       void write(Buffer const *, std::ostream &) const;
-       ///
-       int ascent(BufferView *, LyXFont const &) const;
-       ///
-       int descent(BufferView *, LyXFont const &) const;
+       void read(Buffer const & buf, LyXLex & lex);
        ///
-       int width(BufferView *, LyXFont const & f) const;
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       int textWidth(BufferView *, bool fordraw = false) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(BufferView *, LyXFont const &, int , float &, bool) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+       /// draw inset selection
+       void drawSelection(PainterInfo & pi, int x, int y) const;
+       /// are we inside the area covered by the inset?
+       virtual bool covers(BufferView const & bv, int x, int y) const;
        ///
-       void update(BufferView *, LyXFont const &, bool = false);
+       virtual docstring const editMessage() const;
        ///
-       void setUpdateStatus(BufferView *, int what) const;
+       EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       string const editMessage() const;
+       bool canTrackChanges() const { return true; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
+       InsetText const * asTextInset() const { return this; }
        ///
-       void edit(BufferView *, bool front = true);
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       bool isTextInset() const { return true; }
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       bool doClearArea() const;
-       ///
-       void insetUnlock(BufferView *);
-       ///
-       bool lockInsetInInset(BufferView *, UpdatableInset *);
-       ///
-       bool unlockInsetInInset(BufferView *,
-                               UpdatableInset *, bool lr = false);
-       ///
-       bool updateInsetInInset(BufferView *, Inset *);
-       ///
-       bool insetButtonRelease(BufferView *, int, int, int);
-       ///
-       void insetButtonPress(BufferView *, int, int, int);
-       ///
-       void insetMotionNotify(BufferView *, int, int, int);
-       ///
-       void insetKeyPress(XKeyEvent *);
-       ///
-       UpdatableInset::RESULT localDispatch(BufferView *,
-                                            kb_action, string const &);
-       ///
-       int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
-       ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
-       ///
-       int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
-       ///
-       int docbook(Buffer const *, std::ostream &) const ;
+       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
+
+       /// return x,y of given position relative to the inset's baseline
+       void cursorPos(BufferView const & bv, CursorSlice const & sl,
+               bool boundary, int & x, int & y) const;
        ///
-       Inset::Code lyxCode() const { return Inset::TEXT_CODE; }
-       ///
-       void getCursorPos(BufferView *, int & x, int & y) const;
-       ///
-       unsigned int insetInInsetY();
-       ///
-       void toggleInsetCursor(BufferView *);
-       ///
-       void showInsetCursor(BufferView *, bool show = true);
-       ///
-       void hideInsetCursor(BufferView *);
-       ///
-       void fitInsetCursor(BufferView *) const;
-       ///
-       bool insertInset(BufferView *, Inset *);
-       ///
-       bool insetAllowed(Inset::Code) const;
-       ///
-       UpdatableInset * getLockingInset() const;
-       ///
-       UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
-       ///
-       void setFont(BufferView *, LyXFont const &,
-                    bool toggleall = false,
-                    bool selectall = false);
-       ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
-       ///
-       void init(InsetText const * ins = 0, bool same_id = false);
-       ///
-       void writeParagraphData(Buffer const *, std::ostream &) const;
-       ///
-       void setParagraphData(Paragraph *, bool same_id = false);
+       Code lyxCode() const { return TEXT_CODE; }
        ///
-       void setText(string const &);
+       void setText(docstring const &, LyXFont const &, bool trackChanges);
        ///
        void setAutoBreakRows(bool);
        ///
-       bool getAutoBreakRows() const { return autoBreakRows; }
-       ///
-       void setDrawFrame(BufferView *, DrawFrame);
+       bool getAutoBreakRows() const { return text_.autoBreakRows_; }
        ///
-       void setFrameColor(BufferView *, LColor::color);
+       void setDrawFrame(bool);
        ///
-       LyXText * getLyXText(BufferView const *,
-                            bool const recursive = false) const;
+       LColor_color frameColor() const;
        ///
-       void deleteLyXText(BufferView *, bool recursive = true) const;
-       ///
-       void resizeLyXText(BufferView *, bool force = false) const;
+       void setFrameColor(LColor_color);
        ///
        bool showInsetDialog(BufferView *) const;
        ///
-       std::vector<string> const getLabelList() const;
-       ///
-       bool nodraw() const;
-       ///
-       int scroll(bool recursive = true) const;
-       ///
-       void scroll(BufferView * bv, float sx) const {
-               UpdatableInset::scroll(bv, sx);
+       LyXText * getText(int i) const {
+               return (i == 0) ? const_cast<LyXText*>(&text_) : 0;
        }
        ///
-       void scroll(BufferView * bv, int offset) const {
-               UpdatableInset::scroll(bv, offset);
-       }
-       ///
-       void selectAll(BufferView * bv);
-       ///
-       void clearSelection(BufferView * bv);
-       ///
-       Paragraph * getParFromID(int id) const;
-       ///
-       Inset * getInsetFromID(int id) const;
-       ///
-       Paragraph * firstParagraph() const;
-       ///
-       Paragraph * getFirstParagraph(int) const;
-       ///
-       LyXCursor const & cursor(BufferView *) const;
-       ///
-       Paragraph * paragraph() const;
-       ///
-       void paragraph(Paragraph *);
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+
+       /// 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();
+
+       /// append text onto the existing text
+       void appendParagraphs(Buffer * bp, ParagraphList &);
+
        ///
-       bool allowSpellcheck() { return true; }
+       void addPreview(graphics::PreviewLoader &) const;
+
        ///
-       string const selectNextWordToSpellcheck(BufferView *,
-                                               float & value) const;
-       void selectSelectedWord(BufferView *);
+       void edit(LCursor & cur, bool left);
        ///
-       void toggleSelection(BufferView *, bool kill_selection);
+       InsetBase * editXY(LCursor & cur, int x, int y);
+
+       /// number of cells in this inset
+       size_t nargs() const { return 1; }
        ///
-       bool searchForward(BufferView *, string const &,
-                          bool = true, bool = false);
+       ParagraphList & paragraphs();
        ///
-       bool searchBackward(BufferView *, string const &,
-                           bool = true, bool = false);
+       ParagraphList const & paragraphs() const;
        ///
-       bool checkInsertChar(LyXFont &);
+       bool insetAllowed(Code) const { return true; }
        ///
-       void getDrawFont(LyXFont &) const;
+       bool allowSpellCheck() const { return true; }
+       /// should paragraph indendation be ommitted in any case?
+       bool neverIndent(Buffer const &) const;
        ///
-       void appendParagraphs(BufferParams const & bparams, Paragraph *);
+       InsetText(InsetText const &);
        ///
-       //
-       // Public structures and variables
+       bool wide() const { return wide_inset_; }
        ///
-       mutable int need_update;
+       void setWide(bool wide_inset) { wide_inset_ = wide_inset; }
 
 protected:
        ///
-       void updateLocal(BufferView *, int what, bool mark_dirty) const;
-       ///
-       void lockInset(BufferView *, UpdatableInset *);
-       ///
-       mutable int drawTextXOffset;
-       ///
-       mutable int drawTextYOffset;
-       ///
-       bool autoBreakRows;
-       ///
-       DrawFrame drawFrame_;
-       ///
-       LColor::color frame_color;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 
 private:
        ///
-       struct InnerCache {
-               ///
-               InnerCache(boost::shared_ptr<LyXText>);
-               ///
-               boost::shared_ptr<LyXText> text;
-               ///
-               bool remove;
-       };
-       ///
-       typedef std::map<BufferView *, InnerCache> Cache;
-       ///
-       typedef Cache::value_type value_type;
-       ///
-       int beginningOfMainBody(Buffer const *, Paragraph * par) const;
-       ///
-       UpdatableInset::RESULT moveRight(BufferView *,
-                                        bool activate_inset = true,
-                                        bool selecting = false);
-       ///
-       UpdatableInset::RESULT moveLeft(BufferView *,
-                                       bool activate_inset = true,
-                                       bool selecting = false);
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
-                                              bool activate_inset = true,
-                                              bool selecting = false);
-       ///
-       UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind,
-                                             bool activate_inset = true,
-                                             bool selecting = false);
+       void init();
 
        ///
-       UpdatableInset::RESULT moveUp(BufferView *);
-       ///
-       UpdatableInset::RESULT moveDown(BufferView *);
-       ///
-       void setCharFont(Buffer const *, int pos, LyXFont const & font);
-       ///
-       bool checkAndActivateInset(BufferView * bv, bool behind);
-       ///
-       bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
-                                  int button = 0);
-       ///
-       void removeNewlines();
-       ///
-       int cx(BufferView *) const;
-       ///
-       int cy(BufferView *) const;
+       bool drawFrame_;
+       /** We store the LColor::color value as an int to get LColor.h out
+        *  of the header file.
+        */
+       int frame_color_;
        ///
-       lyx::pos_type cpos(BufferView *) const;
+       mutable pit_type old_pit;
        ///
-       Paragraph * cpar(BufferView *) const;
+       static int border_;
        ///
-       bool cboundary(BufferView *) const;
-       ///
-       Row * crow(BufferView *) const;
-       ///
-       void drawFrame(Painter &, bool cleared) const;
-       ///
-       void clearFrame(Painter &, bool cleared) const;
-       ///
-       void clearInset(BufferView *, int baseline, bool & cleared) const;
-       ///
-       void saveLyXTextState(LyXText *) const;
-       ///
-       void restoreLyXTextState(BufferView *, LyXText *) const;
+       bool wide_inset_;
+public:
        ///
-       void reinitLyXText() const;
+       mutable LyXText text_;
        ///
-       void collapseParagraphs(BufferParams const & bparams) const;
+       mutable LyXFont font_;
+};
 
-       /* Private structures and variables */
-       ///
-       Paragraph * par;
-       ///
-       mutable bool locked;
-       ///
-       mutable int insetAscent;
-       ///
-       mutable int insetDescent;
-       ///
-       mutable int insetWidth;
-       ///
-       mutable int top_y;
-       ///
-       Paragraph * inset_par;
-       ///
-       lyx::pos_type inset_pos;
-       ///
-       bool inset_boundary;
-       ///
-       mutable int inset_x;
-       ///
-       mutable int inset_y;
-       ///
-       mutable int old_max_width;
-       ///
-       bool no_selection;
-       ///
-       mutable float xpos;
-       ///
-       UpdatableInset * the_locking_inset;
-       ///
-       mutable Paragraph * old_par;
-       /// The cache.
-       mutable Cache cache;
-       ///
-       mutable int last_drawn_width;
-       ///
-       mutable bool frame_is_visible;
-       ///
-       mutable BufferView * cached_bview;
-       ///
-       mutable boost::shared_ptr<LyXText> cached_text;
-       ///
-       struct save_state {
-               Paragraph * lpar;
-               Paragraph * selstartpar;
-               Paragraph * selendpar;
-               lyx::pos_type pos;
-               lyx::pos_type selstartpos;
-               lyx::pos_type selendpos;
-               bool boundary;
-               bool selstartboundary;
-               bool selendboundary;
-               bool selection;
-               bool mark_set;
-               bool refresh;
-       };
-       ///
-       mutable save_state sstate;
+} // namespace lyx
 
-       ///
-       // this is needed globally so we know that we're using it actually and
-       // so the LyXText-Cache is not erased until used!
-       mutable LyXText * lt;
-       ///
-       // to remember old painted frame dimensions to clear it on the right spot!
-       ///
-       mutable int frame_x;
-       mutable int frame_y;
-       mutable int frame_w;
-       mutable int frame_h;
-       ///
-       bool in_update; /* as update is not reentrant! */
-       mutable BufferView * do_resize;
-       mutable bool do_reinit;
-       mutable bool in_insetAllowed;
-       ///
-       // these are used to check for mouse movement in Motion selection code
-       ///
-       int mouse_x;
-       int mouse_y;
-};
 #endif