summaryrefslogtreecommitdiffstats
path: root/gui/dialogs/ScreenshotDialog.h
diff options
context:
space:
mode:
authorrobotbrain <robotbrainify@gmail.com>2014-02-23 16:14:24 -0500
committerrobotbrain <robotbrainify@gmail.com>2014-02-23 16:14:24 -0500
commit4a77524b059c12165e20b38de6c0d4ed08e56419 (patch)
tree72212e305886d4cf37a387bb816b3397a0e56e31 /gui/dialogs/ScreenshotDialog.h
parent5cf599673db88b39100ffca78e10bbe5e10200d7 (diff)
downloadMultiMC-4a77524b059c12165e20b38de6c0d4ed08e56419.tar
MultiMC-4a77524b059c12165e20b38de6c0d4ed08e56419.tar.gz
MultiMC-4a77524b059c12165e20b38de6c0d4ed08e56419.tar.lz
MultiMC-4a77524b059c12165e20b38de6c0d4ed08e56419.tar.xz
MultiMC-4a77524b059c12165e20b38de6c0d4ed08e56419.zip
Initial stuff. It doesnt work.
Diffstat (limited to 'gui/dialogs/ScreenshotDialog.h')
-rw-r--r--gui/dialogs/ScreenshotDialog.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/gui/dialogs/ScreenshotDialog.h b/gui/dialogs/ScreenshotDialog.h
new file mode 100644
index 00000000..d3f629e7
--- /dev/null
+++ b/gui/dialogs/ScreenshotDialog.h
@@ -0,0 +1,29 @@
+#pragma once
+
+#include <QDialog>
+#include "logic/lists/ScreenshotList.h"
+
+class BaseInstance;
+
+namespace Ui
+{
+class ScreenshotDialog;
+}
+
+class ScreenshotDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ScreenshotDialog(ScreenshotList *list, QWidget *parent = 0);
+ ~ScreenshotDialog();
+
+ QList<ScreenShot *> selected();
+
+private
+slots:
+
+private:
+ Ui::ScreenshotDialog *ui;
+ ScreenshotList *m_list;
+};