]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - extrainfodialog.h
New upstream version 2.9.22
[sven/vym.git] / extrainfodialog.h
diff --git a/extrainfodialog.h b/extrainfodialog.h
deleted file mode 100644 (file)
index 8cc6c98..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef EXTRAINFODIALOG_H
-#define EXTRAINFODIALOG_H
-
-#include "ui_extrainfodialog.h"
-
-/* \brief Dialog to display and edit map specific information like author, comment, etc. 
-*/
-
-class ExtraInfoDialog : public QDialog
-{
-    Q_OBJECT
-
-public:
-    ExtraInfoDialog(QWidget* parent = 0);
-
-    virtual QString getComment();
-    virtual QString getAuthor();
-    virtual QString getMapTitle();
-    virtual void setStats( const QString & s );
-    void setReadOnly( bool b );
-    bool isReadOnly();
-
-public slots:
-    virtual void setMapName( const QString & s );
-    virtual void setMapTitle( const QString & s );
-    virtual void setComment( const QString & s );
-    virtual void setAuthor( const QString & s );
-
-private:
-    Ui::ExtraInfoDialog ui;
-    bool readOnly;
-
-};
-
-#endif // EXTRAINFODIALOG_H