]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiVSpace.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiVSpace.h
index fff6041a72239040d9d0c0a2e821948a73e6d5d6..93a6319fe92fc9317657877791ce399bb899d9e6 100644 (file)
@@ -4,9 +4,10 @@
  * 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.
  */
 #define GUIVSPACE_H
 
 #include "GuiDialog.h"
-#include "ControlVSpace.h"
 #include "ui_VSpaceUi.h"
+#include "VSpace.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiVSpaceDialog : public GuiDialog, public Ui::VSpaceUi
+class GuiVSpace : public GuiDialog, public Ui::VSpaceUi
 {
        Q_OBJECT
 
 public:
-       GuiVSpaceDialog(LyXView & lv);
+       GuiVSpace(GuiView & lv);
 
 private Q_SLOTS:
+       ///
        void change_adaptor();
-       void closeEvent(QCloseEvent *);
+       ///
        void enableCustom(int);
 
 private:
-       /// parent controller
-       ControlVSpace & controller();
        /// 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; }
+
+       ///
+       VSpace params_;
 };
 
 } // namespace frontend