diff -r 3ddebf76105e -r 755bd43b2f9b src/prompts.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/prompts.h Sun Aug 11 03:05:24 2013 +0300 @@ -0,0 +1,29 @@ +#ifndef PROMPTS_H +#define PROMPTS_H + +#include +#include "main.h" +#include "types.h" + +class QAbstractButton; +class Ui_UnknownVersion; + +class UnknownVersionPrompt : public QDialog { + Q_OBJECT + +public: + explicit UnknownVersionPrompt (str fileName, str binaryName, bool isRelease, + QWidget* parent = null, Qt::WindowFlags f = 0); + virtual ~UnknownVersionPrompt(); + +public slots: + void findBinary(); + void addBinary(); + +private: + Ui_UnknownVersion* ui; + QString m_binaryString; + bool m_isRelease; +}; + +#endif // PROMPTS_H \ No newline at end of file