]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiNote.h
Whitespace.
[lyx.git] / src / frontends / qt4 / GuiNote.h
index 649b37bb9f0c8b7d6f9a307f7990742f5ac603a6..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.
  */
 #ifndef GUINOTE_H
 #define GUINOTE_H
 
-#include "GuiDialogView.h"
-#include "ControlNote.h"
+#include "GuiDialog.h"
+#include "insets/InsetNote.h"
 #include "ui_NoteUi.h"
 
-#include <QDialog>
-
-
 namespace lyx {
 namespace frontend {
 
-class GuiNote;
-
-class GuiNoteDialog : public QDialog, public Ui::NoteUi {
-       Q_OBJECT
-public:
-       GuiNoteDialog(GuiNote * form);
-protected Q_SLOTS:
-       virtual void change_adaptor();
-protected:
-       virtual void closeEvent(QCloseEvent * e);
-private:
-       GuiNote * form_;
-};
-
-
-/** This class provides a QT implementation of the Note Dialog.
- */
-class GuiNote : public GuiView<GuiNoteDialog>
+class GuiNote : public GuiDialog, public Ui::NoteUi
 {
+       Q_OBJECT
 public:
-       friend class GuiNoteDialog;
-
-       /// Constructor
-       GuiNote(GuiDialog &);
-       /// parent controller
-       ControlNote & controller()
-       { return static_cast<ControlNote &>(this->getController()); }
-       /// parent controller
-       ControlNote const & controller() const
-       { return static_cast<ControlNote const &>(this->getController()); }
+       GuiNote(GuiView & lv);
+private Q_SLOTS:
+       void change_adaptor();
 private:
-       ///  Apply changes
-       virtual void applyView();
-       /// Build the dialog
-       virtual void build_dialog();
+       /// Apply changes
+       void applyView();
        /// Update dialog before showing it
-       virtual void update_contents();
+       void updateContents();
+       ///
+       bool initialiseParams(std::string const & data);
+       ///
+       void clearParams();
+       ///
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
+private:
+       ///
+       InsetNoteParams params_;
 };
 
 } // namespace frontend