]> 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 b46eecd01d057da02be8b0a718f70a753dd37353..f26d40e763ef2d54793a37941368da158220e199 100644 (file)
@@ -4,9 +4,9 @@
  * 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 GUIVSPACE_H
 #define GUIVSPACE_H
 
-#include "GuiDialog.h"
+#include "InsetParamsWidget.h"
 #include "ui_VSpaceUi.h"
-#include "VSpace.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiVSpace : public GuiDialog, public Ui::VSpaceUi
+class GuiVSpace : public InsetParamsWidget, public Ui::VSpaceUi
 {
        Q_OBJECT
 
 public:
-       GuiVSpace(GuiView & lv);
+       GuiVSpace(QWidget * parent = 0);
 
 private Q_SLOTS:
-       ///
-       void change_adaptor();
-       ///
-       void closeEvent(QCloseEvent *);
        ///
        void enableCustom(int);
 
 private:
-       /// Apply from dialog
-       void applyView();
-       /// Update the dialog
-       void updateContents();
-       ///
-       bool initialiseParams(std::string const & data);
-       /// clean-up on hide.
-       void clearParams();
-       /// clean-up on hide.
-       void dispatchParams();
-       ///
-       bool isBufferDependent() const { return true; }
-       ///
-       bool inInset() const;
-
-       ///
-       VSpace params_;
+       /// \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