]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiAbout.h
More GuiInfo usability work
[lyx.git] / src / frontends / qt4 / GuiAbout.h
index 8391002309534f91595f9bf6d5101e2217debe5a..200f0b7837db522793910c12d2255ed60924962d 100644 (file)
 #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_buttonBox_rejected();
+
+private:
+       /// Controller stuff
+       ///@{
+       void updateView() {}
        void dispatchParams() {}
        bool isBufferDependent() const { return false; }
+       ///@}
+
+       struct Private;
+       Private * const d;
 };
 
 } // namespace frontend