extrainfodialog.h
author anng888
Thu, 06 Dec 2007 18:43:23 +0000
changeset 633 dad2c8993342
parent 466 dd1d5832086b
permissions -rw-r--r--
- Make the Win32 call to "unzip" use a minimized window.
- Clean up process and thread handles from "unzip".
     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