This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
632 B

7 years ago
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QLabel>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
double scaleFactor;
void setImage(const QImage &newImage, int imageIndex); // QLabel* imageLabel);
void createActions();
bool loadImage(QString &fileName, int imageIndex); // QLabel* imageLabel);
Ui::MainWindow *ui;
QImage upperImage;
QImage lowerImage;
public slots:
void showGraphics();
void launchGame();
};
#endif // MAINWINDOW_H