]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiNote.h
fix completion painting for RTL (inline completion and completion list)
[lyx.git] / src / frontends / qt4 / GuiNote.h
index 50a2d3318bc6bf8651a2dd5782a6f1145090f710..21fb2a87a6e7ea457382ee115874d25af763165c 100644 (file)
 #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