src/prompts.h

changeset 12
755bd43b2f9b
child 13
9bdddd2ccde6
--- /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 <QDialog>
+#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

mercurial