extrainfodialog.h
author insilmaril
Wed, 20 May 2009 15:40:14 +0000
changeset 772 e3f722759c7e
parent 466 dd1d5832086b
permissions -rw-r--r--
Fixed segfault when closing a map
     1 #ifndef EXTRAINFODIALOG_H
     2 #define EXTRAINFODIALOG_H
     3 
     4 #include "ui_extrainfodialog.h"
     5 
     6 /* \brief Dialog to display and edit map specific information like author, comment, etc. 
     7 */
     8 
     9 class ExtraInfoDialog : public QDialog
    10 {
    11     Q_OBJECT
    12 
    13 public:
    14     ExtraInfoDialog(QWidget* parent = 0);
    15 
    16     virtual QString getComment();
    17     virtual QString getAuthor();
    18     virtual void setStats( const QString & s );
    19 
    20 public slots:
    21     virtual void setMapName( const QString & s );
    22     virtual void setComment( const QString & s );
    23     virtual void setAuthor( const QString & s );
    24 
    25 private:
    26 	Ui::ExtraInfoDialog ui;
    27 
    28 };
    29 
    30 #endif // EXTRAINFODIALOG_H