X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetExternal.h;h=fba0e7406bc1254746f534a6bdaca50356096462;hb=3588f2f69675df8dbf829800b0ed6e4a455c68b4;hp=5686dc8cf395faec9412eef55dcda3e0a65e8fd2;hpb=42123ab8a71080b6d15fca4e0c43ae76abf00a1e;p=lyx.git diff --git a/src/insets/InsetExternal.h b/src/insets/InsetExternal.h index 5686dc8cf3..fba0e7406b 100644 --- a/src/insets/InsetExternal.h +++ b/src/insets/InsetExternal.h @@ -13,16 +13,14 @@ #define INSET_EXTERNAL_H #include "Inset.h" -#include "ExternalTransforms.h" + +#include "ExternalTemplate.h" #include "support/FileName.h" -#include "support/Translator.h" #include #include -#include "MailInset.h" - /** No two InsetExternalParams variables can have the same temporary file. * This class has copy-semantics but the copy constructor @@ -46,20 +44,6 @@ private: support::FileName tempname_; }; -/// How is the image to be displayed on the LyX screen? -enum DisplayType { - DefaultDisplay, - MonochromeDisplay, - GrayscaleDisplay, - ColorDisplay, - PreviewDisplay, - NoDisplay -}; - - -/// The translator between the Display enum and corresponding lyx string. -Translator const & displayTranslator(); - } // namespace external @@ -80,8 +64,10 @@ public: /// The external file. support::DocFileName filename; - /// How the inset is to be displayed by LyX. - external::DisplayType display; + /// If the inset is to be displayed by LyX. + bool display; + /// If the inset is to use the preview mechanism. + PreviewMode preview_mode; /// The scale of the displayed graphic (if shown). unsigned int lyxscale; @@ -104,62 +90,70 @@ private: class RenderBase; /// -class InsetExternal : public InsetOld, public boost::signals::trackable +class InsetExternal : public Inset, public boost::signals::trackable { public: - InsetExternal(); + InsetExternal(Buffer *); /// - virtual ~InsetExternal(); + ~InsetExternal(); /// - virtual InsetBase::Code lyxCode() const { return EXTERNAL_CODE; } + static void string2params(std::string const &, Buffer const &, + InsetExternalParams &); /// - virtual EDITABLE editable() const { return IS_EDITABLE; } - + static std::string params2string(InsetExternalParams const &, + Buffer const &); /// - bool metrics(MetricsInfo &, Dimension &) const; + InsetExternalParams const & params() const; /// - void draw(PainterInfo & pi, int x, int y) const; + void setParams(InsetExternalParams const &); + /// Update not loaded previews + void updatePreview(); + /// \returns the number of rows (\n's) of generated code. + void latex(otexstream &, OutputParams const &) const; /// - virtual void write(Buffer const &, std::ostream &) const; + std::string contextMenuName() const; /// - virtual void read(Buffer const &, Lexer & lex); - - /// \returns the number of rows (\n's) of generated code. - int latex(Buffer const &, odocstream &, - OutputParams const &) const; + bool setMouseHover(BufferView const * bv, bool mouse_hover); /// - int plaintext(Buffer const &, odocstream &, - OutputParams const &) const; + bool clickable(int, int) const { return true; } +private: /// - int docbook(Buffer const &, odocstream &, - OutputParams const &) const; - - /// Update needed features for this inset. - virtual void validate(LaTeXFeatures & features) const; - + InsetExternal(InsetExternal const &); /// - InsetExternalParams const & params() const; + InsetCode lyxCode() const { return EXTERNAL_CODE; } + /// + bool hasSettings() const { return true; } + /// + void metrics(MetricsInfo &, Dimension &) const; /// - void setParams(InsetExternalParams const &, Buffer const &); + void draw(PainterInfo & pi, int x, int y) const; + /// + void write(std::ostream &) const; /// - void addPreview(graphics::PreviewLoader &) const; + void read(Lexer & lex); /// - void edit(Cursor & cur, bool left); + int plaintext(odocstream &, OutputParams const &) const; + /// + int docbook(odocstream &, OutputParams const &) const; + /// For now, this does nothing. Someone who knows about this + /// should see what needs doing for XHTML output. + docstring xhtml(XHTMLStream &, OutputParams const &) const; + /// Update needed features for this inset. + void validate(LaTeXFeatures & features) const; + /// + void addPreview(DocIterator const &, graphics::PreviewLoader &) const; + /// + bool showInsetDialog(BufferView * bv) const; /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; - -protected: - InsetExternal(InsetExternal const &); /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); -private: - virtual std::auto_ptr doClone() const; - + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// + Inset * clone() const { return new InsetExternal(*this); } /** This method is connected to the graphics loader, so we are * informed when the image has been loaded. */ void statusChanged() const; - /** Slot receiving a signal that the external file has changed * and the preview should be regenerated. */ @@ -169,32 +163,10 @@ private: InsetExternalParams params_; /// The thing that actually draws the image on LyX's screen. boost::scoped_ptr renderer_; -}; - - -class InsetExternalMailer : public MailInset { -public: - /// - InsetExternalMailer(InsetExternal & inset); - /// - virtual InsetBase & 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 &, Buffer const &, - InsetExternalParams &); - /// - static std::string const params2string(InsetExternalParams const &, - Buffer const &); -private: - /// - static std::string const name_; - /// - InsetExternal & inset_; + /// changes color of the button when mouse enters/leaves this inset + mutable std::map mouse_hover_; }; } // namespace lyx -#endif +#endif // INSET_EXTERNAL_H