X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiNote.h;h=a53f55e023d7d66d0157705529cdb3e256ec307c;hb=ee7dd4a11ea21851e7e32164c66b37d3bc8ac31d;hp=e1f6e57f5fedf9a035ff66806191d4a94a27e0a3;hpb=c9ea6e6eef090b863fb54445010f24443b15eb23;p=lyx.git diff --git a/src/frontends/qt4/GuiNote.h b/src/frontends/qt4/GuiNote.h index e1f6e57f5f..a53f55e023 100644 --- a/src/frontends/qt4/GuiNote.h +++ b/src/frontends/qt4/GuiNote.h @@ -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. */ @@ -13,27 +13,35 @@ #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() const; /// Apply changes void applyView(); /// Update dialog before showing it - 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