pollymc/gui/dialogs/ScreenshotDialog.h

39 lines
551 B
C
Raw Normal View History

2014-02-24 02:44:24 +05:30
#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();
enum
{
NothingDone = 0x42
};
QList<ScreenShot *> uploaded() const;
2014-02-24 02:44:24 +05:30
private
slots:
void on_buttonBox_accepted();
2014-02-24 02:44:24 +05:30
private:
Ui::ScreenshotDialog *ui;
ScreenshotList *m_list;
QList<ScreenShot *> m_uploaded;
QList<ScreenShot *> selected() const;
2014-02-24 02:44:24 +05:30
};