]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetcommand.h
index 9b5ce26375e42288b62b43a3f046c0e767ffb020..489c68e7a782ac12a23c4f7ebb641228cffb7b2a 100644 (file)
@@ -1,24 +1,23 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetcommand.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef INSET_LATEXCOMMAND_H
 #define INSET_LATEXCOMMAND_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "insetbutton.h"
-#include <sigc++/signal_system.h>
-#include <boost/utility.hpp>
+#include "inset.h"
+#include "insetcommandparams.h"
+#include "renderers.h"
+#include "mailinset.h"
 
 // Created by Alejandro 970222
 /** Used to insert a LaTeX command automatically
  * Similar to InsetLaTeX but having control of the basic structure of a
  *   LaTeX command: \name[options]{contents}.
  */
-class InsetCommandParams {
-public:
-       ///
-       InsetCommandParams();
-       ///
-       explicit
-       InsetCommandParams(string const & n,
-                           string const & c = string(),
-                           string const & o = string());
-       ///
-       bool operator==(InsetCommandParams const &) const;
-       ///
-       bool operator!=(InsetCommandParams const &) const;
-       ///
-       void read(LyXLex &);
-       /// Parse the command
-       void scanCommand(string const &);
-       ///
-       void write(std::ostream &) const;
-       /// Build the complete LaTeX command
-       string const getCommand() const;
-       ///
-       string const & getCmdName() const { return cmdname; }
-       ///
-       string const & getOptions() const { return options; }
-       ///
-       string const & getContents() const { return contents; }
-       ///
-       void setCmdName(string const & n) { cmdname = n; }
-       ///
-       void setOptions(string const & o) { options = o; }
-       ///
-       void setContents(string const & c) { contents = c; }
-       ///
-       string const getAsString() const;
-       ///
-       void setFromString(string const &);
-private:
-       ///
-       string cmdname;
-       ///
-       string contents;
-       ///
-       string options;
-};
-
 
 ///
-class InsetCommand : public InsetButton, boost::noncopyable {
+class InsetCommand : public InsetOld {
 public:
        ///
        explicit
-       InsetCommand(InsetCommandParams const &, bool same_id = false);
+       InsetCommand(InsetCommandParams const &);
        ///
-       virtual ~InsetCommand() { hideDialog(); }
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void write(Buffer const *, std::ostream & os) const
+       void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       void write(Buffer const &, std::ostream & os) const
                { p_.write(os); }
        ///
-       virtual void read(Buffer const *, LyXLex & lex)
+       virtual void read(Buffer const &, LyXLex & lex)
                { p_.read(lex); }
        /// Can remove one InsetBibKey is modified
        void scanCommand(string const & c) { p_.scanCommand(c); };
        ///
-       virtual int latex(Buffer const *, std::ostream &,
-                         bool fragile, bool free_spc) const;
+       virtual int latex(Buffer const &, std::ostream &,
+                         LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       virtual int linuxdoc(Buffer const *, std::ostream &) const;
+       virtual int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       virtual int docbook(Buffer const *, std::ostream &) const;
+       virtual int docbook(Buffer const &, std::ostream &, bool) const;
        ///
-       Inset::Code lyxCode() const { return Inset::NO_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::NO_CODE; }
 
        ///
-       string const getCommand() const { return p_.getCommand(); }
+       InsetCommandParams const & params() const { return p_; }
        ///
-       string const & getCmdName() const { return p_.getCmdName(); }
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       string const & getContents() const { return p_.getContents(); }
+       ///
+       void setContents(string const & c) { p_.setContents(c); }
        ///
        string const & getOptions() const { return p_.getOptions(); }
+
+protected:
        ///
-       string const & getContents() const { return p_.getContents(); }
+       string const getCommand() const { return p_.getCommand(); }
+       ///
+       string const & getCmdName() const { return p_.getCmdName(); }
        ///
        void setCmdName(string const & n) { p_.setCmdName(n); }
        ///
        void setOptions(string const & o) { p_.setOptions(o); }
        ///
-       void setContents(string const & c) { p_.setContents(c); }
-       ///
-       InsetCommandParams const & params() const { return p_; }
-       ///
        void setParams(InsetCommandParams const &);
        ///
-       SigC::Signal0<void> hideDialog;
+       virtual BufferView * view() const;
+       /// This should provide the text for the button
+       virtual string const getScreenLabel(Buffer const &) const = 0;
 
 private:
        ///
        InsetCommandParams p_;
+       mutable bool set_label_;
+       mutable ButtonRenderer button_;
 };
 
+
+class InsetCommandMailer : public MailInset {
+public:
+       ///
+       InsetCommandMailer(string const & name, InsetCommand & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual string const & name() const { return name_; }
+       ///
+       virtual string const inset2string(Buffer const &) const;
+       ///
+       static void string2params(string const &, InsetCommandParams &);
+       ///
+       static string const params2string(string const & name,
+                                         InsetCommandParams const &);
+private:
+       ///
+       string const name_;
+       ///
+       InsetCommand & inset_;
+};
+
+
 #endif