Add clang-format; Make text and blur less annoying
I didn't read the clang-format documentation properly
This commit is contained in:
parent
7737b77671
commit
37ce6f1eda
47
.clang-format
Normal file
47
.clang-format
Normal file
@ -0,0 +1,47 @@
|
||||
AccessModifierOffset: 0
|
||||
AlignEscapedNewlinesLeft: false
|
||||
AlignTrailingComments: true
|
||||
AllowAllParametersOfDeclarationOnNextLine: false
|
||||
AllowShortFunctionsOnASingleLine: false
|
||||
AllowShortIfStatementsOnASingleLine: true
|
||||
AllowShortLoopsOnASingleLine: true
|
||||
AlwaysBreakBeforeMultilineStrings: false
|
||||
AlwaysBreakTemplateDeclarations: false
|
||||
BinPackParameters: false
|
||||
BreakBeforeBinaryOperators: true
|
||||
BreakBeforeBraces: Attach
|
||||
BreakBeforeTernaryOperators: false
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
ColumnLimit: 120
|
||||
CommentPragmas: ''
|
||||
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||
ConstructorInitializerIndentWidth: 0
|
||||
ContinuationIndentWidth: 0
|
||||
Cpp11BracedListStyle: false
|
||||
DerivePointerBinding: false
|
||||
IndentCaseLabels: false
|
||||
IndentFunctionDeclarationAfterType: false
|
||||
IndentWidth: 4
|
||||
Language: Cpp
|
||||
MaxEmptyLinesToKeep: 2
|
||||
NamespaceIndentation: None
|
||||
ObjCSpaceAfterProperty: true
|
||||
ObjCSpaceBeforeProtocolList: true
|
||||
PenaltyBreakBeforeFirstCallParameter: 100
|
||||
PenaltyBreakComment: 100
|
||||
PenaltyBreakFirstLessLess: 0
|
||||
PenaltyBreakString: 100
|
||||
PenaltyExcessCharacter: 1
|
||||
PenaltyReturnTypeOnItsOwnLine: 20
|
||||
PointerBindsToType: false
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceInEmptyParentheses: false
|
||||
SpacesBeforeTrailingComments: 1
|
||||
SpacesInAngles: false
|
||||
SpacesInCStyleCastParentheses: false
|
||||
SpacesInContainerLiterals: false
|
||||
SpacesInParentheses: false
|
||||
Standard: Auto
|
||||
TabWidth: 4
|
||||
UseTab: Never
|
@ -9,28 +9,30 @@
|
||||
#include <settings.hpp>
|
||||
|
||||
CropEditor::CropEditor(QPixmap *image, QObject *parent) : QObject(parent) {
|
||||
scene = new CropScene(parent, image);
|
||||
view = new CropView(scene);
|
||||
QPixmap *scaled = new QPixmap();
|
||||
image->scaled(view->width(), view->height()).swap(*scaled);
|
||||
pixmapItem = new QGraphicsPixmapItem(*image);
|
||||
pixmapItem->setZValue(-1);
|
||||
scene->addItem(pixmapItem);
|
||||
scene->setSceneRect(image->rect());
|
||||
view->setGeometry(0, 0, image->width(), image->height());
|
||||
view->showFullScreen();
|
||||
scene = new CropScene(parent, image);
|
||||
view = new CropView(scene);
|
||||
QPixmap *scaled = new QPixmap();
|
||||
image->scaled(view->width(), view->height()).swap(*scaled);
|
||||
pixmapItem = new QGraphicsPixmapItem(*image);
|
||||
pixmapItem->setZValue(-1);
|
||||
scene->addItem(pixmapItem);
|
||||
scene->setSceneRect(image->rect());
|
||||
view->setGeometry(0, 0, image->width(), image->height());
|
||||
view->showFullScreen();
|
||||
|
||||
QTimer::singleShot(0, [&] { view->showFullScreen(); });
|
||||
QTimer::singleShot(0, [&] { view->showFullScreen(); });
|
||||
|
||||
connect(scene, &CropScene::closedWithRect, this, &CropEditor::crop);
|
||||
connect(scene, &CropScene::closedWithRect, this, &CropEditor::crop);
|
||||
}
|
||||
|
||||
CropEditor::~CropEditor() { delete scene; }
|
||||
CropEditor::~CropEditor() {
|
||||
delete scene;
|
||||
}
|
||||
|
||||
void CropEditor::crop(QRect rect) {
|
||||
QPixmap map = view->grab(rect);
|
||||
QPixmap *cropp = new QPixmap;
|
||||
map.swap(*cropp);
|
||||
delete view;
|
||||
emit cropped(cropp);
|
||||
QPixmap map = view->grab(rect);
|
||||
QPixmap *cropp = new QPixmap;
|
||||
map.swap(*cropp);
|
||||
delete view;
|
||||
emit cropped(cropp);
|
||||
}
|
||||
|
@ -9,18 +9,18 @@
|
||||
#include <QPixmap>
|
||||
|
||||
class CropEditor : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
CropEditor(QPixmap *image, QObject *parent = 0);
|
||||
~CropEditor();
|
||||
signals:
|
||||
QPixmap *cropped(QPixmap *pixmap);
|
||||
Q_OBJECT
|
||||
public:
|
||||
CropEditor(QPixmap *image, QObject *parent = 0);
|
||||
~CropEditor();
|
||||
signals:
|
||||
QPixmap *cropped(QPixmap *pixmap);
|
||||
|
||||
private:
|
||||
void crop(QRect rect);
|
||||
CropScene *scene = nullptr;
|
||||
CropView *view = nullptr;
|
||||
QGraphicsPixmapItem *pixmapItem = nullptr;
|
||||
private:
|
||||
void crop(QRect rect);
|
||||
CropScene *scene = nullptr;
|
||||
CropView *view = nullptr;
|
||||
QGraphicsPixmapItem *pixmapItem = nullptr;
|
||||
};
|
||||
|
||||
#endif // CROPEDITOR_HPP
|
||||
|
@ -17,162 +17,154 @@
|
||||
#include <settings.hpp>
|
||||
|
||||
CropScene::CropScene(QObject *parent, QPixmap *pixmap)
|
||||
: QGraphicsScene(parent), prevButtons(Qt::NoButton),
|
||||
drawingSelectionMaker([] { return nullptr; }),
|
||||
_font(settings::settings().value("font", QFont()).value<QFont>()) {
|
||||
pen().setColor(
|
||||
settings::settings().value("penColor", pen().color()).value<QColor>());
|
||||
pen().setCosmetic(
|
||||
settings::settings().value("penCosmetic", pen().isCosmetic()).toBool());
|
||||
pen().setWidthF(
|
||||
settings::settings().value("penWidth", pen().widthF()).toFloat());
|
||||
brush().setColor(settings::settings()
|
||||
.value("brushColor", brush().color())
|
||||
.value<QColor>());
|
||||
: QGraphicsScene(parent), drawingSelectionMaker([] { return nullptr; }), prevButtons(Qt::NoButton),
|
||||
_font(settings::settings().value("font", QFont()).value<QFont>()) {
|
||||
pen().setColor(settings::settings().value("penColor", pen().color()).value<QColor>());
|
||||
pen().setCosmetic(settings::settings().value("penCosmetic", pen().isCosmetic()).toBool());
|
||||
pen().setWidthF(settings::settings().value("penWidth", pen().widthF()).toFloat());
|
||||
brush().setColor(settings::settings().value("brushColor", brush().color()).value<QColor>());
|
||||
|
||||
addDrawingAction(menu, "Dot", [] { return new DotItem; });
|
||||
addDrawingAction(menu, "Path", [] { return new PathItem; });
|
||||
addDrawingAction(menu, "Blur", [] { return new BlurItem; });
|
||||
addDrawingAction(menu, "Straight line", [] { return new LineItem; });
|
||||
addDrawingAction(menu, "Text", [] { return new TextItem; });
|
||||
addDrawingAction(menu, "Dot", [] { return new DotItem; });
|
||||
addDrawingAction(menu, "Path", [] { return new PathItem; });
|
||||
addDrawingAction(menu, "Blur", [] { return new BlurItem; });
|
||||
addDrawingAction(menu, "Straight line", [] { return new LineItem; });
|
||||
addDrawingAction(menu, "Text", [] { return new TextItem; });
|
||||
|
||||
QAction *reset = menu.addAction("Reset");
|
||||
connect(reset, &QAction::triggered,
|
||||
[&] { setDrawingSelection("None", [] { return nullptr; }); });
|
||||
QAction *reset = menu.addAction("Reset");
|
||||
connect(reset, &QAction::triggered, [&] { setDrawingSelection("None", [] { return nullptr; }); });
|
||||
|
||||
menu.addSeparator();
|
||||
QAction *settings = new QAction;
|
||||
settings->setText("Settings");
|
||||
menu.addSeparator();
|
||||
display = menu.addAction(drawingName);
|
||||
display->setDisabled(true);
|
||||
connect(settings, &QAction::triggered,
|
||||
[&] { BrushPenSelection(this).exec(); });
|
||||
menu.addAction(settings);
|
||||
menu.addSeparator();
|
||||
QAction *settings = new QAction;
|
||||
settings->setText("Settings");
|
||||
menu.addSeparator();
|
||||
display = menu.addAction(drawingName);
|
||||
display->setDisabled(true);
|
||||
connect(settings, &QAction::triggered, [&] { BrushPenSelection(this).exec(); });
|
||||
menu.addAction(settings);
|
||||
|
||||
connect(menu.addAction("Set Font"), &QAction::triggered, this,
|
||||
&CropScene::fontAsk);
|
||||
connect(menu.addAction("Set Font"), &QAction::triggered, this, &CropScene::fontAsk);
|
||||
|
||||
_pixmap = pixmap;
|
||||
QTimer::singleShot(0, [&] {
|
||||
QPolygonF poly;
|
||||
poly.append(sceneRect().topLeft());
|
||||
poly.append(sceneRect().topRight());
|
||||
poly.append(sceneRect().bottomRight());
|
||||
poly.append(sceneRect().bottomLeft());
|
||||
polyItem = new QGraphicsPolygonItem(poly);
|
||||
polyItem->setBrush(QBrush(QColor(0, 0, 0, 191)));
|
||||
polyItem->setPen(QPen(Qt::NoPen));
|
||||
addItem(polyItem);
|
||||
});
|
||||
_pixmap = pixmap;
|
||||
QTimer::singleShot(0, [&] {
|
||||
QPolygonF poly;
|
||||
poly.append(sceneRect().topLeft());
|
||||
poly.append(sceneRect().topRight());
|
||||
poly.append(sceneRect().bottomRight());
|
||||
poly.append(sceneRect().bottomLeft());
|
||||
polyItem = new QGraphicsPolygonItem(poly);
|
||||
polyItem->setBrush(QBrush(QColor(0, 0, 0, 191)));
|
||||
polyItem->setPen(QPen(Qt::NoPen));
|
||||
addItem(polyItem);
|
||||
});
|
||||
}
|
||||
|
||||
CropScene::~CropScene() { delete drawingSelection; }
|
||||
CropScene::~CropScene() {
|
||||
delete drawingSelection;
|
||||
}
|
||||
|
||||
QPen &CropScene::pen() { return _pen; }
|
||||
QPen &CropScene::pen() {
|
||||
return _pen;
|
||||
}
|
||||
|
||||
QBrush &CropScene::brush() { return _brush; }
|
||||
QBrush &CropScene::brush() {
|
||||
return _brush;
|
||||
}
|
||||
|
||||
QFont &CropScene::font() { return _font; }
|
||||
QFont &CropScene::font() {
|
||||
return _font;
|
||||
}
|
||||
|
||||
void CropScene::setDrawingSelection(QString name,
|
||||
std::function<DrawItem *()> drawAction) {
|
||||
drawingSelectionMaker = drawAction;
|
||||
drawingSelection = drawAction();
|
||||
drawingName = name;
|
||||
if (drawingSelection)
|
||||
drawingSelection->init(this);
|
||||
void CropScene::setDrawingSelection(QString name, std::function<DrawItem *()> drawAction) {
|
||||
drawingSelectionMaker = drawAction;
|
||||
drawingSelection = drawAction();
|
||||
drawingName = name;
|
||||
if (drawingSelection)
|
||||
if (!drawingSelection->init(this)) setDrawingSelection("None", [] { return nullptr; });
|
||||
}
|
||||
|
||||
void CropScene::fontAsk() {
|
||||
bool ok = false;
|
||||
QFont font = QFontDialog::getFont(&ok, this->font(), nullptr, "Font to use");
|
||||
if (ok)
|
||||
_font = font;
|
||||
bool ok = false;
|
||||
QFont font = QFontDialog::getFont(&ok, this->font(), nullptr, "Font to use");
|
||||
if (ok) _font = font;
|
||||
}
|
||||
|
||||
void CropScene::mouseMoveEvent(QGraphicsSceneMouseEvent *e) {
|
||||
auto buttons = e->buttons();
|
||||
if (buttons == Qt::LeftButton || prevButtons == Qt::NoButton) {
|
||||
if (drawingSelection) {
|
||||
drawingSelection->mouseDragEvent(e, this);
|
||||
} else {
|
||||
QPointF p = e->scenePos();
|
||||
if (rect == nullptr) {
|
||||
rect = new QGraphicsRectItem(p.x(), p.y(), 1, 1);
|
||||
initPos = p;
|
||||
QPen pen(Qt::NoBrush, 1);
|
||||
pen.setColor(Qt::cyan);
|
||||
rect->setPen(pen);
|
||||
addItem(rect);
|
||||
} else {
|
||||
if (prevButtons == Qt::NoButton) {
|
||||
initPos = p;
|
||||
rect->setRect(p.x(), p.y(), 1, 1);
|
||||
auto buttons = e->buttons();
|
||||
if (buttons == Qt::LeftButton || prevButtons == Qt::NoButton) {
|
||||
if (drawingSelection) {
|
||||
drawingSelection->mouseDragEvent(e, this);
|
||||
} else {
|
||||
rect->setRect(
|
||||
QRect(qMin(initPos.x(), p.x()), qMin(initPos.y(), p.y()),
|
||||
qAbs(initPos.x() - p.x()), qAbs(initPos.y() - p.y())));
|
||||
}
|
||||
}
|
||||
QPolygonF poly;
|
||||
QPointF theMagicWikipediaPoint(rect->rect().right(),
|
||||
sceneRect().bottom());
|
||||
poly << sceneRect().topLeft();
|
||||
poly << sceneRect().topRight();
|
||||
poly << sceneRect().bottomRight();
|
||||
poly << theMagicWikipediaPoint;
|
||||
poly << rect->rect().bottomRight();
|
||||
poly << rect->rect().topRight();
|
||||
poly << rect->rect().topLeft();
|
||||
poly << rect->rect().bottomLeft();
|
||||
poly << rect->rect().bottomRight();
|
||||
poly << theMagicWikipediaPoint;
|
||||
poly << sceneRect().bottomLeft();
|
||||
poly << sceneRect().topLeft();
|
||||
QPointF p = e->scenePos();
|
||||
if (rect == nullptr) {
|
||||
rect = new QGraphicsRectItem(p.x(), p.y(), 1, 1);
|
||||
initPos = p;
|
||||
QPen pen(Qt::NoBrush, 1);
|
||||
pen.setColor(Qt::cyan);
|
||||
rect->setPen(pen);
|
||||
addItem(rect);
|
||||
} else {
|
||||
if (prevButtons == Qt::NoButton) {
|
||||
initPos = p;
|
||||
rect->setRect(p.x(), p.y(), 1, 1);
|
||||
} else {
|
||||
rect->setRect(QRect(qMin(initPos.x(), p.x()), qMin(initPos.y(), p.y()), qAbs(initPos.x() - p.x()),
|
||||
qAbs(initPos.y() - p.y())));
|
||||
}
|
||||
}
|
||||
QPolygonF poly;
|
||||
QPointF theMagicWikipediaPoint(rect->rect().right(), sceneRect().bottom());
|
||||
poly << sceneRect().topLeft();
|
||||
poly << sceneRect().topRight();
|
||||
poly << sceneRect().bottomRight();
|
||||
poly << theMagicWikipediaPoint;
|
||||
poly << rect->rect().bottomRight();
|
||||
poly << rect->rect().topRight();
|
||||
poly << rect->rect().topLeft();
|
||||
poly << rect->rect().bottomLeft();
|
||||
poly << rect->rect().bottomRight();
|
||||
poly << theMagicWikipediaPoint;
|
||||
poly << sceneRect().bottomLeft();
|
||||
poly << sceneRect().topLeft();
|
||||
|
||||
this->polyItem->setPolygon(poly);
|
||||
e->accept();
|
||||
this->polyItem->setPolygon(poly);
|
||||
e->accept();
|
||||
}
|
||||
}
|
||||
}
|
||||
prevButtons = buttons;
|
||||
prevButtons = buttons;
|
||||
}
|
||||
|
||||
void CropScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *e) {
|
||||
qDebug() << "release";
|
||||
if (drawingSelection) {
|
||||
drawingSelection->mouseDragEndEvent(e, this);
|
||||
delete drawingSelection;
|
||||
drawingSelection = drawingSelectionMaker();
|
||||
if (drawingSelection)
|
||||
drawingSelection->init(this);
|
||||
}
|
||||
prevButtons = Qt::NoButton;
|
||||
qDebug() << "release";
|
||||
if (drawingSelection) {
|
||||
drawingSelection->mouseDragEndEvent(e, this);
|
||||
delete drawingSelection;
|
||||
drawingSelection = drawingSelectionMaker();
|
||||
if (drawingSelection)
|
||||
if (!drawingSelection->init(this)) setDrawingSelection("None", [] { return nullptr; });
|
||||
}
|
||||
prevButtons = Qt::NoButton;
|
||||
}
|
||||
|
||||
void CropScene::addDrawingAction(QMenu &menu, QString name,
|
||||
std::function<DrawItem *()> item) {
|
||||
QAction *action = new QAction;
|
||||
action->setText(name);
|
||||
connect(action, &QAction::triggered,
|
||||
[this, item, name](bool) { setDrawingSelection(name, item); });
|
||||
menu.addAction(action);
|
||||
void CropScene::addDrawingAction(QMenu &menu, QString name, std::function<DrawItem *()> item) {
|
||||
QAction *action = new QAction;
|
||||
action->setText(name);
|
||||
connect(action, &QAction::triggered, [this, item, name](bool) { setDrawingSelection(name, item); });
|
||||
menu.addAction(action);
|
||||
}
|
||||
|
||||
void CropScene::contextMenuEvent(QGraphicsSceneContextMenuEvent *e) {
|
||||
display->setText(drawingName);
|
||||
menu.exec(e->screenPos());
|
||||
e->accept();
|
||||
display->setText(drawingName);
|
||||
menu.exec(e->screenPos());
|
||||
e->accept();
|
||||
}
|
||||
|
||||
void CropScene::keyReleaseEvent(QKeyEvent *event) {
|
||||
if (event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter)
|
||||
done(); // Segfault
|
||||
if (event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) done(); // Segfault
|
||||
}
|
||||
|
||||
void CropScene::done() {
|
||||
if (rect) {
|
||||
rect->setPen(QPen(Qt::NoPen));
|
||||
emit closedWithRect(rect->rect().toRect());
|
||||
}
|
||||
if (rect) {
|
||||
rect->setPen(QPen(Qt::NoPen));
|
||||
emit closedWithRect(rect->rect().toRect());
|
||||
}
|
||||
}
|
||||
|
@ -14,47 +14,47 @@ class CropScene;
|
||||
#include <cropeditor/drawing/drawitem.hpp>
|
||||
|
||||
class CropScene : public QGraphicsScene {
|
||||
Q_OBJECT
|
||||
public:
|
||||
CropScene(QObject *parent, QPixmap *pixmap);
|
||||
~CropScene();
|
||||
QPen &pen();
|
||||
QBrush &brush();
|
||||
QFont &font();
|
||||
void setDrawingSelection(QString name,
|
||||
std::function<DrawItem *()> drawAction);
|
||||
QPixmap *pixmap() { return _pixmap; }
|
||||
Q_OBJECT
|
||||
public:
|
||||
CropScene(QObject *parent, QPixmap *pixmap);
|
||||
~CropScene();
|
||||
QPen &pen();
|
||||
QBrush &brush();
|
||||
QFont &font();
|
||||
void setDrawingSelection(QString name, std::function<DrawItem *()> drawAction);
|
||||
QPixmap *pixmap() {
|
||||
return _pixmap;
|
||||
}
|
||||
|
||||
public slots:
|
||||
void fontAsk();
|
||||
public slots:
|
||||
void fontAsk();
|
||||
|
||||
signals:
|
||||
void closedWithRect(QRect rect);
|
||||
signals:
|
||||
void closedWithRect(QRect rect);
|
||||
|
||||
protected:
|
||||
void mouseMoveEvent(QGraphicsSceneMouseEvent *e) override;
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent *e) override;
|
||||
void contextMenuEvent(QGraphicsSceneContextMenuEvent *e) override;
|
||||
protected:
|
||||
void mouseMoveEvent(QGraphicsSceneMouseEvent *e) override;
|
||||
void mouseReleaseEvent(QGraphicsSceneMouseEvent *e) override;
|
||||
void contextMenuEvent(QGraphicsSceneContextMenuEvent *e) override;
|
||||
|
||||
void keyReleaseEvent(QKeyEvent *e) override;
|
||||
void keyReleaseEvent(QKeyEvent *e) override;
|
||||
|
||||
private:
|
||||
void addDrawingAction(QMenu &menu, QString name,
|
||||
std::function<DrawItem *()> item);
|
||||
void done();
|
||||
std::function<DrawItem *()> drawingSelectionMaker;
|
||||
QFlags<Qt::MouseButton> prevButtons;
|
||||
QPixmap *_pixmap;
|
||||
QGraphicsRectItem *rect = nullptr;
|
||||
QPointF initPos;
|
||||
QPen _pen;
|
||||
QBrush _brush;
|
||||
QFont _font;
|
||||
QGraphicsPolygonItem *polyItem = nullptr;
|
||||
DrawItem *drawingSelection = nullptr;
|
||||
QMenu menu;
|
||||
QString drawingName = "None";
|
||||
QAction *display;
|
||||
private:
|
||||
void addDrawingAction(QMenu &menu, QString name, std::function<DrawItem *()> item);
|
||||
void done();
|
||||
std::function<DrawItem *()> drawingSelectionMaker;
|
||||
QFlags<Qt::MouseButton> prevButtons;
|
||||
QPixmap *_pixmap;
|
||||
QGraphicsRectItem *rect = nullptr;
|
||||
QPointF initPos;
|
||||
QPen _pen;
|
||||
QBrush _brush;
|
||||
QFont _font;
|
||||
QGraphicsPolygonItem *polyItem = nullptr;
|
||||
DrawItem *drawingSelection = nullptr;
|
||||
QMenu menu;
|
||||
QString drawingName = "None";
|
||||
QAction *display;
|
||||
};
|
||||
|
||||
#endif // CROPSCENE_HPP
|
||||
|
@ -1,21 +1,19 @@
|
||||
#include "cropview.hpp"
|
||||
|
||||
CropView::CropView(QGraphicsScene *scene) : QGraphicsView(scene) {
|
||||
setFrameShape(
|
||||
QFrame::NoFrame); // Time taken to solve: A george99g and 38 minutes.
|
||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setWindowFlags(Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint);
|
||||
setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform |
|
||||
QPainter::HighQualityAntialiasing);
|
||||
setCursor(QCursor(Qt::CrossCursor));
|
||||
setFrameShape(QFrame::NoFrame); // Time taken to solve: A george99g and 38 minutes.
|
||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setWindowFlags(Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint);
|
||||
setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform | QPainter::HighQualityAntialiasing);
|
||||
setCursor(QCursor(Qt::CrossCursor));
|
||||
}
|
||||
|
||||
void CropView::keyPressEvent(QKeyEvent *e) {
|
||||
if (e->key() == Qt::Key_Escape) {
|
||||
close();
|
||||
e->accept();
|
||||
return;
|
||||
}
|
||||
QGraphicsView::keyPressEvent(e);
|
||||
if (e->key() == Qt::Key_Escape) {
|
||||
close();
|
||||
e->accept();
|
||||
return;
|
||||
}
|
||||
QGraphicsView::keyPressEvent(e);
|
||||
}
|
||||
|
@ -5,11 +5,11 @@
|
||||
#include <QKeyEvent>
|
||||
|
||||
class CropView : public QGraphicsView {
|
||||
public:
|
||||
CropView(QGraphicsScene *scene);
|
||||
public:
|
||||
CropView(QGraphicsScene *scene);
|
||||
|
||||
protected:
|
||||
void keyPressEvent(QKeyEvent *e) override;
|
||||
protected:
|
||||
void keyPressEvent(QKeyEvent *e) override;
|
||||
};
|
||||
|
||||
#endif // CROPVIEW_HPP
|
||||
|
@ -3,30 +3,27 @@
|
||||
#include <QDebug>
|
||||
#include <cropeditor/settings/blurdialog.hpp>
|
||||
|
||||
void BlurItem::init(CropScene *) {
|
||||
effect = new QGraphicsBlurEffect;
|
||||
BlurDialog(effect).exec();
|
||||
bool BlurItem::init(CropScene *) {
|
||||
effect = new QGraphicsBlurEffect;
|
||||
return BlurDialog(effect).exec();
|
||||
}
|
||||
|
||||
void BlurItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (pos.isNull()) {
|
||||
pos = e->scenePos();
|
||||
rect = scene->addRect(QRect(e->scenePos().toPoint(), QSize(1, 1)),
|
||||
QPen(Qt::cyan), Qt::NoBrush);
|
||||
pixmap = scene->addPixmap(scene->pixmap()->copy(rect->rect().toRect()));
|
||||
pixmap->setPos(e->scenePos());
|
||||
pixmap->setZValue(rect->zValue() - 0.1);
|
||||
pixmap->setGraphicsEffect(effect);
|
||||
} else {
|
||||
QPointF p = e->scenePos();
|
||||
rect->setRect(QRect(qMin(pos.x(), p.x()), qMin(pos.y(), p.y()),
|
||||
qAbs(pos.x() - p.x()), qAbs(pos.y() - p.y())));
|
||||
pixmap->setPixmap(scene->pixmap()->copy(rect->rect().toRect()));
|
||||
pixmap->setPos(rect->rect().topLeft());
|
||||
}
|
||||
if (pos.isNull()) {
|
||||
pos = e->scenePos();
|
||||
rect = scene->addRect(QRect(e->scenePos().toPoint(), QSize(1, 1)), QPen(Qt::cyan), Qt::NoBrush);
|
||||
pixmap = scene->addPixmap(scene->pixmap()->copy(rect->rect().toRect()));
|
||||
pixmap->setPos(e->scenePos());
|
||||
pixmap->setZValue(rect->zValue() - 0.1);
|
||||
pixmap->setGraphicsEffect(effect);
|
||||
} else {
|
||||
QPointF p = e->scenePos();
|
||||
rect->setRect(QRect(qMin(pos.x(), p.x()), qMin(pos.y(), p.y()), qAbs(pos.x() - p.x()), qAbs(pos.y() - p.y())));
|
||||
pixmap->setPixmap(scene->pixmap()->copy(rect->rect().toRect()));
|
||||
pixmap->setPos(rect->rect().topLeft());
|
||||
}
|
||||
}
|
||||
|
||||
void BlurItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
|
||||
if (rect != nullptr)
|
||||
rect->setPen(Qt::NoPen);
|
||||
if (rect != nullptr) rect->setPen(Qt::NoPen);
|
||||
}
|
||||
|
@ -6,19 +6,22 @@
|
||||
#include <QGraphicsEffect>
|
||||
|
||||
class BlurItem : public DrawItem {
|
||||
public:
|
||||
QString name() { return "Blur"; }
|
||||
~BlurItem() {}
|
||||
public:
|
||||
QString name() {
|
||||
return "Blur";
|
||||
}
|
||||
~BlurItem() {
|
||||
}
|
||||
|
||||
void init(CropScene *) override;
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
bool init(CropScene *) override;
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
|
||||
private:
|
||||
QGraphicsBlurEffect *effect;
|
||||
QPointF pos;
|
||||
QGraphicsRectItem *rect;
|
||||
QGraphicsPixmapItem *pixmap;
|
||||
private:
|
||||
QGraphicsBlurEffect *effect;
|
||||
QPointF pos;
|
||||
QGraphicsRectItem *rect;
|
||||
QGraphicsPixmapItem *pixmap;
|
||||
};
|
||||
|
||||
#endif // BLURITEM_HPP
|
||||
|
@ -1,14 +1,14 @@
|
||||
#include "dotitem.hpp"
|
||||
|
||||
DotItem::DotItem() {}
|
||||
|
||||
DotItem::~DotItem() {}
|
||||
|
||||
void DotItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
scene
|
||||
->addEllipse(e->pos().x() - 1.5, e->pos().y() - 1.5, 3, 3, scene->pen(),
|
||||
scene->brush())
|
||||
->setPos(e->scenePos());
|
||||
DotItem::DotItem() {
|
||||
}
|
||||
|
||||
void DotItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {}
|
||||
DotItem::~DotItem() {
|
||||
}
|
||||
|
||||
void DotItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
scene->addEllipse(e->pos().x() - 1.5, e->pos().y() - 1.5, 3, 3, scene->pen(), scene->brush())->setPos(e->scenePos());
|
||||
}
|
||||
|
||||
void DotItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
|
||||
}
|
||||
|
@ -5,12 +5,14 @@
|
||||
#include "drawitem.hpp"
|
||||
|
||||
class DotItem : public DrawItem {
|
||||
public:
|
||||
DotItem();
|
||||
~DotItem();
|
||||
QString name() { return "Dots (drag to add)"; }
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
public:
|
||||
DotItem();
|
||||
~DotItem();
|
||||
QString name() {
|
||||
return "Dots (drag to add)";
|
||||
}
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
};
|
||||
|
||||
#endif // DOTITEM_HPP
|
||||
|
@ -7,14 +7,16 @@ class DrawItem;
|
||||
#include <cropeditor/cropscene.hpp>
|
||||
|
||||
class DrawItem {
|
||||
public:
|
||||
virtual ~DrawItem() {}
|
||||
virtual QString name() = 0;
|
||||
virtual void init(CropScene *scene) { Q_UNUSED(scene) }
|
||||
virtual void mouseDragEvent(QGraphicsSceneMouseEvent *e,
|
||||
CropScene *scene) = 0;
|
||||
virtual void mouseDragEndEvent(QGraphicsSceneMouseEvent *e,
|
||||
CropScene *scene) = 0;
|
||||
public:
|
||||
virtual ~DrawItem() {
|
||||
}
|
||||
virtual QString name() = 0;
|
||||
virtual bool init(CropScene *scene) {
|
||||
Q_UNUSED(scene)
|
||||
return true;
|
||||
}
|
||||
virtual void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) = 0;
|
||||
virtual void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) = 0;
|
||||
};
|
||||
|
||||
#endif // DRAWITEM_HPP
|
||||
|
@ -1,14 +1,16 @@
|
||||
#include "lineitem.hpp"
|
||||
|
||||
LineItem::LineItem() {}
|
||||
|
||||
void LineItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (init.isNull()) {
|
||||
init = e->scenePos();
|
||||
line = scene->addLine(QLineF(init, init), scene->pen());
|
||||
} else {
|
||||
line->setLine(QLineF(init, e->scenePos()));
|
||||
}
|
||||
LineItem::LineItem() {
|
||||
}
|
||||
|
||||
void LineItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {}
|
||||
void LineItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (init.isNull()) {
|
||||
init = e->scenePos();
|
||||
line = scene->addLine(QLineF(init, init), scene->pen());
|
||||
} else {
|
||||
line->setLine(QLineF(init, e->scenePos()));
|
||||
}
|
||||
}
|
||||
|
||||
void LineItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
|
||||
}
|
||||
|
@ -4,15 +4,17 @@
|
||||
#include "drawitem.hpp"
|
||||
|
||||
class LineItem : public DrawItem {
|
||||
public:
|
||||
LineItem();
|
||||
QString name() override { return "Straight line"; }
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
public:
|
||||
LineItem();
|
||||
QString name() override {
|
||||
return "Straight line";
|
||||
}
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
|
||||
private:
|
||||
QPointF init;
|
||||
QGraphicsLineItem *line;
|
||||
private:
|
||||
QPointF init;
|
||||
QGraphicsLineItem *line;
|
||||
};
|
||||
|
||||
#endif // LINEITEM_HPP
|
||||
|
@ -1,17 +1,21 @@
|
||||
#include "pathitem.hpp"
|
||||
|
||||
PathItem::PathItem() {}
|
||||
|
||||
PathItem::~PathItem() { delete path; }
|
||||
|
||||
void PathItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (path == nullptr) {
|
||||
path = new QPainterPath(e->scenePos());
|
||||
pathItem = scene->addPath(*path, scene->pen(), scene->brush());
|
||||
} else {
|
||||
path->quadTo(path->currentPosition(), e->scenePos());
|
||||
pathItem->setPath(*path);
|
||||
}
|
||||
PathItem::PathItem() {
|
||||
}
|
||||
|
||||
void PathItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {}
|
||||
PathItem::~PathItem() {
|
||||
delete path;
|
||||
}
|
||||
|
||||
void PathItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (path == nullptr) {
|
||||
path = new QPainterPath(e->scenePos());
|
||||
pathItem = scene->addPath(*path, scene->pen(), scene->brush());
|
||||
} else {
|
||||
path->quadTo(path->currentPosition(), e->scenePos());
|
||||
pathItem->setPath(*path);
|
||||
}
|
||||
}
|
||||
|
||||
void PathItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
|
||||
}
|
||||
|
@ -5,16 +5,18 @@
|
||||
#include "drawitem.hpp"
|
||||
|
||||
class PathItem : public DrawItem {
|
||||
public:
|
||||
PathItem();
|
||||
~PathItem();
|
||||
QString name() { return "Path"; }
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
public:
|
||||
PathItem();
|
||||
~PathItem();
|
||||
QString name() {
|
||||
return "Path";
|
||||
}
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *e, CropScene *scene);
|
||||
|
||||
private:
|
||||
QPainterPath *path = nullptr;
|
||||
QGraphicsPathItem *pathItem = nullptr;
|
||||
private:
|
||||
QPainterPath *path = nullptr;
|
||||
QGraphicsPathItem *pathItem = nullptr;
|
||||
};
|
||||
|
||||
#endif // PATHITEM_HPP
|
||||
|
@ -2,24 +2,28 @@
|
||||
#include <QInputDialog>
|
||||
#include <QtMath>
|
||||
|
||||
void TextItem::init(CropScene *) {
|
||||
text = QInputDialog::getText(nullptr, "Text to add", "Input");
|
||||
bool TextItem::init(CropScene *) {
|
||||
bool ok;
|
||||
text = QInputDialog::getText(nullptr, "Text to add", "Input", QLineEdit::Normal, QString(), &ok);
|
||||
return ok;
|
||||
}
|
||||
|
||||
void TextItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
|
||||
if (!textItem) {
|
||||
textItem = scene->addSimpleText(text, scene->font());
|
||||
textItem->setPos(e->scenePos());
|
||||
textItem->setPen(scene->pen());
|
||||
textItem->setBrush(scene->brush());
|
||||
} else {
|
||||
auto ee = 180 + qRadiansToDegrees(
|
||||
qAtan2((textItem->pos().y() - e->scenePos().y()),
|
||||
(textItem->pos().x() - e->scenePos().x())));
|
||||
textItem->setRotation(ee);
|
||||
}
|
||||
if (!textItem) {
|
||||
textItem = scene->addSimpleText(text, scene->font());
|
||||
textItem->setPos(e->scenePos());
|
||||
textItem->setPen(scene->pen());
|
||||
textItem->setBrush(scene->brush());
|
||||
} else {
|
||||
auto ee
|
||||
= 180 + qRadiansToDegrees(qAtan2((textItem->pos().y() - e->scenePos().y()), (textItem->pos().x() - e->scenePos().x())));
|
||||
textItem->setRotation(ee);
|
||||
}
|
||||
}
|
||||
|
||||
void TextItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {}
|
||||
void TextItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
|
||||
}
|
||||
|
||||
QString TextItem::name() { return "Text"; }
|
||||
QString TextItem::name() {
|
||||
return "Text";
|
||||
}
|
||||
|
@ -5,15 +5,15 @@
|
||||
#include <QGraphicsSimpleTextItem>
|
||||
|
||||
class TextItem : public DrawItem {
|
||||
public:
|
||||
QString name() override;
|
||||
void init(CropScene *) override;
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
public:
|
||||
QString name() override;
|
||||
bool init(CropScene *) override;
|
||||
void mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) override;
|
||||
void mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) override;
|
||||
|
||||
private:
|
||||
QGraphicsSimpleTextItem *textItem = nullptr;
|
||||
QString text;
|
||||
private:
|
||||
QGraphicsSimpleTextItem *textItem = nullptr;
|
||||
QString text;
|
||||
};
|
||||
|
||||
#endif // TEXTITEM_HPP
|
||||
|
@ -6,38 +6,38 @@
|
||||
#include <QDoubleSpinBox>
|
||||
#include <QSlider>
|
||||
|
||||
BlurDialog::BlurDialog(QGraphicsBlurEffect *e, QWidget *parent)
|
||||
: QDialog(parent), ui(new Ui::BlurDialog) {
|
||||
effect = e;
|
||||
ui->setupUi(this);
|
||||
ui->animated->setChecked(
|
||||
effect->blurHints().testFlag(QGraphicsBlurEffect::AnimationHint));
|
||||
ui->performance->setChecked(
|
||||
effect->blurHints().testFlag(QGraphicsBlurEffect::PerformanceHint));
|
||||
ui->quality->setChecked(
|
||||
effect->blurHints().testFlag(QGraphicsBlurEffect::QualityHint));
|
||||
ui->radSlider->setValue(effect->blurRadius() * 100);
|
||||
ui->radSpinner->setValue(effect->blurRadius());
|
||||
connect(ui->buttonBox, &QDialogButtonBox::accepted, [&] {
|
||||
QFlags<QGraphicsBlurEffect::BlurHint> hints;
|
||||
hints.setFlag(QGraphicsBlurEffect::AnimationHint,
|
||||
ui->animated->isChecked());
|
||||
hints.setFlag(QGraphicsBlurEffect::PerformanceHint,
|
||||
ui->performance->isChecked());
|
||||
hints.setFlag(QGraphicsBlurEffect::QualityHint, ui->quality->isChecked());
|
||||
effect->setBlurHints(hints);
|
||||
effect->setBlurRadius(ui->radSpinner->value());
|
||||
close();
|
||||
});
|
||||
connect(ui->buttonBox, &QDialogButtonBox::rejected, [&] { close(); });
|
||||
BlurDialog::BlurDialog(QGraphicsBlurEffect *e, QWidget *parent) : QDialog(parent), ui(new Ui::BlurDialog) {
|
||||
effect = e;
|
||||
ui->setupUi(this);
|
||||
ui->animated->setChecked(effect->blurHints().testFlag(QGraphicsBlurEffect::AnimationHint));
|
||||
ui->performance->setChecked(effect->blurHints().testFlag(QGraphicsBlurEffect::PerformanceHint));
|
||||
ui->quality->setChecked(effect->blurHints().testFlag(QGraphicsBlurEffect::QualityHint));
|
||||
ui->radSlider->setValue(effect->blurRadius() * 100);
|
||||
ui->radSpinner->setValue(effect->blurRadius());
|
||||
connect(ui->buttonBox, &QDialogButtonBox::accepted, [&] {
|
||||
QFlags<QGraphicsBlurEffect::BlurHint> hints;
|
||||
hints.setFlag(QGraphicsBlurEffect::AnimationHint, ui->animated->isChecked());
|
||||
hints.setFlag(QGraphicsBlurEffect::PerformanceHint, ui->performance->isChecked());
|
||||
hints.setFlag(QGraphicsBlurEffect::QualityHint, ui->quality->isChecked());
|
||||
effect->setBlurHints(hints);
|
||||
effect->setBlurRadius(ui->radSpinner->value());
|
||||
setResult(QDialog::Accepted);
|
||||
close();
|
||||
});
|
||||
connect(ui->buttonBox, &QDialogButtonBox::rejected, [&] {
|
||||
setResult(QDialog::Rejected);
|
||||
close();
|
||||
});
|
||||
}
|
||||
|
||||
BlurDialog::~BlurDialog() { delete ui; }
|
||||
BlurDialog::~BlurDialog() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void BlurDialog::on_radSpinner_valueChanged(double arg1) {
|
||||
ui->radSlider->setValue(arg1 * 100);
|
||||
ui->radSlider->setValue(arg1 * 100);
|
||||
}
|
||||
|
||||
void BlurDialog::on_radSlider_sliderMoved(int position) {
|
||||
ui->radSpinner->setValue(position / 100.);
|
||||
ui->radSpinner->setValue(position / 100.);
|
||||
}
|
||||
|
@ -9,19 +9,19 @@ class BlurDialog;
|
||||
}
|
||||
|
||||
class BlurDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit BlurDialog(QGraphicsBlurEffect *effect, QWidget *parent = 0);
|
||||
~BlurDialog();
|
||||
public:
|
||||
explicit BlurDialog(QGraphicsBlurEffect *effect, QWidget *parent = 0);
|
||||
~BlurDialog();
|
||||
|
||||
private slots:
|
||||
void on_radSpinner_valueChanged(double arg1);
|
||||
void on_radSlider_sliderMoved(int position);
|
||||
private slots:
|
||||
void on_radSpinner_valueChanged(double arg1);
|
||||
void on_radSlider_sliderMoved(int position);
|
||||
|
||||
private:
|
||||
Ui::BlurDialog *ui;
|
||||
QGraphicsBlurEffect *effect;
|
||||
private:
|
||||
Ui::BlurDialog *ui;
|
||||
QGraphicsBlurEffect *effect;
|
||||
};
|
||||
|
||||
#endif // BLURDIALOG_HPP
|
||||
|
@ -9,45 +9,48 @@
|
||||
#include <cropeditor/cropview.hpp>
|
||||
#include <settings.hpp>
|
||||
|
||||
BrushPenSelection::BrushPenSelection(CropScene *scene)
|
||||
: QDialog(), ui(new Ui::BrushPenSelection) {
|
||||
ui->setupUi(this);
|
||||
ui->cosmetic->setChecked(scene->pen().isCosmetic());
|
||||
ui->widthSlider->setValue(scene->pen().width());
|
||||
ui->widthSpinner->setValue(scene->pen().widthF());
|
||||
pen = scene->pen().color();
|
||||
brush = scene->brush().color();
|
||||
this->scene = scene;
|
||||
BrushPenSelection::BrushPenSelection(CropScene *scene) : QDialog(), ui(new Ui::BrushPenSelection) {
|
||||
ui->setupUi(this);
|
||||
ui->cosmetic->setChecked(scene->pen().isCosmetic());
|
||||
ui->widthSlider->setValue(scene->pen().width());
|
||||
ui->widthSpinner->setValue(scene->pen().widthF());
|
||||
pen = scene->pen().color();
|
||||
brush = scene->brush().color();
|
||||
this->scene = scene;
|
||||
}
|
||||
|
||||
BrushPenSelection::~BrushPenSelection() { delete ui; }
|
||||
BrushPenSelection::~BrushPenSelection() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_penColor_clicked(bool) {
|
||||
pen = QColorDialog::getColor(pen, this, "Pen Color");
|
||||
pen = QColorDialog::getColor(pen, this, "Pen Color");
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_brushColor_clicked(bool) {
|
||||
brush = QColorDialog::getColor(brush, this, "Brush Color");
|
||||
brush = QColorDialog::getColor(brush, this, "Brush Color");
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_buttonBox_accepted() {
|
||||
scene->pen().setColor(pen);
|
||||
scene->pen().setCosmetic(ui->cosmetic->isChecked());
|
||||
scene->pen().setWidthF(ui->widthSpinner->value());
|
||||
scene->brush().setColor(brush);
|
||||
settings::settings().setValue("penColor", scene->pen().color());
|
||||
settings::settings().setValue("penCosmetic", scene->pen().isCosmetic());
|
||||
settings::settings().setValue("penWidth", scene->pen().widthF());
|
||||
settings::settings().setValue("brushColor", scene->brush().color());
|
||||
close();
|
||||
scene->pen().setColor(pen);
|
||||
scene->pen().setCosmetic(ui->cosmetic->isChecked());
|
||||
scene->pen().setWidthF(ui->widthSpinner->value());
|
||||
scene->brush().setColor(brush);
|
||||
settings::settings().setValue("penColor", scene->pen().color());
|
||||
settings::settings().setValue("penCosmetic", scene->pen().isCosmetic());
|
||||
settings::settings().setValue("penWidth", scene->pen().widthF());
|
||||
settings::settings().setValue("brushColor", scene->brush().color());
|
||||
close();
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_buttonBox_rejected() { close(); }
|
||||
void BrushPenSelection::on_buttonBox_rejected() {
|
||||
close();
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_widthSlider_sliderMoved(int position) {
|
||||
ui->widthSpinner->setValue(position / 100.);
|
||||
ui->widthSpinner->setValue(position / 100.);
|
||||
}
|
||||
|
||||
void BrushPenSelection::on_widthSpinner_valueChanged(double arg) {
|
||||
ui->widthSlider->setValue(arg * 100);
|
||||
ui->widthSlider->setValue(arg * 100);
|
||||
}
|
||||
|
@ -9,26 +9,26 @@ class BrushPenSelection;
|
||||
}
|
||||
|
||||
class BrushPenSelection : public QDialog {
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit BrushPenSelection(CropScene *scene);
|
||||
~BrushPenSelection();
|
||||
public:
|
||||
explicit BrushPenSelection(CropScene *scene);
|
||||
~BrushPenSelection();
|
||||
|
||||
private slots:
|
||||
void on_penColor_clicked(bool);
|
||||
void on_brushColor_clicked(bool);
|
||||
private slots:
|
||||
void on_penColor_clicked(bool);
|
||||
void on_brushColor_clicked(bool);
|
||||
|
||||
void on_buttonBox_accepted();
|
||||
void on_buttonBox_rejected();
|
||||
void on_buttonBox_accepted();
|
||||
void on_buttonBox_rejected();
|
||||
|
||||
void on_widthSlider_sliderMoved(int position);
|
||||
void on_widthSpinner_valueChanged(double arg1);
|
||||
void on_widthSlider_sliderMoved(int position);
|
||||
void on_widthSpinner_valueChanged(double arg1);
|
||||
|
||||
private:
|
||||
Ui::BrushPenSelection *ui;
|
||||
CropScene *scene;
|
||||
QColor brush, pen;
|
||||
private:
|
||||
Ui::BrushPenSelection *ui;
|
||||
CropScene *scene;
|
||||
QColor brush, pen;
|
||||
};
|
||||
|
||||
#endif // BRUSHPENSELECTION_HPP
|
||||
|
@ -4,14 +4,13 @@
|
||||
#include <QStringList>
|
||||
|
||||
QString formatter::format(QString toFormat) {
|
||||
QRegExp dateRegex("%\\((.+)\\)date");
|
||||
dateRegex.indexIn(toFormat);
|
||||
QStringList capturedTexts(dateRegex.capturedTexts());
|
||||
QString formatted(toFormat);
|
||||
QDateTime date = QDateTime::currentDateTime();
|
||||
for (int i = 0; i < capturedTexts.length(); i += 2) {
|
||||
formatted = formatted.replace(capturedTexts.at(i),
|
||||
date.toString(capturedTexts.at(i + 1)));
|
||||
}
|
||||
return formatted;
|
||||
QRegExp dateRegex("%\\((.+)\\)date");
|
||||
dateRegex.indexIn(toFormat);
|
||||
QStringList capturedTexts(dateRegex.capturedTexts());
|
||||
QString formatted(toFormat);
|
||||
QDateTime date = QDateTime::currentDateTime();
|
||||
for (int i = 0; i < capturedTexts.length(); i += 2) {
|
||||
formatted = formatted.replace(capturedTexts.at(i), date.toString(capturedTexts.at(i + 1)));
|
||||
}
|
||||
return formatted;
|
||||
}
|
||||
|
@ -8,38 +8,34 @@
|
||||
QMap<QString, QHotkey *> hotkeys;
|
||||
|
||||
// func gets bound only on first set, or load
|
||||
void hotkeying::hotkey(QString seqName, QKeySequence seq,
|
||||
std::function<void()> func) {
|
||||
if (hotkeys.contains(seqName))
|
||||
hotkeys.value(seqName)->setShortcut(seq, true);
|
||||
else {
|
||||
QHotkey *hotkey = new QHotkey(seq, true);
|
||||
QObject::connect(hotkey, &QHotkey::activated, func);
|
||||
hotkeys.insert(seqName, hotkey);
|
||||
}
|
||||
settings::settings().setValue(seqName.prepend("hotkey_"), seq.toString());
|
||||
void hotkeying::hotkey(QString seqName, QKeySequence seq, std::function<void()> func) {
|
||||
if (hotkeys.contains(seqName))
|
||||
hotkeys.value(seqName)->setShortcut(seq, true);
|
||||
else {
|
||||
QHotkey *hotkey = new QHotkey(seq, true);
|
||||
QObject::connect(hotkey, &QHotkey::activated, func);
|
||||
hotkeys.insert(seqName, hotkey);
|
||||
}
|
||||
settings::settings().setValue(seqName.prepend("hotkey_"), seq.toString());
|
||||
}
|
||||
|
||||
// forces the hotkey from settings
|
||||
void hotkeying::load(QString seqName, std::function<void()> func) {
|
||||
QHotkey *h;
|
||||
QString name = seqName;
|
||||
name.prepend("hotkey_");
|
||||
if (settings::settings().contains(name))
|
||||
h = new QHotkey(QKeySequence(settings::settings().value(name).toString()),
|
||||
true);
|
||||
else
|
||||
h = new QHotkey;
|
||||
QObject::connect(h, &QHotkey::activated, func);
|
||||
hotkeys.insert(seqName, h);
|
||||
QHotkey *h;
|
||||
QString name = seqName;
|
||||
name.prepend("hotkey_");
|
||||
if (settings::settings().contains(name))
|
||||
h = new QHotkey(QKeySequence(settings::settings().value(name).toString()), true);
|
||||
else
|
||||
h = new QHotkey;
|
||||
QObject::connect(h, &QHotkey::activated, func);
|
||||
hotkeys.insert(seqName, h);
|
||||
}
|
||||
|
||||
bool hotkeying::valid(QString seq) {
|
||||
return seq.isEmpty() || !QKeySequence(seq).toString().isEmpty();
|
||||
return seq.isEmpty() || !QKeySequence(seq).toString().isEmpty();
|
||||
}
|
||||
|
||||
QString hotkeying::sequence(QString seqName) {
|
||||
return hotkeys.contains(seqName)
|
||||
? hotkeys.value(seqName)->shortcut().toString()
|
||||
: "";
|
||||
return hotkeys.contains(seqName) ? hotkeys.value(seqName)->shortcut().toString() : "";
|
||||
}
|
||||
|
@ -8,58 +8,56 @@ namespace ioutils {
|
||||
QNetworkAccessManager networkManager;
|
||||
}
|
||||
|
||||
void ioutils::getJson(
|
||||
QUrl target, QList<QPair<QString, QString>> headers,
|
||||
std::function<void(QJsonDocument, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.get(req);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(QJsonDocument::fromJson(reply->readAll()), reply);
|
||||
reply->deleteLater();
|
||||
});
|
||||
void ioutils::getJson(QUrl target, QList<QPair<QString, QString>> headers, std::function<void(QJsonDocument, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.get(req);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(QJsonDocument::fromJson(reply->readAll()), reply);
|
||||
reply->deleteLater();
|
||||
});
|
||||
}
|
||||
|
||||
void ioutils::postJson(
|
||||
QUrl target, QList<QPair<QString, QString>> headers, QByteArray body,
|
||||
std::function<void(QJsonDocument, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.post(req, body);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(QJsonDocument::fromJson(reply->readAll()), reply);
|
||||
delete reply;
|
||||
});
|
||||
void ioutils::postJson(QUrl target,
|
||||
QList<QPair<QString, QString>> headers,
|
||||
QByteArray body,
|
||||
std::function<void(QJsonDocument, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.post(req, body);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(QJsonDocument::fromJson(reply->readAll()), reply);
|
||||
delete reply;
|
||||
});
|
||||
}
|
||||
|
||||
void ioutils::getData(
|
||||
QUrl target, QList<QPair<QString, QString>> headers,
|
||||
std::function<void(QByteArray, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.get(req);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(reply->readAll(), reply);
|
||||
delete reply;
|
||||
});
|
||||
void ioutils::getData(QUrl target, QList<QPair<QString, QString>> headers, std::function<void(QByteArray, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.get(req);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(reply->readAll(), reply);
|
||||
delete reply;
|
||||
});
|
||||
}
|
||||
|
||||
void ioutils::postData(
|
||||
QUrl target, QList<QPair<QString, QString>> headers, QByteArray body,
|
||||
std::function<void(QByteArray, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.post(req, body);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(reply->readAll(), reply);
|
||||
delete reply;
|
||||
});
|
||||
void ioutils::postData(QUrl target,
|
||||
QList<QPair<QString, QString>> headers,
|
||||
QByteArray body,
|
||||
std::function<void(QByteArray, QNetworkReply *)> callback) {
|
||||
QNetworkRequest req(target);
|
||||
for (auto header : headers) {
|
||||
req.setRawHeader(header.first.toUtf8(), header.second.toUtf8());
|
||||
}
|
||||
QNetworkReply *reply = networkManager.post(req, body);
|
||||
QObject::connect(reply, &QNetworkReply::finished, [reply, callback] {
|
||||
callback(reply->readAll(), reply);
|
||||
delete reply;
|
||||
});
|
||||
}
|
||||
|
@ -9,16 +9,10 @@
|
||||
|
||||
namespace ioutils {
|
||||
extern QNetworkAccessManager networkManager;
|
||||
void getJson(QUrl target, QList<QPair<QString, QString>> headers,
|
||||
std::function<void(QJsonDocument, QNetworkReply *)> callback);
|
||||
void postJson(QUrl target, QList<QPair<QString, QString>> headers,
|
||||
QByteArray body,
|
||||
std::function<void(QJsonDocument, QNetworkReply *)> callback);
|
||||
void getData(QUrl target, QList<QPair<QString, QString>> headers,
|
||||
std::function<void(QByteArray, QNetworkReply *)> callback);
|
||||
void postData(QUrl target, QList<QPair<QString, QString>> headers,
|
||||
QByteArray body,
|
||||
std::function<void(QByteArray, QNetworkReply *)> callback);
|
||||
void getJson(QUrl target, QList<QPair<QString, QString>> headers, std::function<void(QJsonDocument, QNetworkReply *)> callback);
|
||||
void postJson(QUrl target, QList<QPair<QString, QString>> headers, QByteArray body, std::function<void(QJsonDocument, QNetworkReply *)> callback);
|
||||
void getData(QUrl target, QList<QPair<QString, QString>> headers, std::function<void(QByteArray, QNetworkReply *)> callback);
|
||||
void postData(QUrl target, QList<QPair<QString, QString>> headers, QByteArray body, std::function<void(QByteArray, QNetworkReply *)> callback);
|
||||
}
|
||||
|
||||
#endif // IOUTILS_HPP
|
||||
|
77
main.cpp
77
main.cpp
@ -8,50 +8,47 @@
|
||||
bool verbose = false;
|
||||
|
||||
void handler(QtMsgType type, const QMessageLogContext &, const QString &msg) {
|
||||
QByteArray localMsg = msg.toLocal8Bit();
|
||||
switch (type) {
|
||||
case QtDebugMsg:
|
||||
if (verbose)
|
||||
fprintf(stderr, "DEBUG: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtInfoMsg:
|
||||
fprintf(stderr, "INFO: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtWarningMsg:
|
||||
fprintf(stderr, "WARN: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtCriticalMsg:
|
||||
fprintf(stderr, "CRIT: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtFatalMsg:
|
||||
fprintf(stderr, "FATAL: %s\n", localMsg.constData());
|
||||
break;
|
||||
}
|
||||
QByteArray localMsg = msg.toLocal8Bit();
|
||||
switch (type) {
|
||||
case QtDebugMsg:
|
||||
if (verbose) fprintf(stderr, "DEBUG: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtInfoMsg:
|
||||
fprintf(stderr, "INFO: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtWarningMsg:
|
||||
fprintf(stderr, "WARN: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtCriticalMsg:
|
||||
fprintf(stderr, "CRIT: %s\n", localMsg.constData());
|
||||
break;
|
||||
case QtFatalMsg:
|
||||
fprintf(stderr, "FATAL: %s\n", localMsg.constData());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
qInstallMessageHandler(handler);
|
||||
QApplication a(argc, argv);
|
||||
a.setApplicationName("KShare");
|
||||
a.setOrganizationName("ArsenArsen");
|
||||
a.setApplicationVersion("1.1");
|
||||
qInstallMessageHandler(handler);
|
||||
QApplication a(argc, argv);
|
||||
a.setApplicationName("KShare");
|
||||
a.setOrganizationName("ArsenArsen");
|
||||
a.setApplicationVersion("1.1");
|
||||
|
||||
QCommandLineParser parser;
|
||||
parser.addHelpOption();
|
||||
QCommandLineParser parser;
|
||||
parser.addHelpOption();
|
||||
|
||||
QCommandLineOption h({"b", "background"},
|
||||
"Does not show the main window, starts in tray.");
|
||||
QCommandLineOption v({"v", "verbose"}, "Enables QtDebugMsg outputs");
|
||||
parser.addOption(h);
|
||||
parser.addOption(v);
|
||||
parser.process(a);
|
||||
verbose = parser.isSet(v);
|
||||
QCommandLineOption h({ "b", "background" }, "Does not show the main window, starts in tray.");
|
||||
QCommandLineOption v({ "v", "verbose" }, "Enables QtDebugMsg outputs");
|
||||
parser.addOption(h);
|
||||
parser.addOption(v);
|
||||
parser.process(a);
|
||||
verbose = parser.isSet(v);
|
||||
|
||||
MainWindow w;
|
||||
w.show();
|
||||
QTimer::singleShot(0, [&] {
|
||||
if (parser.isSet(h))
|
||||
w.hide();
|
||||
});
|
||||
return a.exec();
|
||||
MainWindow w;
|
||||
w.show();
|
||||
QTimer::singleShot(0, [&] {
|
||||
if (parser.isSet(h)) w.hide();
|
||||
});
|
||||
return a.exec();
|
||||
}
|
||||
|
194
mainwindow.cpp
194
mainwindow.cpp
@ -20,142 +20,140 @@
|
||||
MainWindow *MainWindow::instance;
|
||||
|
||||
void addHotkeyItem(QString text, QString name, std::function<void()> *func) {
|
||||
QListWidgetItem *item =
|
||||
new QListWidgetItem(text, MainWindow::inst()->ui->hotkeys);
|
||||
item->setData(Qt::UserRole + 1, name);
|
||||
MainWindow::inst()->fncs.insert(name, func);
|
||||
hotkeying::load(name, *func);
|
||||
QListWidgetItem *item = new QListWidgetItem(text, MainWindow::inst()->ui->hotkeys);
|
||||
item->setData(Qt::UserRole + 1, name);
|
||||
MainWindow::inst()->fncs.insert(name, func);
|
||||
hotkeying::load(name, *func);
|
||||
}
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent)
|
||||
: QMainWindow(parent), ui(new Ui::MainWindow) {
|
||||
instance = this;
|
||||
ui->setupUi(this);
|
||||
setWindowIcon(QIcon(":/icons/icon.png"));
|
||||
tray = new QSystemTrayIcon(windowIcon(), this);
|
||||
tray->setToolTip("KShare");
|
||||
tray->setVisible(true);
|
||||
QMenu *menu = new QMenu(this);
|
||||
QAction *quit = new QAction("Quit", this);
|
||||
QAction *shtoggle = new QAction("Show/Hide", this);
|
||||
QAction *fullscreen = new QAction("Take fullscreen shot", this);
|
||||
QAction *area = new QAction("Take area shot", this);
|
||||
menu->addActions({quit, shtoggle});
|
||||
menu->addSeparator();
|
||||
menu->addActions({fullscreen, area});
|
||||
connect(quit, &QAction::triggered, this, &MainWindow::quit);
|
||||
connect(shtoggle, &QAction::triggered, this, &MainWindow::toggleVisible);
|
||||
connect(tray, &QSystemTrayIcon::messageClicked, this,
|
||||
&MainWindow::toggleVisible);
|
||||
connect(tray, &QSystemTrayIcon::activated, this,
|
||||
[this](QSystemTrayIcon::ActivationReason reason) {
|
||||
if (reason == QSystemTrayIcon::DoubleClick)
|
||||
toggleVisible();
|
||||
});
|
||||
connect(fullscreen, &QAction::triggered, this,
|
||||
[] { screenshotter::fullscreenDelayed(); });
|
||||
connect(area, &QAction::triggered, this,
|
||||
[] { screenshotter::areaDelayed(); });
|
||||
tray->setContextMenu(menu);
|
||||
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) {
|
||||
instance = this;
|
||||
ui->setupUi(this);
|
||||
setWindowIcon(QIcon(":/icons/icon.png"));
|
||||
tray = new QSystemTrayIcon(windowIcon(), this);
|
||||
tray->setToolTip("KShare");
|
||||
tray->setVisible(true);
|
||||
QMenu *menu = new QMenu(this);
|
||||
QAction *quit = new QAction("Quit", this);
|
||||
QAction *shtoggle = new QAction("Show/Hide", this);
|
||||
QAction *fullscreen = new QAction("Take fullscreen shot", this);
|
||||
QAction *area = new QAction("Take area shot", this);
|
||||
menu->addActions({ quit, shtoggle });
|
||||
menu->addSeparator();
|
||||
menu->addActions({ fullscreen, area });
|
||||
connect(quit, &QAction::triggered, this, &MainWindow::quit);
|
||||
connect(shtoggle, &QAction::triggered, this, &MainWindow::toggleVisible);
|
||||
connect(tray, &QSystemTrayIcon::messageClicked, this, &MainWindow::toggleVisible);
|
||||
connect(tray, &QSystemTrayIcon::activated, this, [this](QSystemTrayIcon::ActivationReason reason) {
|
||||
if (reason == QSystemTrayIcon::DoubleClick) toggleVisible();
|
||||
});
|
||||
connect(fullscreen, &QAction::triggered, this, [] { screenshotter::fullscreenDelayed(); });
|
||||
connect(area, &QAction::triggered, this, [] { screenshotter::areaDelayed(); });
|
||||
tray->setContextMenu(menu);
|
||||
|
||||
ui->uploaderList->setSelectionBehavior(QAbstractItemView::SelectRows);
|
||||
ui->uploaderList->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
ui->uploaderList->setSelectionBehavior(QAbstractItemView::SelectRows);
|
||||
ui->uploaderList->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
|
||||
// Add items to uploader selection
|
||||
for (Uploader *u : UploaderSingleton::inst().uploaderList())
|
||||
newUploader(u);
|
||||
connect(&UploaderSingleton::inst(), &UploaderSingleton::newUploader, this,
|
||||
&MainWindow::newUploader);
|
||||
// Add items to uploader selection
|
||||
for (Uploader *u : UploaderSingleton::inst().uploaderList()) newUploader(u);
|
||||
connect(&UploaderSingleton::inst(), &UploaderSingleton::newUploader, this, &MainWindow::newUploader);
|
||||
|
||||
// Set filename scheme
|
||||
if ((settings::settings().contains("fileFormat")))
|
||||
setScheme(settings::settings().value("fileFormat").toString());
|
||||
else
|
||||
setScheme("Screenshot %(yyyy-MM-dd HH:mm:ss)date");
|
||||
// Set filename scheme
|
||||
if ((settings::settings().contains("fileFormat")))
|
||||
setScheme(settings::settings().value("fileFormat").toString());
|
||||
else
|
||||
setScheme("Screenshot %(yyyy-MM-dd HH:mm:ss)date");
|
||||
|
||||
auto errors = UploaderSingleton::inst().errors();
|
||||
if (errors.length() == 1)
|
||||
statusBar()->showMessage(errors.at(0).what());
|
||||
else
|
||||
statusBar()->showMessage(
|
||||
QString("Errors visible in console (if present). Count: " +
|
||||
QString::number(errors.size())));
|
||||
auto errors = UploaderSingleton::inst().errors();
|
||||
if (errors.length() == 1)
|
||||
statusBar()->showMessage(errors.at(0).what());
|
||||
else
|
||||
statusBar()->showMessage(QString("Errors visible in console (if present). Count: " + QString::number(errors.size())));
|
||||
|
||||
// Set delay
|
||||
if ((settings::settings().contains("delay")))
|
||||
ui->delay->setValue(settings::settings().value("delay").toDouble());
|
||||
else
|
||||
ui->delay->setValue(0.25);
|
||||
// Set delay
|
||||
if ((settings::settings().contains("delay")))
|
||||
ui->delay->setValue(settings::settings().value("delay").toDouble());
|
||||
else
|
||||
ui->delay->setValue(0.25);
|
||||
|
||||
ui->hotkeys->setSelectionMode(QListWidget::SingleSelection);
|
||||
ui->hotkeys->setSelectionMode(QListWidget::SingleSelection);
|
||||
|
||||
addHotkeyItem("Fullscreen image", "fullscreen",
|
||||
new std::function<void()>([] { screenshotter::fullscreen(); }));
|
||||
addHotkeyItem("Area image", "area",
|
||||
new std::function<void()>([] { screenshotter::area(); }));
|
||||
addHotkeyItem("Fullscreen image", "fullscreen", new std::function<void()>([] { screenshotter::fullscreen(); }));
|
||||
addHotkeyItem("Area image", "area", new std::function<void()>([] { screenshotter::area(); }));
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow() { delete ui; }
|
||||
MainWindow::~MainWindow() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void MainWindow::setScheme(QString scheme) { ui->nameScheme->setText(scheme); }
|
||||
void MainWindow::setScheme(QString scheme) {
|
||||
ui->nameScheme->setText(scheme);
|
||||
}
|
||||
|
||||
QDoubleSpinBox *MainWindow::delay() { return ui->delay; }
|
||||
QDoubleSpinBox *MainWindow::delay() {
|
||||
return ui->delay;
|
||||
}
|
||||
|
||||
MainWindow *MainWindow::inst() { return instance; }
|
||||
MainWindow *MainWindow::inst() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
void MainWindow::closeEvent(QCloseEvent *event) {
|
||||
event->ignore();
|
||||
QTimer::singleShot(0, this, &MainWindow::hide);
|
||||
event->ignore();
|
||||
QTimer::singleShot(0, this, &MainWindow::hide);
|
||||
}
|
||||
|
||||
void MainWindow::quit() { QCoreApplication::quit(); }
|
||||
void MainWindow::quit() {
|
||||
QCoreApplication::quit();
|
||||
}
|
||||
|
||||
void MainWindow::toggleVisible() {
|
||||
this->setVisible(!this->isVisible());
|
||||
if (this->isVisible()) {
|
||||
this->raise();
|
||||
}
|
||||
this->setVisible(!this->isVisible());
|
||||
if (this->isVisible()) {
|
||||
this->raise();
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::newUploader(Uploader *u) {
|
||||
QListWidgetItem *item = new QListWidgetItem(u->name());
|
||||
item->setToolTip(u->description());
|
||||
ui->uploaderList->addItem(item);
|
||||
if (u->name() == UploaderSingleton::inst().selectedUploader())
|
||||
item->setSelected(true);
|
||||
QListWidgetItem *item = new QListWidgetItem(u->name());
|
||||
item->setToolTip(u->description());
|
||||
ui->uploaderList->addItem(item);
|
||||
if (u->name() == UploaderSingleton::inst().selectedUploader()) item->setSelected(true);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionQuit_triggered() { quit(); }
|
||||
void MainWindow::on_actionQuit_triggered() {
|
||||
quit();
|
||||
}
|
||||
|
||||
void MainWindow::on_actionFullscreen_triggered() {
|
||||
screenshotter::fullscreenDelayed();
|
||||
screenshotter::fullscreenDelayed();
|
||||
}
|
||||
|
||||
void MainWindow::on_actionArea_triggered() { screenshotter::areaDelayed(); }
|
||||
void MainWindow::on_actionArea_triggered() {
|
||||
screenshotter::areaDelayed();
|
||||
}
|
||||
|
||||
void MainWindow::on_uploaderList_clicked(const QModelIndex &) {
|
||||
QList<QListWidgetItem *> index = ui->uploaderList->selectedItems();
|
||||
if (index.size() == 1) {
|
||||
UploaderSingleton::inst().set(index.at(0)->text());
|
||||
}
|
||||
QList<QListWidgetItem *> index = ui->uploaderList->selectedItems();
|
||||
if (index.size() == 1) {
|
||||
UploaderSingleton::inst().set(index.at(0)->text());
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_nameScheme_textEdited(const QString &arg1) {
|
||||
settings::settings().setValue("fileFormat", arg1);
|
||||
settings::settings().setValue("fileFormat", arg1);
|
||||
}
|
||||
|
||||
void MainWindow::on_delay_valueChanged(double arg1) {
|
||||
settings::settings().setValue("delay", arg1);
|
||||
settings::settings().setValue("delay", arg1);
|
||||
}
|
||||
|
||||
void MainWindow::on_hotkeys_doubleClicked(const QModelIndex &) {
|
||||
if (ui->hotkeys->selectedItems().length() == 1) {
|
||||
QListWidgetItem *i = ui->hotkeys->selectedItems().at(0);
|
||||
QString str = i->data(Qt::UserRole + 1).toString();
|
||||
QString seq = QInputDialog::getText(ui->centralWidget, "Hotkey Input",
|
||||
"Insert hotkey:", QLineEdit::Normal,
|
||||
hotkeying::sequence(str));
|
||||
if (hotkeying::valid(seq))
|
||||
hotkeying::hotkey(str, QKeySequence(seq), *fncs.value(str));
|
||||
}
|
||||
if (ui->hotkeys->selectedItems().length() == 1) {
|
||||
QListWidgetItem *i = ui->hotkeys->selectedItems().at(0);
|
||||
QString str = i->data(Qt::UserRole + 1).toString();
|
||||
QString seq = QInputDialog::getText(ui->centralWidget, "Hotkey Input", "Insert hotkey:", QLineEdit::Normal,
|
||||
hotkeying::sequence(str));
|
||||
if (hotkeying::valid(seq)) hotkeying::hotkey(str, QKeySequence(seq), *fncs.value(str));
|
||||
}
|
||||
}
|
||||
|
@ -14,39 +14,39 @@ class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
private slots:
|
||||
void quit();
|
||||
void toggleVisible();
|
||||
void newUploader(Uploader *u);
|
||||
Q_OBJECT
|
||||
private slots:
|
||||
void quit();
|
||||
void toggleVisible();
|
||||
void newUploader(Uploader *u);
|
||||
|
||||
void on_actionQuit_triggered();
|
||||
void on_actionFullscreen_triggered();
|
||||
void on_actionArea_triggered();
|
||||
void on_uploaderList_clicked(const QModelIndex &);
|
||||
void on_nameScheme_textEdited(const QString &arg1);
|
||||
void on_actionQuit_triggered();
|
||||
void on_actionFullscreen_triggered();
|
||||
void on_actionArea_triggered();
|
||||
void on_uploaderList_clicked(const QModelIndex &);
|
||||
void on_nameScheme_textEdited(const QString &arg1);
|
||||
|
||||
void on_delay_valueChanged(double arg1);
|
||||
void on_delay_valueChanged(double arg1);
|
||||
|
||||
void on_hotkeys_doubleClicked(const QModelIndex &index);
|
||||
void on_hotkeys_doubleClicked(const QModelIndex &index);
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
Ui::MainWindow *ui;
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
Ui::MainWindow *ui;
|
||||
|
||||
QSystemTrayIcon *tray;
|
||||
void setScheme(QString scheme);
|
||||
QDoubleSpinBox *delay();
|
||||
QSystemTrayIcon *tray;
|
||||
void setScheme(QString scheme);
|
||||
QDoubleSpinBox *delay();
|
||||
|
||||
static MainWindow *inst();
|
||||
QMap<QString, std::function<void()> *> fncs;
|
||||
static MainWindow *inst();
|
||||
QMap<QString, std::function<void()> *> fncs;
|
||||
|
||||
private:
|
||||
static MainWindow *instance;
|
||||
private:
|
||||
static MainWindow *instance;
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *event);
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *event);
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_HPP
|
||||
|
@ -3,8 +3,7 @@
|
||||
#include "mainwindow.hpp"
|
||||
#include <QStatusBar>
|
||||
|
||||
void notifications::notify(QString title, QString body,
|
||||
QSystemTrayIcon::MessageIcon icon) {
|
||||
MainWindow::inst()->tray->showMessage(title, body, icon, 5000);
|
||||
MainWindow::inst()->statusBar()->showMessage(title + ": " + body);
|
||||
void notifications::notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon) {
|
||||
MainWindow::inst()->tray->showMessage(title, body, icon, 5000);
|
||||
MainWindow::inst()->statusBar()->showMessage(title + ": " + body);
|
||||
}
|
||||
|
@ -5,8 +5,7 @@
|
||||
#include <QSystemTrayIcon>
|
||||
|
||||
namespace notifications {
|
||||
void notify(QString title, QString body,
|
||||
QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
||||
void notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
||||
}
|
||||
|
||||
#endif // NOTIFICATIONS_HPP
|
||||
|
@ -7,22 +7,18 @@
|
||||
#include <QTimer>
|
||||
|
||||
void screenshotter::area() {
|
||||
CropEditor *editor = new CropEditor(screenshotutil::fullscreen());
|
||||
QObject::connect(editor, &CropEditor::cropped, [&](QPixmap *pixmap) {
|
||||
UploaderSingleton::inst().upload(pixmap);
|
||||
});
|
||||
CropEditor *editor = new CropEditor(screenshotutil::fullscreen());
|
||||
QObject::connect(editor, &CropEditor::cropped, [&](QPixmap *pixmap) { UploaderSingleton::inst().upload(pixmap); });
|
||||
}
|
||||
|
||||
void screenshotter::fullscreen() {
|
||||
UploaderSingleton::inst().upload(screenshotutil::fullscreen());
|
||||
UploaderSingleton::inst().upload(screenshotutil::fullscreen());
|
||||
}
|
||||
|
||||
void screenshotter::areaDelayed() {
|
||||
QTimer::singleShot(MainWindow::inst()->delay()->value() * 1000,
|
||||
&screenshotter::area);
|
||||
QTimer::singleShot(MainWindow::inst()->delay()->value() * 1000, &screenshotter::area);
|
||||
}
|
||||
|
||||
void screenshotter::fullscreenDelayed() {
|
||||
QTimer::singleShot(MainWindow::inst()->delay()->value() * 1000,
|
||||
&screenshotter::fullscreen);
|
||||
QTimer::singleShot(MainWindow::inst()->delay()->value() * 1000, &screenshotter::fullscreen);
|
||||
}
|
||||
|
@ -5,16 +5,18 @@
|
||||
#include <QPixmap>
|
||||
#include <QScreen>
|
||||
|
||||
QPixmap *screenshotutil::fullscreen() { return window(0); }
|
||||
QPixmap *screenshotutil::fullscreen() {
|
||||
return window(0);
|
||||
}
|
||||
|
||||
QPixmap *screenshotutil::window(long wid) {
|
||||
QScreen *w = QApplication::primaryScreen();
|
||||
QPixmap screen = w->grabWindow(wid);
|
||||
QPixmap *pm = new QPixmap(screen.size());
|
||||
screen.swap(*pm);
|
||||
return pm;
|
||||
QScreen *w = QApplication::primaryScreen();
|
||||
QPixmap screen = w->grabWindow(wid);
|
||||
QPixmap *pm = new QPixmap(screen.size());
|
||||
screen.swap(*pm);
|
||||
return pm;
|
||||
}
|
||||
|
||||
void screenshotutil::toClipboard(QString value) {
|
||||
QApplication::clipboard()->setText(value);
|
||||
QApplication::clipboard()->setText(value);
|
||||
}
|
||||
|
17
settings.cpp
17
settings.cpp
@ -3,14 +3,11 @@
|
||||
#include <QStandardPaths>
|
||||
|
||||
QSettings &settings::settings() {
|
||||
static QDir configDir(
|
||||
QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation));
|
||||
if (configDir.path() ==
|
||||
QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation)) {
|
||||
configDir.mkdir("KShare");
|
||||
configDir.cd("KShare");
|
||||
}
|
||||
static QSettings settings(configDir.absoluteFilePath("settings.ini"),
|
||||
QSettings::IniFormat);
|
||||
return settings;
|
||||
static QDir configDir(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation));
|
||||
if (configDir.path() == QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation)) {
|
||||
configDir.mkdir("KShare");
|
||||
configDir.cd("KShare");
|
||||
}
|
||||
static QSettings settings(configDir.absoluteFilePath("settings.ini"), QSettings::IniFormat);
|
||||
return settings;
|
||||
}
|
||||
|
@ -13,316 +13,280 @@
|
||||
using std::runtime_error;
|
||||
|
||||
void error(QString absFilePath, QString err) {
|
||||
throw runtime_error(
|
||||
(QString("Invalid file: ").append(absFilePath) + ": " + err)
|
||||
.toStdString());
|
||||
throw runtime_error((QString("Invalid file: ").append(absFilePath) + ": " + err).toStdString());
|
||||
}
|
||||
|
||||
CustomUploader::CustomUploader(QString absFilePath) {
|
||||
types.insert("PNG", "image/png"); // This is a list of supported formats, too
|
||||
types.insert("GIF", "image/gif");
|
||||
types.insert("JPG", "image/jpeg");
|
||||
types.insert("JPEG", "image/jpeg");
|
||||
types.insert("WEBM", "video/webm");
|
||||
types.insert("MP4", "video/mp4");
|
||||
// Let's go
|
||||
QFile file(absFilePath);
|
||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||
error(absFilePath, file.errorString());
|
||||
QJsonDocument doc = QJsonDocument::fromJson(file.readAll());
|
||||
if (!doc.isObject()) {
|
||||
error(absFilePath, "Root not an object");
|
||||
}
|
||||
QJsonObject obj = doc.object();
|
||||
if (!obj["name"].isString())
|
||||
error(absFilePath, "name is not a string");
|
||||
else
|
||||
uName = obj["name"].toString();
|
||||
if (!obj.contains("desc")) {
|
||||
if (!obj["desc"].isString())
|
||||
/*t*/ error(absFilePath, "desc not a string");
|
||||
else
|
||||
desc = obj["desc"].toString();
|
||||
} else
|
||||
desc = absFilePath;
|
||||
QJsonValue m = obj["method"];
|
||||
if (!m.isUndefined() && !m.isNull()) {
|
||||
if (!m.isString())
|
||||
error(absFilePath, "method not a string");
|
||||
QString toCheck = m.toString().toLower();
|
||||
if (toCheck == "post")
|
||||
method = HttpMethod::POST;
|
||||
else
|
||||
error(absFilePath, "method invalid");
|
||||
}
|
||||
QJsonValue url = obj["target"];
|
||||
if (!url.isString()) {
|
||||
error(absFilePath, "target missing");
|
||||
}
|
||||
QUrl target(url.toString());
|
||||
if (!target.isValid())
|
||||
error(absFilePath, "target not URL");
|
||||
this->target = target;
|
||||
QJsonValue formatValue = obj["format"];
|
||||
if (!formatValue.isUndefined() && !formatValue.isNull()) {
|
||||
if (formatValue.isString()) {
|
||||
QString formatString = formatValue.toString().toLower();
|
||||
if (formatString == "x-www-form-urlencoded")
|
||||
format = RequestFormat::X_WWW_FORM_URLENCODED;
|
||||
else if (formatString == "json")
|
||||
format = RequestFormat::JSON;
|
||||
else if (formatString == "plain")
|
||||
format = RequestFormat::PLAIN;
|
||||
else
|
||||
error(absFilePath, "format invalid");
|
||||
types.insert("PNG", "image/png"); // This is a list of supported formats, too
|
||||
types.insert("GIF", "image/gif");
|
||||
types.insert("JPG", "image/jpeg");
|
||||
types.insert("JPEG", "image/jpeg");
|
||||
types.insert("WEBM", "video/webm");
|
||||
types.insert("MP4", "video/mp4");
|
||||
// Let's go
|
||||
QFile file(absFilePath);
|
||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) error(absFilePath, file.errorString());
|
||||
QJsonDocument doc = QJsonDocument::fromJson(file.readAll());
|
||||
if (!doc.isObject()) {
|
||||
error(absFilePath, "Root not an object");
|
||||
}
|
||||
} else
|
||||
error(absFilePath, "format provided but not string");
|
||||
QJsonValue imageValue = obj["imageformat"];
|
||||
if (!imageValue.isString()) {
|
||||
error(absFilePath, "imageformat not string");
|
||||
}
|
||||
QString imageFormat = imageValue.toString();
|
||||
if (imageFormat == "base64" ||
|
||||
QRegExp("base64\\([^+]+\\+[^+]+)").exactMatch(imageFormat) ||
|
||||
QRegExp("[^+]+\\+[^+]+").exactMatch(imageFormat)) {
|
||||
this->iFormat = imageFormat;
|
||||
} else
|
||||
error(absFilePath, "imageformat invalid");
|
||||
QJsonValue bodyValue = obj["body"];
|
||||
if (format != RequestFormat::PLAIN) {
|
||||
if (bodyValue.isUndefined())
|
||||
error(absFilePath, "body not set");
|
||||
if (bodyValue.isObject())
|
||||
body = bodyValue;
|
||||
QJsonObject obj = doc.object();
|
||||
if (!obj["name"].isString())
|
||||
error(absFilePath, "name is not a string");
|
||||
else
|
||||
error(absFilePath, "body not object");
|
||||
} else {
|
||||
if (bodyValue.isString()) {
|
||||
body = bodyValue;
|
||||
uName = obj["name"].toString();
|
||||
if (!obj.contains("desc")) {
|
||||
if (!obj["desc"].isString())
|
||||
/*t*/ error(absFilePath, "desc not a string");
|
||||
else
|
||||
desc = obj["desc"].toString();
|
||||
} else
|
||||
error(absFilePath, "body not string (reason: format: PLAIN)");
|
||||
}
|
||||
QJsonValue headerVal = obj["headers"];
|
||||
if (!(headerVal.isUndefined() || headerVal.isNull())) {
|
||||
if (!headerVal.isObject())
|
||||
error(absFilePath, "headers must be object");
|
||||
headers = headerVal.toObject();
|
||||
} else
|
||||
headers = QJsonObject();
|
||||
QJsonValue returnPsVal = obj["return"];
|
||||
if (returnPsVal.isString()) {
|
||||
returnPathspec = returnPsVal.toString();
|
||||
} else
|
||||
error(absFilePath, "return invalid");
|
||||
desc = absFilePath;
|
||||
QJsonValue m = obj["method"];
|
||||
if (!m.isUndefined() && !m.isNull()) {
|
||||
if (!m.isString()) error(absFilePath, "method not a string");
|
||||
QString toCheck = m.toString().toLower();
|
||||
if (toCheck == "post")
|
||||
method = HttpMethod::POST;
|
||||
else
|
||||
error(absFilePath, "method invalid");
|
||||
}
|
||||
QJsonValue url = obj["target"];
|
||||
if (!url.isString()) {
|
||||
error(absFilePath, "target missing");
|
||||
}
|
||||
QUrl target(url.toString());
|
||||
if (!target.isValid()) error(absFilePath, "target not URL");
|
||||
this->target = target;
|
||||
QJsonValue formatValue = obj["format"];
|
||||
if (!formatValue.isUndefined() && !formatValue.isNull()) {
|
||||
if (formatValue.isString()) {
|
||||
QString formatString = formatValue.toString().toLower();
|
||||
if (formatString == "x-www-form-urlencoded")
|
||||
format = RequestFormat::X_WWW_FORM_URLENCODED;
|
||||
else if (formatString == "json")
|
||||
format = RequestFormat::JSON;
|
||||
else if (formatString == "plain")
|
||||
format = RequestFormat::PLAIN;
|
||||
else
|
||||
error(absFilePath, "format invalid");
|
||||
}
|
||||
} else
|
||||
error(absFilePath, "format provided but not string");
|
||||
QJsonValue imageValue = obj["imageformat"];
|
||||
if (!imageValue.isString()) {
|
||||
error(absFilePath, "imageformat not string");
|
||||
}
|
||||
QString imageFormat = imageValue.toString();
|
||||
if (imageFormat == "base64" || QRegExp("base64\\([^+]+\\+[^+]+)").exactMatch(imageFormat)
|
||||
|| QRegExp("[^+]+\\+[^+]+").exactMatch(imageFormat)) {
|
||||
this->iFormat = imageFormat;
|
||||
} else
|
||||
error(absFilePath, "imageformat invalid");
|
||||
QJsonValue bodyValue = obj["body"];
|
||||
if (format != RequestFormat::PLAIN) {
|
||||
if (bodyValue.isUndefined()) error(absFilePath, "body not set");
|
||||
if (bodyValue.isObject())
|
||||
body = bodyValue;
|
||||
else
|
||||
error(absFilePath, "body not object");
|
||||
} else {
|
||||
if (bodyValue.isString()) {
|
||||
body = bodyValue;
|
||||
} else
|
||||
error(absFilePath, "body not string (reason: format: PLAIN)");
|
||||
}
|
||||
QJsonValue headerVal = obj["headers"];
|
||||
if (!(headerVal.isUndefined() || headerVal.isNull())) {
|
||||
if (!headerVal.isObject()) error(absFilePath, "headers must be object");
|
||||
headers = headerVal.toObject();
|
||||
} else
|
||||
headers = QJsonObject();
|
||||
QJsonValue returnPsVal = obj["return"];
|
||||
if (returnPsVal.isString()) {
|
||||
returnPathspec = returnPsVal.toString();
|
||||
} else
|
||||
error(absFilePath, "return invalid");
|
||||
}
|
||||
|
||||
QString CustomUploader::name() { return uName; }
|
||||
QString CustomUploader::name() {
|
||||
return uName;
|
||||
}
|
||||
|
||||
QString CustomUploader::description() { return desc; }
|
||||
QString CustomUploader::description() {
|
||||
return desc;
|
||||
}
|
||||
|
||||
QString getCType(RequestFormat format, QString plainType) {
|
||||
switch (format) {
|
||||
case RequestFormat::X_WWW_FORM_URLENCODED:
|
||||
return "application/x-www-form-urlencoded";
|
||||
case RequestFormat::JSON:
|
||||
return "application/json";
|
||||
case RequestFormat::PLAIN:
|
||||
switch (format) {
|
||||
case RequestFormat::X_WWW_FORM_URLENCODED:
|
||||
return "application/x-www-form-urlencoded";
|
||||
case RequestFormat::JSON:
|
||||
return "application/json";
|
||||
case RequestFormat::PLAIN:
|
||||
return plainType;
|
||||
}
|
||||
return plainType;
|
||||
}
|
||||
return plainType;
|
||||
}
|
||||
|
||||
QList<QPair<QString, QString>> getHeaders(QJsonObject h, QString imageFormat,
|
||||
QMap<QString, QString> types,
|
||||
RequestFormat format) {
|
||||
QList<QPair<QString, QString>> headers;
|
||||
for (QString s : h.keys()) {
|
||||
if (s.toLower() == "content-type")
|
||||
continue;
|
||||
QJsonValue v = h[s];
|
||||
if (!v.isString())
|
||||
headers << QPair<QString, QString>(
|
||||
s, QJsonDocument::fromVariant(v.toVariant()).toJson());
|
||||
else
|
||||
headers << QPair<QString, QString>(s, v.toString());
|
||||
}
|
||||
headers << QPair<QString, QString>(
|
||||
"Content-Type", getCType(format, types.value(imageFormat)));
|
||||
return headers;
|
||||
QList<QPair<QString, QString>> getHeaders(QJsonObject h, QString imageFormat, QMap<QString, QString> types, RequestFormat format) {
|
||||
QList<QPair<QString, QString>> headers;
|
||||
for (QString s : h.keys()) {
|
||||
if (s.toLower() == "content-type") continue;
|
||||
QJsonValue v = h[s];
|
||||
if (!v.isString())
|
||||
headers << QPair<QString, QString>(s, QJsonDocument::fromVariant(v.toVariant()).toJson());
|
||||
else
|
||||
headers << QPair<QString, QString>(s, v.toString());
|
||||
}
|
||||
headers << QPair<QString, QString>("Content-Type", getCType(format, types.value(imageFormat)));
|
||||
return headers;
|
||||
}
|
||||
|
||||
QByteArray imageBytes(QPixmap *pixmap, QString format) {
|
||||
QByteArray returnVal;
|
||||
QBuffer buff(&returnVal);
|
||||
buff.open(QIODevice::WriteOnly);
|
||||
pixmap->save(&buff, format.toUpper().toLocal8Bit().constData());
|
||||
return returnVal;
|
||||
QByteArray returnVal;
|
||||
QBuffer buff(&returnVal);
|
||||
buff.open(QIODevice::WriteOnly);
|
||||
pixmap->save(&buff, format.toUpper().toLocal8Bit().constData());
|
||||
return returnVal;
|
||||
}
|
||||
|
||||
QString CustomUploader::getFormatString(bool animated) {
|
||||
if (iFormat == "base64")
|
||||
return animated ? "GIF" : "PNG";
|
||||
else if (QRegExp("[^+]+\\+[^+]+").exactMatch(iFormat))
|
||||
return iFormat.split('+')[(int)animated];
|
||||
else if (QRegExp("base64\\([^+]+\\+[^+]+)").exactMatch(iFormat))
|
||||
return iFormat.mid(7, iFormat.length() - 8).split('+')[(int)animated];
|
||||
return "";
|
||||
if (iFormat == "base64")
|
||||
return animated ? "GIF" : "PNG";
|
||||
else if (QRegExp("[^+]+\\+[^+]+").exactMatch(iFormat))
|
||||
return iFormat.split('+')[(int)animated];
|
||||
else if (QRegExp("base64\\([^+]+\\+[^+]+)").exactMatch(iFormat))
|
||||
return iFormat.mid(7, iFormat.length() - 8).split('+')[(int)animated];
|
||||
return "";
|
||||
}
|
||||
|
||||
QJsonObject recurseAndReplace(QJsonObject &body, QByteArray &data,
|
||||
QString contentType) {
|
||||
QJsonObject o;
|
||||
for (QString s : body.keys()) {
|
||||
QJsonValue v = body[s];
|
||||
if (v.isObject()) {
|
||||
QJsonObject vo = v.toObject();
|
||||
o.insert(s, recurseAndReplace(vo, data, contentType));
|
||||
} else if (v.isString()) {
|
||||
QString str = v.toString();
|
||||
if (str.startsWith("/") && str.endsWith("/")) {
|
||||
o.insert(
|
||||
s,
|
||||
str.replace("%image", data).replace("%contenttype", contentType));
|
||||
}
|
||||
QJsonObject recurseAndReplace(QJsonObject &body, QByteArray &data, QString contentType) {
|
||||
QJsonObject o;
|
||||
for (QString s : body.keys()) {
|
||||
QJsonValue v = body[s];
|
||||
if (v.isObject()) {
|
||||
QJsonObject vo = v.toObject();
|
||||
o.insert(s, recurseAndReplace(vo, data, contentType));
|
||||
} else if (v.isString()) {
|
||||
QString str = v.toString();
|
||||
if (str.startsWith("/") && str.endsWith("/")) {
|
||||
o.insert(s, str.replace("%image", data).replace("%contenttype", contentType));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return o;
|
||||
return o;
|
||||
}
|
||||
|
||||
QString parsePathspec(QJsonDocument &response, QString &pathspec) {
|
||||
if (!pathspec.startsWith(".")) {
|
||||
// Does not point to anything
|
||||
return "";
|
||||
} else {
|
||||
if (!response.isObject())
|
||||
return "";
|
||||
QStringList fields = pathspec.right(pathspec.length() - 1)
|
||||
.split('.', QString::SkipEmptyParts);
|
||||
QJsonObject o = response.object();
|
||||
if (pathspec == ".") {
|
||||
return QString::fromUtf8(response.toJson());
|
||||
}
|
||||
QJsonValue val = o[fields.at(0)];
|
||||
if (val.isUndefined() || val.isNull())
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(
|
||||
QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
for (int i = 1; i < fields.size(); i++) {
|
||||
if (val.isUndefined() || val.isNull())
|
||||
if (!pathspec.startsWith(".")) {
|
||||
// Does not point to anything
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(
|
||||
QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
else
|
||||
val = val.toObject()[fields.at(i)];
|
||||
} else {
|
||||
if (!response.isObject()) return "";
|
||||
QStringList fields = pathspec.right(pathspec.length() - 1).split('.', QString::SkipEmptyParts);
|
||||
QJsonObject o = response.object();
|
||||
if (pathspec == ".") {
|
||||
return QString::fromUtf8(response.toJson());
|
||||
}
|
||||
QJsonValue val = o[fields.at(0)];
|
||||
if (val.isUndefined() || val.isNull())
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
for (int i = 1; i < fields.size(); i++) {
|
||||
if (val.isUndefined() || val.isNull())
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
else
|
||||
val = val.toObject()[fields.at(i)];
|
||||
}
|
||||
if (val.isUndefined() || val.isNull())
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
}
|
||||
if (val.isUndefined() || val.isNull())
|
||||
return "";
|
||||
else if (val.isString())
|
||||
return val.toString();
|
||||
else if (!val.isObject())
|
||||
return QString::fromUtf8(
|
||||
QJsonDocument::fromVariant(val.toVariant()).toJson());
|
||||
}
|
||||
return "";
|
||||
return "";
|
||||
}
|
||||
|
||||
void parseResult(QJsonDocument result, QString returnPathspec, QString name) {
|
||||
if (result.isObject()) {
|
||||
qDebug() << result.object()[".url"];
|
||||
QString url = parsePathspec(result, returnPathspec);
|
||||
if (!url.isEmpty()) {
|
||||
QApplication::clipboard()->setText(url);
|
||||
notifications::notify("KShare Custom Uploader " + name,
|
||||
"Copied upload link to clipboard!");
|
||||
if (result.isObject()) {
|
||||
qDebug() << result.object()[".url"];
|
||||
QString url = parsePathspec(result, returnPathspec);
|
||||
if (!url.isEmpty()) {
|
||||
QApplication::clipboard()->setText(url);
|
||||
notifications::notify("KShare Custom Uploader " + name, "Copied upload link to clipboard!");
|
||||
} else
|
||||
notifications::notify("KShare Custom Uploader " + name, "Upload done, but result empty!");
|
||||
} else
|
||||
notifications::notify("KShare Custom Uploader " + name,
|
||||
"Upload done, but result empty!");
|
||||
} else
|
||||
notifications::notify("KShare Custom Uploader " + name,
|
||||
"Upload done, but result is not JSON Object!");
|
||||
notifications::notify("KShare Custom Uploader " + name, "Upload done, but result is not JSON Object!");
|
||||
}
|
||||
|
||||
void CustomUploader::doUpload(QPixmap *pixmap) {
|
||||
auto h = getHeaders(headers, getFormatString(false), types, this->format);
|
||||
QString format = getFormatString(false); // Soon:tm:
|
||||
QByteArray data;
|
||||
QByteArray imgData = imageBytes(pixmap, format);
|
||||
if (iFormat == "base64" ||
|
||||
QRegExp("base64\\([^+]\\+[^+]\\)").exactMatch(iFormat))
|
||||
imgData = imgData.toBase64();
|
||||
switch (this->format) {
|
||||
case RequestFormat::PLAIN: {
|
||||
data = imgData;
|
||||
} break;
|
||||
case RequestFormat::JSON: {
|
||||
if (body.isString()) {
|
||||
QStringList split = body.toString()
|
||||
.replace("%contenttype", types.value(format))
|
||||
.split("%imagedata");
|
||||
for (int i = 0; i < split.size(); i++) {
|
||||
data.append(split[i]);
|
||||
if (i < split.size() - 1)
|
||||
data.append(imgData);
|
||||
}
|
||||
} else {
|
||||
QJsonObject vo = body.toObject();
|
||||
data = QJsonDocument::fromVariant(
|
||||
recurseAndReplace(vo, imgData, types.value(format))
|
||||
.toVariantMap())
|
||||
.toJson();
|
||||
}
|
||||
} break;
|
||||
case RequestFormat::X_WWW_FORM_URLENCODED: {
|
||||
QJsonObject body = this->body.toObject();
|
||||
for (QString key : body.keys()) {
|
||||
QJsonValue val = body[key];
|
||||
if (val.isString()) {
|
||||
QString str = val.toString();
|
||||
QByteArray strB;
|
||||
if (str.startsWith("/") && str.endsWith("/")) {
|
||||
str = str.mid(1, str.length() - 2);
|
||||
QStringList split = str.replace("%contenttype", types.value(format))
|
||||
.split("%imagedata");
|
||||
for (int i = 0; i < split.size(); i++) {
|
||||
strB.append(split[i]);
|
||||
if (i < split.size() - 1)
|
||||
strB.append(imgData);
|
||||
}
|
||||
auto h = getHeaders(headers, getFormatString(false), types, this->format);
|
||||
QString format = getFormatString(false); // Soon:tm:
|
||||
QByteArray data;
|
||||
QByteArray imgData = imageBytes(pixmap, format);
|
||||
if (iFormat == "base64" || QRegExp("base64\\([^+]\\+[^+]\\)").exactMatch(iFormat)) imgData = imgData.toBase64();
|
||||
switch (this->format) {
|
||||
case RequestFormat::PLAIN: {
|
||||
data = imgData;
|
||||
} break;
|
||||
case RequestFormat::JSON: {
|
||||
if (body.isString()) {
|
||||
QStringList split = body.toString().replace("%contenttype", types.value(format)).split("%imagedata");
|
||||
for (int i = 0; i < split.size(); i++) {
|
||||
data.append(split[i]);
|
||||
if (i < split.size() - 1) data.append(imgData);
|
||||
}
|
||||
} else {
|
||||
QJsonObject vo = body.toObject();
|
||||
data = QJsonDocument::fromVariant(recurseAndReplace(vo, imgData, types.value(format)).toVariantMap()).toJson();
|
||||
}
|
||||
data.append(QUrl::toPercentEncoding(key)).append('=').append(strB);
|
||||
} else {
|
||||
if (!data.isEmpty())
|
||||
data.append('&');
|
||||
data.append(QUrl::toPercentEncoding(key))
|
||||
.append('=')
|
||||
.append(QUrl::toPercentEncoding(
|
||||
QJsonDocument::fromVariant(body[key].toVariant()).toJson()));
|
||||
}
|
||||
} break;
|
||||
case RequestFormat::X_WWW_FORM_URLENCODED: {
|
||||
QJsonObject body = this->body.toObject();
|
||||
for (QString key : body.keys()) {
|
||||
QJsonValue val = body[key];
|
||||
if (val.isString()) {
|
||||
QString str = val.toString();
|
||||
QByteArray strB;
|
||||
if (str.startsWith("/") && str.endsWith("/")) {
|
||||
str = str.mid(1, str.length() - 2);
|
||||
QStringList split = str.replace("%contenttype", types.value(format)).split("%imagedata");
|
||||
for (int i = 0; i < split.size(); i++) {
|
||||
strB.append(split[i]);
|
||||
if (i < split.size() - 1) strB.append(imgData);
|
||||
}
|
||||
}
|
||||
data.append(QUrl::toPercentEncoding(key)).append('=').append(strB);
|
||||
} else {
|
||||
if (!data.isEmpty()) data.append('&');
|
||||
data.append(QUrl::toPercentEncoding(key))
|
||||
.append('=')
|
||||
.append(QUrl::toPercentEncoding(QJsonDocument::fromVariant(body[key].toVariant()).toJson()));
|
||||
}
|
||||
}
|
||||
} break;
|
||||
}
|
||||
} break;
|
||||
}
|
||||
switch (method) {
|
||||
case HttpMethod::POST:
|
||||
if (returnPathspec == "|") {
|
||||
ioutils::postData(
|
||||
target, h, data, [&](QByteArray result, QNetworkReply *) {
|
||||
QApplication::clipboard()->setText(QString::fromUtf8(result));
|
||||
notifications::notify("KShare Custom Uploader " + name(),
|
||||
"Copied upload result to clipboard!");
|
||||
});
|
||||
} else {
|
||||
ioutils::postJson(target, h, data,
|
||||
[&](QJsonDocument result, QNetworkReply *) {
|
||||
parseResult(result, returnPathspec, name());
|
||||
});
|
||||
switch (method) {
|
||||
case HttpMethod::POST:
|
||||
if (returnPathspec == "|") {
|
||||
ioutils::postData(target, h, data, [&](QByteArray result, QNetworkReply *) {
|
||||
QApplication::clipboard()->setText(QString::fromUtf8(result));
|
||||
notifications::notify("KShare Custom Uploader " + name(), "Copied upload result to clipboard!");
|
||||
});
|
||||
} else {
|
||||
ioutils::postJson(target, h, data,
|
||||
[&](QJsonDocument result, QNetworkReply *) { parseResult(result, returnPathspec, name()); });
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -11,24 +11,24 @@ enum class HttpMethod { POST };
|
||||
enum class RequestFormat { X_WWW_FORM_URLENCODED, JSON, PLAIN };
|
||||
|
||||
class CustomUploader : public Uploader {
|
||||
public:
|
||||
CustomUploader(QString absFilePath);
|
||||
QString name();
|
||||
QString description();
|
||||
void doUpload(QPixmap *pixmap);
|
||||
QString getFormatString(bool animated);
|
||||
QMap<QString, QString> types;
|
||||
public:
|
||||
CustomUploader(QString absFilePath);
|
||||
QString name();
|
||||
QString description();
|
||||
void doUpload(QPixmap *pixmap);
|
||||
QString getFormatString(bool animated);
|
||||
QMap<QString, QString> types;
|
||||
|
||||
private:
|
||||
QString desc;
|
||||
QString uName;
|
||||
RequestFormat format = RequestFormat::JSON;
|
||||
HttpMethod method = HttpMethod::POST;
|
||||
QUrl target;
|
||||
QJsonValue body;
|
||||
QJsonObject headers;
|
||||
QString returnPathspec;
|
||||
QString iFormat;
|
||||
private:
|
||||
QString desc;
|
||||
QString uName;
|
||||
RequestFormat format = RequestFormat::JSON;
|
||||
HttpMethod method = HttpMethod::POST;
|
||||
QUrl target;
|
||||
QJsonValue body;
|
||||
QJsonObject headers;
|
||||
QString returnPathspec;
|
||||
QString iFormat;
|
||||
};
|
||||
|
||||
#endif // CUSTOMUPLOADER_HPP
|
||||
|
@ -5,6 +5,6 @@
|
||||
#include <notifications.hpp>
|
||||
|
||||
void ClipboardUploader::doUpload(QPixmap *pixmap) {
|
||||
QApplication::clipboard()->setImage(pixmap->toImage());
|
||||
notifications::notify("KShare", "Copied to clipboard!");
|
||||
QApplication::clipboard()->setImage(pixmap->toImage());
|
||||
notifications::notify("KShare", "Copied to clipboard!");
|
||||
}
|
||||
|
@ -5,10 +5,14 @@
|
||||
#include <uploaders/uploader.hpp>
|
||||
|
||||
class ClipboardUploader : public Uploader {
|
||||
public:
|
||||
QString name() { return "clipboard"; }
|
||||
QString description() { return "Copies the image to clipboard"; }
|
||||
void doUpload(QPixmap *pixmap);
|
||||
public:
|
||||
QString name() {
|
||||
return "clipboard";
|
||||
}
|
||||
QString description() {
|
||||
return "Copies the image to clipboard";
|
||||
}
|
||||
void doUpload(QPixmap *pixmap);
|
||||
};
|
||||
|
||||
#endif // CLIPBOARDUPLOADER_HPP
|
||||
|
@ -8,22 +8,17 @@
|
||||
#include <screenshotutil.hpp>
|
||||
|
||||
void ImgurUploader::doUpload(QPixmap *pixmap) {
|
||||
QByteArray byteArray;
|
||||
QBuffer buffer(&byteArray);
|
||||
pixmap->save(&buffer, "PNG");
|
||||
ioutils::postJson(
|
||||
QUrl("https://api.imgur.com/3/image"),
|
||||
QList<QPair<QString, QString>>()
|
||||
<< QPair<QString, QString>("Content-Type",
|
||||
"application/x-www-form-urlencoded")
|
||||
<< QPair<QString, QString>("Authorization",
|
||||
"Client-ID 8a98f183fc895da"),
|
||||
byteArray, [](QJsonDocument res, QNetworkReply *) {
|
||||
QString result = res.object()["data"].toObject()["link"].toString();
|
||||
screenshotutil::toClipboard(result);
|
||||
notifications::notify("KShare imgur Uploader ",
|
||||
result.isEmpty()
|
||||
? "Failed upload!"
|
||||
: "Upload done, but result empty!");
|
||||
});
|
||||
QByteArray byteArray;
|
||||
QBuffer buffer(&byteArray);
|
||||
pixmap->save(&buffer, "PNG");
|
||||
ioutils::postJson(QUrl("https://api.imgur.com/3/image"),
|
||||
QList<QPair<QString, QString>>()
|
||||
<< QPair<QString, QString>("Content-Type", "application/x-www-form-urlencoded")
|
||||
<< QPair<QString, QString>("Authorization", "Client-ID 8a98f183fc895da"),
|
||||
byteArray, [](QJsonDocument res, QNetworkReply *) {
|
||||
QString result = res.object()["data"].toObject()["link"].toString();
|
||||
screenshotutil::toClipboard(result);
|
||||
notifications::notify("KShare imgur Uploader ",
|
||||
result.isEmpty() ? "Failed upload!" : "Upload done, but result empty!");
|
||||
});
|
||||
}
|
||||
|
@ -4,10 +4,14 @@
|
||||
#include "../uploader.hpp"
|
||||
|
||||
class ImgurUploader : public Uploader {
|
||||
public:
|
||||
QString name() { return "imgur"; }
|
||||
QString description() { return "imgur.com uploader"; }
|
||||
void doUpload(QPixmap *pixmap);
|
||||
public:
|
||||
QString name() {
|
||||
return "imgur";
|
||||
}
|
||||
QString description() {
|
||||
return "imgur.com uploader";
|
||||
}
|
||||
void doUpload(QPixmap *pixmap);
|
||||
};
|
||||
|
||||
#endif // IMGURUPLOADER_HPP
|
||||
|
@ -5,10 +5,10 @@
|
||||
#include <QString>
|
||||
|
||||
class Uploader {
|
||||
public:
|
||||
virtual void doUpload(QPixmap *pixmap) = 0;
|
||||
virtual QString name() = 0;
|
||||
virtual QString description() = 0;
|
||||
public:
|
||||
virtual void doUpload(QPixmap *pixmap) = 0;
|
||||
virtual QString name() = 0;
|
||||
virtual QString description() = 0;
|
||||
};
|
||||
|
||||
#endif // UPLOADER_HPP
|
||||
|
@ -9,69 +9,69 @@
|
||||
#include <settings.hpp>
|
||||
|
||||
UploaderSingleton::UploaderSingleton() : QObject() {
|
||||
QDir configDir(
|
||||
QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation));
|
||||
configDir.mkpath("KShare/uploaders");
|
||||
configDir.cd("KShare/uploaders");
|
||||
configDir.setNameFilters({"*.uploader"});
|
||||
for (QString file : configDir.entryList()) {
|
||||
try {
|
||||
registerUploader(new CustomUploader(configDir.absoluteFilePath(file)));
|
||||
} catch (std::runtime_error e) {
|
||||
qWarning() << e.what();
|
||||
errs << e;
|
||||
QDir configDir(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation));
|
||||
configDir.mkpath("KShare/uploaders");
|
||||
configDir.cd("KShare/uploaders");
|
||||
configDir.setNameFilters({ "*.uploader" });
|
||||
for (QString file : configDir.entryList()) {
|
||||
try {
|
||||
registerUploader(new CustomUploader(configDir.absoluteFilePath(file)));
|
||||
} catch (std::runtime_error e) {
|
||||
qWarning() << e.what();
|
||||
errs << e;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// UPLOADERS
|
||||
registerUploader(new ImgurUploader);
|
||||
registerUploader(new ClipboardUploader);
|
||||
// ---------
|
||||
// UPLOADERS
|
||||
registerUploader(new ImgurUploader);
|
||||
registerUploader(new ClipboardUploader);
|
||||
// ---------
|
||||
|
||||
if (settings::settings().contains("uploader"))
|
||||
uploader = settings::settings().value("uploader").toString();
|
||||
else
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
if (!uploaders.contains(uploader)) {
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
uploader = "imgur";
|
||||
}
|
||||
if (settings::settings().contains("uploader"))
|
||||
uploader = settings::settings().value("uploader").toString();
|
||||
else
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
if (!uploaders.contains(uploader)) {
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
uploader = "imgur";
|
||||
}
|
||||
}
|
||||
|
||||
void UploaderSingleton::registerUploader(Uploader *uploader) {
|
||||
if (uploaders.contains(uploader->name())) {
|
||||
throw std::runtime_error(
|
||||
("Ambigious uploader " + uploader->name()).toStdString());
|
||||
}
|
||||
uploaders.insert(uploader->name(), uploader);
|
||||
emit newUploader(uploader);
|
||||
if (uploaders.contains(uploader->name())) {
|
||||
throw std::runtime_error(("Ambigious uploader " + uploader->name()).toStdString());
|
||||
}
|
||||
uploaders.insert(uploader->name(), uploader);
|
||||
emit newUploader(uploader);
|
||||
}
|
||||
|
||||
void UploaderSingleton::upload(QPixmap *pixmap) {
|
||||
if (settings::settings().contains("fileFormat")) {
|
||||
QString format = settings::settings().value("fileFormat").toString();
|
||||
if (!format.isEmpty()) {
|
||||
pixmap->save(QDir(QStandardPaths::writableLocation(
|
||||
QStandardPaths::PicturesLocation))
|
||||
.absoluteFilePath(formatter::format(format) + ".png"),
|
||||
"PNG");
|
||||
if (settings::settings().contains("fileFormat")) {
|
||||
QString format = settings::settings().value("fileFormat").toString();
|
||||
if (!format.isEmpty()) {
|
||||
pixmap->save(QDir(QStandardPaths::writableLocation(QStandardPaths::PicturesLocation)).absoluteFilePath(formatter::format(format) + ".png"),
|
||||
"PNG");
|
||||
}
|
||||
}
|
||||
}
|
||||
uploaders.value(uploader)->doUpload(pixmap);
|
||||
delete pixmap;
|
||||
uploaders.value(uploader)->doUpload(pixmap);
|
||||
delete pixmap;
|
||||
}
|
||||
|
||||
QList<Uploader *> UploaderSingleton::uploaderList() {
|
||||
return uploaders.values();
|
||||
return uploaders.values();
|
||||
}
|
||||
|
||||
void UploaderSingleton::set(QString uploader) {
|
||||
if (uploaders.contains(uploader)) {
|
||||
this->uploader = uploader;
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
}
|
||||
if (uploaders.contains(uploader)) {
|
||||
this->uploader = uploader;
|
||||
settings::settings().setValue("uploader", uploader);
|
||||
}
|
||||
}
|
||||
|
||||
QString UploaderSingleton::selectedUploader() { return uploader; }
|
||||
QString UploaderSingleton::selectedUploader() {
|
||||
return uploader;
|
||||
}
|
||||
|
||||
QList<std::runtime_error> UploaderSingleton::errors() { return errs; }
|
||||
QList<std::runtime_error> UploaderSingleton::errors() {
|
||||
return errs;
|
||||
}
|
||||
|
@ -5,26 +5,26 @@
|
||||
#include <QMap>
|
||||
|
||||
class UploaderSingleton : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
static UploaderSingleton &inst() {
|
||||
static UploaderSingleton inst;
|
||||
return inst;
|
||||
}
|
||||
void registerUploader(Uploader *uploader);
|
||||
void upload(QPixmap *pixmap);
|
||||
QList<Uploader *> uploaderList();
|
||||
void set(QString uploader);
|
||||
QString selectedUploader();
|
||||
QList<std::runtime_error> errors();
|
||||
signals:
|
||||
void newUploader(Uploader *u);
|
||||
Q_OBJECT
|
||||
public:
|
||||
static UploaderSingleton &inst() {
|
||||
static UploaderSingleton inst;
|
||||
return inst;
|
||||
}
|
||||
void registerUploader(Uploader *uploader);
|
||||
void upload(QPixmap *pixmap);
|
||||
QList<Uploader *> uploaderList();
|
||||
void set(QString uploader);
|
||||
QString selectedUploader();
|
||||
QList<std::runtime_error> errors();
|
||||
signals:
|
||||
void newUploader(Uploader *u);
|
||||
|
||||
private:
|
||||
UploaderSingleton();
|
||||
QMap<QString, Uploader *> uploaders;
|
||||
QString uploader = "imgur";
|
||||
QList<std::runtime_error> errs;
|
||||
private:
|
||||
UploaderSingleton();
|
||||
QMap<QString, Uploader *> uploaders;
|
||||
QString uploader = "imgur";
|
||||
QList<std::runtime_error> errs;
|
||||
};
|
||||
|
||||
#endif // UPLOADERSINGLETON_HPP
|
||||
|
Loading…
Reference in New Issue
Block a user