]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpace.h
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetSpace.h
index 321aae8bd7ae227b327fcffbe76d07cdb5dfa737..5aed4d50e7d346886e46f692b43125670a007009 100644 (file)
@@ -6,8 +6,8 @@
  *
  * \author Asger Alstrup Nielsen
  * \author Jean-Marc Lasgouttes
- * \author Lars Gullik Bjønnes
- * \author Jürgen Spitzmüller
+ * \author Lars Gullik Bjønnes
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
 #ifndef INSET_SPACE_H
 #define INSET_SPACE_H
 
-
 #include "Inset.h"
 #include "Length.h"
-#include "MailInset.h"
 
 
 namespace lyx {
@@ -35,16 +33,24 @@ public:
                PROTECTED,
                /// Thin space ('\,')
                THIN,
+               /// Medium space ('\:')
+               MEDIUM,
+               /// Thick space ('\;')
+               THICK,
                /// \quad (1em)
                QUAD,
                /// \qquad (2em)
                QQUAD,
-               /// \enspace (0.5em unbreakable)
+               /// \enskip (0.5em unbreakable)
                ENSPACE,
                /// \enspace (0.5em breakable)
                ENSKIP,
                /// Negative thin space ('\negthinspace')
                NEGTHIN,
+               /// Negative medium space ('\negmedspace')
+               NEGMEDIUM,
+               /// Negative thick space ('\negthickspace')
+               NEGTHICK,
                /// rubber length
                HFILL,
                /// \hspace*{\fill}
@@ -53,13 +59,21 @@ public:
                DOTFILL,
                /// rubber length, filled with a rule
                HRULEFILL,
+               /// rubber length, filled with a left arrow
+               LEFTARROWFILL,
+               /// rubber length, filled with a right arrow
+               RIGHTARROWFILL,
+               // rubber length, filled with an up brace
+               UPBRACEFILL,
+               // rubber length, filled with a down brace
+               DOWNBRACEFILL,
                /// \hspace{length}
                CUSTOM,
                /// \hspace*{length}
                CUSTOM_PROTECTED
        };
        ///
-       InsetSpaceParams() : kind(NORMAL), length(Length()) {}
+       InsetSpaceParams(bool m = false) : kind(NORMAL), math(m) {}
        ///
        void write(std::ostream & os) const;
        ///
@@ -67,26 +81,37 @@ public:
        ///
        Kind kind;
        ///
-       Length length;
+       GlueLength length;
+       /**
+        * Whether these params are to be used in mathed.
+        * This determines the set of valid kinds.
+        */
+       bool math;
 };
 
+
 ///  Used to insert different kinds of spaces
-class InsetSpace : public Inset {
+class InsetSpace : public Inset
+{
 public:
        ///
-       InsetSpace();
-       ///
-       ~InsetSpace();
-
+       InsetSpace() : Inset(0) {}
        ///
-       explicit
-       InsetSpace(InsetSpaceParams par);
+       explicit InsetSpace(InsetSpaceParams const & par);
        ///
        InsetSpaceParams params() const { return params_; }
        ///
        InsetSpaceParams::Kind kind() const;
        ///
-       Length length() const;
+       ~InsetSpace();
+
+       ///
+       static void string2params(std::string const &, InsetSpaceParams &);
+       ///
+       static std::string params2string(InsetSpaceParams const &);
+       ///
+       GlueLength length() const;
+
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
@@ -103,8 +128,14 @@ public:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
        /// the string that is passed to the TOC
-       void textString(odocstream &) const;
+       void tocString(odocstream &) const;
+       ///
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return SPACE_CODE; }
        /// is this an expandible space (rubber length)?
@@ -117,35 +148,22 @@ public:
        /// is this equivalent to a space (which is BTW different from
        // a line separator)?
        bool isSpace() const { return true; }
-private:
-       virtual Inset * clone() const { return new InsetSpace(*this); }
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
-
-       ///
-       InsetSpaceParams params_;
-};
-
-
-class InsetSpaceMailer : public MailInset {
-public:
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
+protected:
        ///
-       InsetSpaceMailer(InsetSpace & inset);
+       Inset * clone() const { return new InsetSpace(*this); }
        ///
-       virtual Inset & inset() const { return inset_; }
-       ///
-       virtual std::string const & name() const { return name_; }
-       ///
-       virtual std::string const inset2string(Buffer const &) const;
-       ///
-       static void string2params(std::string const &, InsetSpaceParams &);
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+public:
        ///
-       static std::string const params2string(InsetSpaceParams const &);
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+
 private:
        ///
-       static std::string const name_;
+       bool showInsetDialog(BufferView * bv) const;
        ///
-       InsetSpace & inset_;
+       InsetSpaceParams params_;
 };