summaryrefslogtreecommitdiffstats
path: root/gui/dialogs/ScreenshotDialog.h
blob: d3f629e729224d0ec9aaae5fd1d2fcd9a1b0a655 (plain)
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
#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;
};