X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiAbout.h;h=a8a3b7996d18b8f2051868555a7141662b290c8c;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=8391002309534f91595f9bf6d5101e2217debe5a;hpb=6f3cdf8da80a6b3889f2a3b8b53f44590152d600;p=lyx.git diff --git a/src/frontends/qt4/GuiAbout.h b/src/frontends/qt4/GuiAbout.h index 8391002309..a8a3b7996d 100644 --- a/src/frontends/qt4/GuiAbout.h +++ b/src/frontends/qt4/GuiAbout.h @@ -12,25 +12,32 @@ #ifndef GUIABOUT_H #define GUIABOUT_H -#include "GuiDialog.h" -#include "ui_AboutUi.h" +#include "DialogView.h" namespace lyx { namespace frontend { -class GuiAbout : public GuiDialog, public Ui::AboutUi +class GuiAbout : public DialogView { Q_OBJECT public: // Constructor - GuiAbout(LyXView & lv); + GuiAbout(GuiView & lv); - // Controller stuff - bool initialiseParams(std::string const &) { return true; } - void clearParams() {} +private Q_SLOTS: + void on_closePB_clicked(); + +private: + /// Controller stuff + ///@{ + void updateView() {} void dispatchParams() {} bool isBufferDependent() const { return false; } + ///@} + + struct Private; + Private * const d; }; } // namespace frontend