// -*- C++ -*- /** * \file GuiExternal.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Asger Alstrup * \author John Levon * \author Angus Leeming * * Full author contact details are available in file CREDITS. */ #ifndef GUIEXTERNAL_H #define GUIEXTERNAL_H #include "GuiDialog.h" #include "ui_ExternalUi.h" #include "insets/InsetExternal.h" #include namespace lyx { namespace frontend { class GuiExternal : public GuiDialog, public Ui::ExternalUi { Q_OBJECT public: GuiExternal(GuiView & lv); private Q_SLOTS: void bbChanged(); void browseClicked(); void change_adaptor(); void extraChanged(const QString &); void formatChanged(const QString &); void getbbClicked(); void sizeChanged(); void templateChanged(); void widthUnitChanged(); private: /// typedef QHash MapType; /// bool activateAspectratio() const; /// Apply changes void applyView() override; /// update void updateContents() override; /// Helper function called when the template is changed. void updateTemplate(); /// bool usingScale() const; /// bool initialiseParams(std::string const & data) override; /// clean-up on hide. void clearParams() override; /// clean-up on hide. void dispatchParams() override; /// bool isBufferDependent() const override { return true; } /// QString browse(QString const & input_file, QString const & template_name) const; /// MapType extra_; /// InsetExternalParams params_; /// bool bbChanged_; }; } // namespace frontend } // namespace lyx #endif // GUIEXTERNAL_H