blob: dfe2cfdc7ec94bb733f24a67afe19425f3e64683 (
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
30
31
32
33
34
35
|
#pragma once
#include <QDialog>
#include <QString>
#include <utility>
#include <vector>
namespace Ui
{
class FomodScreenshotDialog;
}
class FomodScreenshotDialog : public QDialog
{
Q_OBJECT
public:
explicit FomodScreenshotDialog(
QWidget* parent, std::vector<std::pair<QString, QString>> carouselImages,
int carouselIndex);
~FomodScreenshotDialog();
private slots:
void on_closeButton_clicked();
void on_navigateLeft_clicked();
void on_navigateRight_clicked();
private:
void selectedScreenshotChanged();
int getSelectedScreenshot();
Ui::FomodScreenshotDialog* ui;
std::vector<std::pair<QString, QString>> m_carouselImages;
};
|