]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIPA.h
New attempt on #9906: allow following hyperlinks via context menu.
[lyx.git] / src / insets / InsetIPA.h
index 124516349c1ed72341568e69b47da5dbb1594029..695179738f400581467e15d451341fb131e35200 100644 (file)
@@ -16,7 +16,8 @@
 
 #include "Dimension.h"
 
-#include <boost/scoped_ptr.hpp>
+#include "support/unique_ptr.h"
+
 
 namespace lyx {
 
@@ -28,25 +29,29 @@ namespace graphics {
 
 /// An IPA inset with instant preview
 class InsetIPA : public InsetText {
-       
+
 public:
        ///
-       InsetIPA(Buffer *);
+       explicit InsetIPA(Buffer *);
        ///
        ~InsetIPA();
        ///
        InsetIPA(InsetIPA const & other);
+       ///
+       InsetIPA & operator=(InsetIPA const & other);
 
        /// \name Methods inherited from Inset class
        //@{
        Inset * clone() const { return new InsetIPA(*this); }
 
        bool neverIndent() const { return true; }
-       
+
+       bool forceLocalFontSwitch() const { return true; }
+
        InsetCode lyxCode() const { return IPA_CODE; }
-       
+
        docstring layoutName() const { return from_ascii("IPA"); }
-       
+
        bool descendable(BufferView const & /*bv*/) const { return true; }
 
        void metrics(MetricsInfo & mi, Dimension & dim) const;
@@ -55,6 +60,8 @@ public:
 
        void draw(PainterInfo & pi, int x, int y) const;
 
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
 
@@ -66,20 +73,24 @@ public:
        void write(std::ostream & os) const;
 
        void edit(Cursor & cur, bool front, EntryDirection entry_from);
-       
+
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
+       void docbook(XMLStream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XMLStream & xs, OutputParams const &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
        ///
        bool allowSpellCheck() const { return false; }
        ///
        bool insetAllowed(InsetCode code) const;
        //@}
-       
+
 protected:
        /// Retrieves the preview state. Returns true if preview
-       /// is enabled and the preview image is availabled.
+       /// is enabled and the preview image is available.
        bool previewState(BufferView * bv) const;
        /// Recreates the preview if preview is enabled.
        void reloadPreview(DocIterator const & pos) const;
@@ -87,13 +98,7 @@ protected:
        void preparePreview(DocIterator const & pos) const;
 
        ///
-       boost::scoped_ptr<RenderPreview> preview_;
-       ///
-       mutable bool use_preview_;
-
-private:
-       ///
-       mutable Dimension dim_;
+       unique_ptr<RenderPreview> preview_;
 };