X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiBibitem.h;h=b0c34e79b7e9709bc47dbb499bfc4af876311f2f;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=d5bfe816b66fa446c6c987b5f2a428763f7830a7;hpb=9a95d2a936748c057db94a3083c4b9e6587eea0b;p=lyx.git diff --git a/src/frontends/qt4/GuiBibitem.h b/src/frontends/qt4/GuiBibitem.h index d5bfe816b6..b0c34e79b7 100644 --- a/src/frontends/qt4/GuiBibitem.h +++ b/src/frontends/qt4/GuiBibitem.h @@ -4,6 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * + * \author Angus Leeming * \author John Levon * * Full author contact details are available in file CREDITS. @@ -12,53 +13,44 @@ #ifndef GUIBIBITEM_H #define GUIBIBITEM_H -#include "GuiDialogView.h" -#include "ControlCommand.h" +#include "GuiDialog.h" #include "ui_BibitemUi.h" -#include - +#include "insets/InsetCommandParams.h" namespace lyx { namespace frontend { -class GuiBibitem; - -class GuiBibitemDialog : public QDialog, public Ui::BibitemUi { +class GuiBibitem : public GuiDialog, public Ui::BibitemUi +{ Q_OBJECT -public: - GuiBibitemDialog(GuiBibitem * form); -protected Q_SLOTS: - virtual void change_adaptor(); -protected: - virtual void closeEvent(QCloseEvent * e); -private: - GuiBibitem * form_; -}; +public: + /// Constructor + GuiBibitem(GuiView & lv); +private Q_SLOTS: + void change_adaptor(); -class GuiBibitem : public GuiView -{ -public: - /// - GuiBibitem(GuiDialog &); - /// parent controller - ControlCommand & controller() - { return static_cast(this->getController()); } - /// parent controller - ControlCommand const & controller() const - { return static_cast(this->getController()); } -protected: - virtual bool isValid(); private: - friend class GuiBibitemDialog; + /// + bool isValid(); /// Apply changes - virtual void applyView(); + void applyView(); /// update - virtual void update_contents(); - /// build the dialog - virtual void build_dialog(); + void updateContents(); + /// + bool initialiseParams(std::string const & data); + /// clean-up on hide. + void clearParams() { params_.clear(); } + /// clean-up on hide. + void dispatchParams(); + /// + bool isBufferDependent() const { return true; } + +private: + /// + InsetCommandParams params_; }; } // namespace frontend