X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiAbout.h;h=200f0b7837db522793910c12d2255ed60924962d;hb=8d451794032b5eb0a4e4579a4d794511878ee783;hp=2567d7ca8acd94ec388079e0780b4ac3a4a05a93;hpb=665119e4f6455fe951adc039c9f77db434ed5d5d;p=lyx.git diff --git a/src/frontends/qt4/GuiAbout.h b/src/frontends/qt4/GuiAbout.h index 2567d7ca8a..200f0b7837 100644 --- a/src/frontends/qt4/GuiAbout.h +++ b/src/frontends/qt4/GuiAbout.h @@ -12,19 +12,32 @@ #ifndef GUIABOUT_H #define GUIABOUT_H -#include "GuiDialog.h" -#include "ui_AboutUi.h" +#include "DialogView.h" namespace lyx { namespace frontend { -class GuiAboutDialog : public GuiDialog, public Ui::AboutUi +class GuiAbout : public DialogView { Q_OBJECT public: // Constructor - GuiAboutDialog(LyXView & lv); + GuiAbout(GuiView & lv); + +private Q_SLOTS: + void on_buttonBox_rejected(); + +private: + /// Controller stuff + ///@{ + void updateView() {} + void dispatchParams() {} + bool isBufferDependent() const { return false; } + ///@} + + struct Private; + Private * const d; }; } // namespace frontend