]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCollapsable.h
Inset::addToToc(): change signature. Use DocIterator instead of ParConstIterator...
[lyx.git] / src / insets / InsetCollapsable.h
index 26e29f7749a78c5cd88f77cfc9d580fe96cf90ce..c5b9975f33fe561e19aeb9ec96e585644b9f8b5b 100644 (file)
 #define INSETCOLLAPSABLE_H
 
 #include "Inset.h"
-#include "InsetLayout.h"
 #include "InsetText.h"
 
 #include "Box.h"
 #include "TextClass.h"
-#include "TextClassPtr.h"
-
-#include <string>
 
 namespace lyx {
 
 class CursorSlice;
-class FontInfo;
 class InsetLayout;
-class Paragraph;
-class Text;
 
 namespace frontend { class Painter; }
 
@@ -40,31 +33,32 @@ namespace frontend { class Painter; }
 class InsetCollapsable : public InsetText {
 public:
        ///
-       InsetCollapsable(
-               BufferParams const &,
-               CollapseStatus status = Inset::Open,
-               TextClassPtr tc = TextClassPtr((TextClass *)0)
-               );
+       InsetCollapsable(Buffer const &, CollapseStatus status = Inset::Open);
        ///
        InsetCollapsable(InsetCollapsable const & rhs);
-       
+       ///
        InsetCollapsable * asInsetCollapsable() { return this; }
+       ///
        InsetCollapsable const * asInsetCollapsable() const { return this; }
+       ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        docstring name() const { return from_ascii("Collapsable"); }
-       InsetLayout const & getLayout(BufferParams const &) const
-       { return *layout_; } 
-       InsetLayout const & getLayout() const
-       { return *layout_; } 
+       ///
+       InsetLayout const & getLayout(BufferParams const &) const { return *layout_; }
+       ///
+       InsetLayout const & getLayout() const { return *layout_; } 
        ///
        void setLayout(BufferParams const &);
        /// (Re-)set the character style parameters from \p tc according
        /// to name()
-       void setLayout(TextClassPtr tc);
+       void setLayout(DocumentClass const * const tc);
        ///
-       void read(Buffer const &, Lexer &);
+       virtual bool useEmptyLayout() { return true; }
        ///
-       void write(Buffer const &, std::ostream &) const;
+       void read(Lexer &);
+       ///
+       void write(std::ostream &) const;
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -72,7 +66,8 @@ public:
 
        /// 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;
+       ///
+       bool boundary, int & x, int & y) const;
        ///
        bool hitButton(FuncRequest const &) const;
        ///
@@ -82,8 +77,6 @@ public:
        /// can we go further down on mouse click?
        bool descendable() const;
        ///
-       bool isMacroScope(Buffer const & buf) const;
-       ///
        void setLabel(docstring const & l);
        ///
        virtual void setButtonLabel() {}
@@ -110,14 +103,8 @@ public:
         *   x) toggled by autoOpen_
         */
 
-       ///
-       enum Decoration {
-               Classic,
-               Minimalistic,
-               Conglomerate
-       };
        /// Default looks
-       virtual Decoration decoration() const;
+       virtual InsetLayout::InsetDecoration decoration() const;
        ///
        enum Geometry {
                TopButton,
@@ -131,8 +118,8 @@ public:
        /// (status_), autoOpen_ and openinlined_, and of
        /// course decoration().
        Geometry geometry() const;
-       ///
-       bool allowSpellCheck() const { return true; }
+       /// Allow spellchecking, except for insets with latex_language
+       bool allowSpellCheck() const { return !forceLTR(); }
        ///
        bool allowMultiPar() const;
        ///
@@ -142,25 +129,30 @@ public:
        ///
        bool setMouseHover(bool mouse_hover);
        ///
-       virtual ColorCode backgroundColor() const {return layout_->bgcolor; }
-
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       ColorCode backgroundColor() const { return layout_->bgcolor(); }
+       ///
+       int latex(odocstream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       virtual InsetCode lyxCode() const { return COLLAPSABLE_CODE; }
+       InsetCode lyxCode() const { return COLLAPSABLE_CODE; }
 
        /// Allow multiple blanks
-       virtual bool isFreeSpacing() const { return layout_->freespacing; }
+       virtual bool isFreeSpacing() const { return layout_->isFreeSpacing(); }
        /// Don't eliminate empty paragraphs
-       virtual bool allowEmpty() const { return layout_->keepempty; }
+       virtual bool allowEmpty() const { return layout_->isKeepEmpty(); }
        /// Force inset into LTR environment if surroundings are RTL?
-       virtual bool forceLTR() const { return layout_->forceltr; }
-
+       virtual bool forceLTR() const { return layout_->isForceLtr(); }
+       ///
+       virtual bool useEmptyLayout() const { return true; }
+       /// Is this inset's layout defined in the document's textclass?
+       /// May be wrong after textclass change or paste from another document
+       bool undefined() const;
+       ///
+       virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
 protected:
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        void edit(Cursor & cur, bool front, 
                EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
@@ -172,9 +164,7 @@ protected:
        virtual void resetParagraphsFont();
 
 private:
-       /// text class to keep the InsetLayout above in memory
-       TextClassPtr textClass_;
-       /// cache for the layout_. Make sure it is in sync with the text class!
+       /// cache for the layout_. Make sure it is in sync with the document class!
        InsetLayout const * layout_;
        ///
        Dimension dimensionCollapsed() const;