]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetexternal.h
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetexternal.h
index dc68effa30c109b2806072fcc77aeaecd5aea54e..4f09391d9d161555a1cf79410a603e2f50b584fb 100644 (file)
@@ -1,13 +1,13 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetexternal.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *     
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+ * \author Asger Alstrup Nielsen
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_EXTERNAL_H
 #define INSET_EXTERNAL_H
 #include "insetbutton.h"
 #include "ExternalTemplate.h"
 #include "LString.h"
-#include <sigc++/signal_system.h>
+
+#include <boost/signals/signal0.hpp>
 
 ///
 class InsetExternal : public InsetButton {
 public:
        /// hold parameters settable from the GUI
        struct Params {
-               Params(string const & f = string(), 
-                                       string const & p = string(), 
+               Params(string const & f = string(),
+                                       string const & p = string(),
                                        ExternalTemplate const & t = ExternalTemplate())
                        : filename(f), parameters(p), templ(t) {}
                /// the filename
@@ -44,7 +45,9 @@ public:
        /// what appears in the minibuffer when opening
        virtual string const editMessage() const;
        ///
-       virtual void edit(BufferView *, int x, int y, unsigned int button);
+       virtual void edit(BufferView *, int x, int y, mouse_button::state button);
+       ///
+       virtual void edit(BufferView * bv, bool front = true);
        ///
        virtual EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -65,28 +68,31 @@ public:
        /// write LinuxDoc output to the ostream
        virtual int linuxdoc(Buffer const *, std::ostream &) const;
        /// write DocBook output to the ostream
-       virtual int docBook(Buffer const *, std::ostream &) const;
+       virtual int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 
        /// Updates needed features for this inset.
        virtual void validate(LaTeXFeatures & features) const;
 
        /// returns LyX code associated with the inset. Used for TOC, ...)
        virtual Inset::Code lyxCode() const { return EXTERNAL_CODE; }
+
        ///
-       virtual Inset * clone(Buffer const &) const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
 
        /// returns the text of the button
-       virtual string const getScreenLabel() const;
+       virtual string const getScreenLabel(Buffer const *) const;
 
        // The following public members are used from the frontends code
 
        /// set the parameters from a Params structure
        virtual void setFromParams(Params const &);
 
-       /// update the file represented by the template
+       ///
        void updateExternal() const;
 
+       /// update the file represented by the template
+       void updateExternal(string const &, Buffer const *) const;
+
        /// edit file of this template
        void editExternal() const;
 
@@ -97,7 +103,7 @@ public:
        Params params() const;
 
        /// hide connection
-       SigC::Signal0<void> hideDialog;
+       boost::signal0<void> hideDialog;
 
 private:
        /// Write the output for a specific file format