]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetInclude.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetInclude.h
index f3f5ebf295efe09f9bce5ef388c0aef0873fe4bd..f8c4065c97136c55af03d2fa9860c5224a8bd373 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Richard Heck (conversion to InsetCommand)
  *
  * Full author contact details are available in file CREDITS.
@@ -36,7 +36,7 @@ class RenderMonitoredPreview;
 class InsetInclude : public InsetCommand {
 public:
        ///
-       InsetInclude(InsetCommandParams const &);
+       InsetInclude(Buffer * buf, InsetCommandParams const &);
        ~InsetInclude();
 
        void setBuffer(Buffer & buffer);
@@ -50,6 +50,10 @@ public:
        DisplayType display() const;
        ///
        InsetCode lyxCode() const { return INCLUDE_CODE; }
+
+       ///
+       void setChildBuffer(Buffer * buffer);
+
        /** Fills \c keys
         *  \param buffer the Buffer containing this inset.
         *  \param keys the list of bibkeys in the child buffer.
@@ -70,9 +74,9 @@ public:
         *  \param buffer the Buffer containing this inset.
         */
        support::FileNameList const &
-               getBibfilesCache(Buffer const & buffer) const;
+               getBibfilesCache() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        int latex(odocstream &, OutputParams const &) const;
        ///
@@ -80,13 +84,17 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
        void validate(LaTeXFeatures &) const;
        ///
-       void addPreview(graphics::PreviewLoader &) const;
+       void addPreview(DocIterator const &, graphics::PreviewLoader &) const;
        ///
-       void addToToc(ParConstIterator const &) const;
+       void addToToc(DocIterator const &);
        ///
-       void updateLabels(ParIterator const &);
+       void updateCommand();
+       ///
+       void updateBuffer(ParIterator const &, UpdateType);
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
@@ -95,10 +103,14 @@ public:
        static bool isCompatibleCommand(std::string const & s);
        ///
        docstring contextMenu(BufferView const & bv, int x, int y) const;
+       /// \return the child buffer if the file is a LyX doc and could be loaded
+       Buffer * getChildBuffer() const;
 protected:
        InsetInclude(InsetInclude const &);
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
 private:
        Inset * clone() const { return new InsetInclude(*this); }
 
@@ -107,25 +119,32 @@ private:
         */
        void fileChanged() const;
 
+       /// \return loaded Buffer or zero if the file loading did not proceed.
+       Buffer * loadIfNeeded() const;
+       /// launch external application
+       void editIncluded(std::string const & file);
        /// set the parameters
        void setParams(InsetCommandParams const & params);
        /// get the text displayed on the button
        docstring screenLabel() const;
        /// holds the entity name that defines the file location (SGML)
        docstring const include_label;
+       ///
+       bool isChildIncluded() const;
 
        /// The pointer never changes although *preview_'s contents may.
        boost::scoped_ptr<RenderMonitoredPreview> const preview_;
 
+       /// 
+       mutable bool failedtoload_;
        /// cache
        mutable bool set_label_;
        mutable RenderButton button_;
        mutable docstring listings_label_;
        InsetLabel * label_;
+       mutable Buffer * child_buffer_;
 };
 
-/// return loaded Buffer or zero if the file loading did not proceed.
-Buffer * loadIfNeeded(Buffer const & parent, InsetCommandParams const & params);
 
 } // namespace lyx