X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiERT.h;h=09debfeb182ee2746a237fa82867fbd49b865d5a;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=a7c2628af70c52a83323a9ced6ac2fcd997a778c;hpb=a1cec91afaca91968b46e695533c10ad2a3f73d3;p=lyx.git diff --git a/src/frontends/qt4/GuiERT.h b/src/frontends/qt4/GuiERT.h index a7c2628af7..09debfeb18 100644 --- a/src/frontends/qt4/GuiERT.h +++ b/src/frontends/qt4/GuiERT.h @@ -9,52 +9,49 @@ * Full author contact details are available in file CREDITS. */ -#ifndef GuiERT_H -#define GuiERT_H +#ifndef GUIERT_H +#define GUIERT_H -#include "GuiDialogView.h" +#include "GuiDialog.h" #include "ui_ERTUi.h" - -#include -#include +#include "insets/InsetERT.h" // InsetERT::ERTStatus namespace lyx { namespace frontend { -class GuiERT; - -class GuiERTDialog : public QDialog, public Ui::ERTUi { +class GuiERT : public GuiDialog, public Ui::ERTUi +{ Q_OBJECT -public: - GuiERTDialog(GuiERT * form); -protected Q_SLOTS: - virtual void change_adaptor(); -protected: - virtual void closeEvent(QCloseEvent * e); -private: - GuiERT * form_; -}; - - -class ControlERT; - -class GuiERT : public QController > -{ public: - friend class GuiERTDialog; + GuiERT(GuiView & lv); + +private Q_SLOTS: + void change_adaptor(); - GuiERT(Dialog &); private: /// Apply changes - virtual void apply(); + void applyView(); /// update - virtual void update_contents(); - /// build the dialog - virtual void build_dialog(); + void updateContents(); + /// + InsetCollapsable::CollapseStatus status() const { return status_; } + /// + void setStatus(InsetCollapsable::CollapseStatus status) { status_ = status; } + /// + bool initialiseParams(std::string const & data); + /// clean-up on hide. + void clearParams(); + /// clean-up on hide. + void dispatchParams(); + /// + bool isBufferDependent() const { return true; } +private: + /// + InsetCollapsable::CollapseStatus status_; }; } // namespace frontend } // namespace lyx -#endif // GuiERT_H +#endif // GUIERT_H