]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiVSpace.h
Correct early return position for if use_pixmap_cache_ check
[lyx.git] / src / frontends / qt4 / GuiVSpace.h
index 9cc1f74a7a86364ff9be78faf8dda10fe0c3c0b9..f26d40e763ef2d54793a37941368da158220e199 100644 (file)
@@ -4,69 +4,46 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  * \author Angus Leeming
- * \author Jürgen Spitzmüller
+ * \author Jürgen Spitzmüller
+ * \author Edwin Leuven
  *
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef QVSPACE_H
-#define QVSPACE_H
+#ifndef GUIVSPACE_H
+#define GUIVSPACE_H
 
-#include "GuiDialogView.h"
-#include "ControlVSpace.h"
+#include "InsetParamsWidget.h"
 #include "ui_VSpaceUi.h"
 
-#include <QDialog>
-
 namespace lyx {
 namespace frontend {
 
-class GuiVSpace;
-
-class GuiVSpaceDialog : public QDialog, public Ui::VSpaceUi
+class GuiVSpace : public InsetParamsWidget, public Ui::VSpaceUi
 {
        Q_OBJECT
 
 public:
-       GuiVSpaceDialog(GuiVSpace * form);
-
-public Q_SLOTS:
-       void change_adaptor();
+       GuiVSpace(QWidget * parent = 0);
 
-protected Q_SLOTS:
-       void closeEvent(QCloseEvent *);
+private Q_SLOTS:
+       ///
        void enableCustom(int);
 
 private:
-       GuiVSpace * form_;
-};
-
-
-class GuiVSpace : public GuiView<GuiVSpaceDialog>
-{
-public:
-       ///
-       friend class GuiVSpaceDialog;
-       ///
-       GuiVSpace(Dialog &);
-       /// parent controller
-       ControlVSpace & controller()
-       { return static_cast<ControlVSpace &>(this->getController()); }
-       /// parent controller
-       ControlVSpace const & controller() const
-       { return static_cast<ControlVSpace const &>(this->getController()); }
-private:
-       /// Build the dialog
-       virtual void build_dialog();
-       /// Apply from dialog
-       virtual void apply();
-       /// Update the dialog
-       virtual void update_contents();
+       /// \name InsetParamsWidget inherited methods
+       //@{
+       InsetCode insetCode() const { return VSPACE_CODE; }
+       FuncCode creationCode() const { return LFUN_INSET_INSERT; }
+       void paramsToDialog(Inset const *);
+       docstring dialogToParams() const;
+       bool checkWidgets(bool readonly) const;
+       //@}
 };
 
 } // namespace frontend
 } // namespace lyx
 
-#endif //QVSPACE_H
+#endif // GUIVSPACE_H