]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiNomencl.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiNomencl.h
index c9fa2cb825bebd81ddcdcee8abe187f5f02f7fc4..0b83d2e0e28d0e12a97f1c048ab7fec6c5809508 100644 (file)
@@ -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.
  *
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef GUINOMENCL_H
-#define GUINOMENCL_H
+#ifndef GUINOMENCLATURE_H
+#define GUINOMENCLATURE_H
 
 #include "GuiDialog.h"
 #include "ui_NomenclUi.h"
 
+#include "insets/InsetCommandParams.h"
+
 namespace lyx {
 namespace frontend {
 
-class GuiNomenclature : public GuiCommand, public Ui::NomenclUi
+class GuiNomenclature : public GuiDialog, public Ui::NomenclUi
 {
        Q_OBJECT
 
@@ -32,17 +34,29 @@ private Q_SLOTS:
        void reject();
 
 private:
-       ///
-       void closeEvent(QCloseEvent * e);
        ///
        bool isValid();
        /// Apply changes
        void applyView();
        /// update
-       void updateContents();
+       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