* image updating in seperate class ImageSwitcher * image selection in class ImageSelector
177 lines
4.2 KiB
C++
177 lines
4.2 KiB
C++
#include "mainwindow.h"
|
|
#include "ui_mainwindow.h"
|
|
#include <QLabel>
|
|
#include <QPixmap>
|
|
#include <QBitmap>
|
|
#include <QKeyEvent>
|
|
#include <QGraphicsBlurEffect>
|
|
#include <libexif/exif-data.h>
|
|
#include <iostream>
|
|
#include <QPainter>
|
|
#include <QTimer>
|
|
#include <QGraphicsScene>
|
|
#include <QGraphicsPixmapItem>
|
|
#include <sstream>
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::MainWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
|
|
|
|
QTimer::singleShot(5, this, SLOT(showFullScreen()));
|
|
QApplication::setOverrideCursor(Qt::BlankCursor);
|
|
QLabel *label = this->findChild<QLabel*>("image");
|
|
setCentralWidget(label);
|
|
label->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
|
|
update();
|
|
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void MainWindow::keyPressEvent(QKeyEvent* event)
|
|
{
|
|
if(event->key() == Qt::Key_Escape)
|
|
{
|
|
QCoreApplication::quit();
|
|
}
|
|
else
|
|
QWidget::keyPressEvent(event);
|
|
}
|
|
|
|
void MainWindow::resizeEvent(QResizeEvent* event)
|
|
{
|
|
QMainWindow::resizeEvent(event);
|
|
updateImage();
|
|
}
|
|
|
|
void MainWindow::setImage(std::string path)
|
|
{
|
|
currentImage = path;
|
|
updateImage();
|
|
}
|
|
|
|
int MainWindow::getImageRotation()
|
|
{
|
|
if (currentImage == "")
|
|
return 0;
|
|
|
|
int orientation = 0;
|
|
ExifData *exifData = exif_data_new_from_file(currentImage.c_str());
|
|
if (exifData)
|
|
{
|
|
ExifByteOrder byteOrder = exif_data_get_byte_order(exifData);
|
|
ExifEntry *exifEntry = exif_data_get_entry(exifData, EXIF_TAG_ORIENTATION);
|
|
|
|
if (exifEntry)
|
|
{
|
|
orientation = exif_get_short(exifEntry->data, byteOrder);
|
|
}
|
|
exif_data_free(exifData);
|
|
}
|
|
|
|
int degrees = 0;
|
|
switch(orientation) {
|
|
case 8:
|
|
degrees = 270;
|
|
break;
|
|
case 3:
|
|
degrees = 180;
|
|
break;
|
|
case 6:
|
|
degrees = 90;
|
|
break;
|
|
}
|
|
|
|
return degrees;
|
|
}
|
|
|
|
void MainWindow::updateImage()
|
|
{
|
|
if (currentImage == "")
|
|
return;
|
|
|
|
QPixmap p( currentImage.c_str() );
|
|
QPixmap rotated = getRotatedPixmap(p);
|
|
QPixmap scaled = getScaledPixmap(rotated);
|
|
|
|
QLabel *label = this->findChild<QLabel*>("image");
|
|
label->setPixmap(scaled);
|
|
|
|
std::stringstream style;
|
|
style << "QLabel { background-color: rgba(0, 0, 0, " << (255 - backgroundOpacity) << ");}";
|
|
label->setStyleSheet(style.str().c_str());
|
|
|
|
drawBackground(rotated, scaled);
|
|
|
|
update();
|
|
}
|
|
|
|
QPixmap MainWindow::getRotatedPixmap(const QPixmap& p)
|
|
{
|
|
QMatrix matrix;
|
|
matrix.rotate(getImageRotation());
|
|
return p.transformed(matrix);
|
|
}
|
|
|
|
QPixmap MainWindow::getScaledPixmap(const QPixmap& p)
|
|
{
|
|
int w = width();
|
|
int h = height();
|
|
return p.scaled(w, h, Qt::KeepAspectRatio);
|
|
}
|
|
|
|
void MainWindow::drawBackground(const QPixmap& originalSize, const QPixmap& scaled)
|
|
{
|
|
QPalette palette;
|
|
if (scaled.width() < width()) {
|
|
QPixmap background = blur(originalSize.scaledToWidth(width()));
|
|
QRect rect(0, (background.height() - height())/2, width(), height());
|
|
background = background.copy(rect);
|
|
palette.setBrush(QPalette::Background, background);
|
|
} else {
|
|
QPixmap background = blur(originalSize.scaledToHeight(height()));
|
|
QRect rect((background.width() - width())/2, 0, width(), height());
|
|
background = background.copy(rect);
|
|
palette.setBrush(QPalette::Background, background);
|
|
}
|
|
this->setPalette(palette);
|
|
}
|
|
|
|
QPixmap MainWindow::blur(const QPixmap& input)
|
|
{
|
|
QGraphicsScene scene;
|
|
QGraphicsPixmapItem item;
|
|
item.setPixmap(input);
|
|
QGraphicsBlurEffect effect;
|
|
effect.setBlurRadius(blurRadius);
|
|
item.setGraphicsEffect(&effect);
|
|
scene.addItem(&item);
|
|
QImage res(input.size(), QImage::Format_ARGB32);
|
|
res.fill(Qt::transparent);
|
|
QPainter ptr(&res);
|
|
scene.render(&ptr, QRectF(), QRectF( 0, 0, input.width(), input.height()) );
|
|
return QPixmap::fromImage(res);
|
|
}
|
|
|
|
void MainWindow::setBlurRadius(unsigned int blurRadius)
|
|
{
|
|
this->blurRadius = blurRadius;
|
|
}
|
|
|
|
void MainWindow::setBackgroundOpacity(unsigned int backgroundOpacity)
|
|
{
|
|
this->backgroundOpacity = backgroundOpacity;
|
|
}
|
|
|
|
void MainWindow::warn(std::string text)
|
|
{
|
|
QLabel *label = this->findChild<QLabel*>("image");
|
|
label->setText(text.c_str());
|
|
}
|