]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiInfo.h
If we are in a closeEvent, we don't want to close all buffers, because these may...
[lyx.git] / src / frontends / qt4 / GuiInfo.h
index c23525a9c43183418c7467e75c234567925e2f2b..431bc3300c8dc90fb64442940ccfbf984c21c9df 100644 (file)
@@ -17,8 +17,6 @@
 
 namespace lyx {
 
-class InsetInfo;
-
 namespace frontend {
 
 class GuiInfo : public DialogView, public Ui::InfoUi
@@ -32,17 +30,22 @@ public:
        //@{
        void applyView();
        void updateView();
-       void dispatchParams();
+       void dispatchParams() {}
        void enableView(bool enable);
        bool isBufferDependent() const { return true; }
        //@}
 
 private Q_SLOTS:
+       void on_newPB_clicked();
        void on_closePB_clicked();
+       void on_typeCO_currentIndexChanged(int);
+       void on_nameLE_textChanged(QString const &);
 
 private:
-       ///
-       InsetInfo * inset() const;
+       void paramsToDialog();
+       void dialogToParams();
+       QString type_;
+       QString name_;
 };
 
 } // namespace frontend