- Remove duplicated image rotation reading code, have the image selector logic just pass this up via the per image options
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QPixmap>
|
|
#include "imageselector.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
class QLabel;
|
|
class QKeyEvent;
|
|
class Overlay;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
void keyPressEvent(QKeyEvent* event);
|
|
void resizeEvent(QResizeEvent* event);
|
|
~MainWindow();
|
|
void setImage(const std::string& path, const ImageOptions_t &options);
|
|
void setBlurRadius(unsigned int blurRadius);
|
|
void setBackgroundOpacity(unsigned int opacity);
|
|
void warn(std::string text);
|
|
void setOverlay(Overlay* overlay);
|
|
void setDebugMode(bool debugModeIn) {debugMode = debugModeIn;}
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
|
|
std::string currentImage;
|
|
unsigned int blurRadius = 20;
|
|
unsigned int backgroundOpacity = 150;
|
|
ImageOptions_t imageOptions;
|
|
bool debugMode = false;
|
|
|
|
Overlay* overlay;
|
|
|
|
void drawText(QPixmap& image, int margin, int fontsize, QString text, int alignment);
|
|
|
|
void updateImage(bool immediately);
|
|
int getImageRotation();
|
|
|
|
QPixmap getBlurredBackground(const QPixmap& originalSize, const QPixmap& scaled);
|
|
QPixmap getRotatedPixmap(const QPixmap& p);
|
|
QPixmap getScaledPixmap(const QPixmap& p);
|
|
void drawBackground(const QPixmap& originalSize, const QPixmap& scaled);
|
|
void drawForeground(QPixmap& background, const QPixmap& foreground);
|
|
QPixmap blur(const QPixmap& input);
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|