]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiERT.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiERT.h
index e95b734f0a42e1636bea73aa6e9d1023262609ba..09debfeb182ee2746a237fa82867fbd49b865d5a 100644 (file)
 #ifndef GUIERT_H
 #define GUIERT_H
 
-#include "GuiDialogView.h"
-#include "ControlERT.h"
+#include "GuiDialog.h"
 #include "ui_ERTUi.h"
-
-#include <QDialog>
+#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_;
-};
+       GuiERT(GuiView & lv);
 
+private Q_SLOTS:
+       void change_adaptor();
 
-class GuiERT : public GuiView<GuiERTDialog>
-{
-public:
-       /// constructor
-       GuiERT(GuiDialog &);
-       /// parent controller
-       ControlERT & controller()
-       { return static_cast<ControlERT &>(this->getController()); }
-       /// parent controller
-       ControlERT const & controller() const
-       { return static_cast<ControlERT const &>(this->getController()); }
 private:
-       friend class GuiERTDialog;
        /// 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