Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef REPLACELOG_H
00028 #define REPLACELOG_H
00029
00030 #include <QGpGuiTools.h>
00031 #include "ui_ReplaceLog.h"
00032 #include "MonoStationDLLExport.h"
00033
00034 namespace MonoStation {
00035
00036 class MONOSTATION_EXPORT ReplaceLog : public Dialog, public Ui::ReplaceLog
00037 {
00038 Q_OBJECT
00039
00040 public:
00041 ReplaceLog(QWidget* parent=0, Qt::WFlags fl=0);
00042 ~ReplaceLog();
00043
00044 virtual bool isReplaceAll();
00045 virtual bool isYes();
00046 virtual bool isNo();
00047 virtual bool isCancel();
00048 virtual bool isRename();
00049
00050 public slots:
00051 virtual void setStatName(QString statName);
00052 virtual void buttonYes_clicked();
00053 virtual void buttonNo_clicked();
00054 virtual void buttonCancel_clicked();
00055 virtual void buttonRename_clicked();
00056
00057 protected:
00058 short _result;
00059
00060 };
00061
00062 }
00063
00064 #endif // REPLACELOG_H