Menu

[c54480]: / extrainfodialog.h  Maximize  Restore  History

Download this file

37 lines (27 with data), 851 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#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 setFileLocation( 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
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.