]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiNote.h
Whitespace.
[lyx.git] / src / frontends / qt4 / GuiNote.h
index 50a2d3318bc6bf8651a2dd5782a6f1145090f710..a53f55e023d7d66d0157705529cdb3e256ec307c 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Jürgen Spitzmüller
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
 #define GUINOTE_H
 
 #include "GuiDialog.h"
-#include "ControlNote.h"
+#include "insets/InsetNote.h"
 #include "ui_NoteUi.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiNoteDialog : public GuiDialog, public Ui::NoteUi
+class GuiNote : public GuiDialog, public Ui::NoteUi
 {
        Q_OBJECT
 public:
-       GuiNoteDialog(LyXView & lv);
+       GuiNote(GuiView & lv);
 private Q_SLOTS:
        void change_adaptor();
 private:
-       void closeEvent(QCloseEvent * e);
-       /// parent controller
-       ControlNote & controller();
        /// Apply changes
        void applyView();
        /// Update dialog before showing it
        void updateContents();
+       ///
+       bool initialiseParams(std::string const & data);
+       ///
+       void clearParams();
+       ///
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
+private:
+       ///
+       InsetNoteParams params_;
 };
 
 } // namespace frontend