X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiVSpace.h;h=93a6319fe92fc9317657877791ce399bb899d9e6;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=12c2978b82b1c47bd0bc57fee3b4b8085ee9302d;hpb=c9ea6e6eef090b863fb54445010f24443b15eb23;p=lyx.git diff --git a/src/frontends/qt4/GuiVSpace.h b/src/frontends/qt4/GuiVSpace.h index 12c2978b82..93a6319fe9 100644 --- a/src/frontends/qt4/GuiVSpace.h +++ b/src/frontends/qt4/GuiVSpace.h @@ -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. */ @@ -15,31 +16,41 @@ #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() const; /// Apply from dialog void applyView(); /// Update the dialog - void update_contents(); + 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