X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiNomencl.h;h=0b83d2e0e28d0e12a97f1c048ab7fec6c5809508;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=3e78c943fedec5b37498ec0003f2edcd07628d38;hpb=9a95d2a936748c057db94a3083c4b9e6587eea0b;p=lyx.git diff --git a/src/frontends/qt4/GuiNomencl.h b/src/frontends/qt4/GuiNomencl.h index 3e78c943fe..0b83d2e0e2 100644 --- a/src/frontends/qt4/GuiNomencl.h +++ b/src/frontends/qt4/GuiNomencl.h @@ -1,6 +1,6 @@ // -*- C++ -*- /** - * \file GuiNomencl.h + * \file GuiNomenclature.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * @@ -11,61 +11,52 @@ * Full author contact details are available in file CREDITS. */ -#ifndef GUINOMENCL_H -#define GUINOMENCL_H +#ifndef GUINOMENCLATURE_H +#define GUINOMENCLATURE_H -#include "GuiDialogView.h" -#include "ControlCommand.h" +#include "GuiDialog.h" #include "ui_NomenclUi.h" -#include - +#include "insets/InsetCommandParams.h" namespace lyx { namespace frontend { -class GuiNomencl; - -class GuiNomenclDialog : public QDialog, public Ui::NomenclUi +class GuiNomenclature : public GuiDialog, public Ui::NomenclUi { Q_OBJECT -public: - GuiNomenclDialog(GuiNomencl * form); - virtual void showView(); -protected Q_SLOTS: - virtual void change_adaptor(); - virtual void reject(); -protected: - virtual void closeEvent(QCloseEvent * e); -private: - GuiNomencl * form_; -}; - -class GuiNomencl : public GuiView -{ public: - friend class GuiNomenclDialog; + GuiNomenclature(GuiView & lv); + +private Q_SLOTS: + void change_adaptor(); + void reject(); - GuiNomencl(GuiDialog &, docstring const & title); - /// parent controller - ControlCommand & controller() - { return static_cast(this->getController()); } - /// parent controller - ControlCommand const & controller() const - { return static_cast(this->getController()); } -protected: - virtual bool isValid(); private: + /// + bool isValid(); /// Apply changes - virtual void applyView(); + void applyView(); /// update - virtual void update_contents(); - /// build the dialog - virtual void build_dialog(); + void updateContents() {} + /// + bool initialiseParams(std::string const & data); + /// + void paramsToDialog(InsetCommandParams const & icp); + /// clean-up on hide. + void clearParams() { params_.clear(); } + /// clean-up on hide. + void dispatchParams(); + /// + bool isBufferDependent() const { return true; } + +private: + /// + InsetCommandParams params_; }; } // namespace frontend } // namespace lyx -#endif // GUINOMENCL_H +#endif // GUINOMENCLATURE_H