extrainfodialog.h
author insilmaril
Thu, 08 Nov 2007 15:28:03 +0000
changeset 616 16d63fc9ae42
parent 466 dd1d5832086b
permissions -rw-r--r--
1.11.2 split up of xml helper functions. started to work on attributes
     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