mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-03 23:04:11 +01:00
83 lines
2.7 KiB
C++
83 lines
2.7 KiB
C++
/*
|
|
* LCD Image Converter. Converts images and fonts for embedded applications.
|
|
* Copyright (C) 2015 riuson
|
|
* mailto: riuson@gmail.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
*/
|
|
|
|
#ifndef TOOLFILL_H
|
|
#define TOOLFILL_H
|
|
//-----------------------------------------------------------------------------
|
|
#include <QObject>
|
|
#include <QImage>
|
|
#include <QColor>
|
|
#include "iimageeditortool.h"
|
|
|
|
class QIcon;
|
|
class QAction;
|
|
template <class T1> class QVector;
|
|
//-----------------------------------------------------------------------------
|
|
namespace ImageEditor
|
|
{
|
|
class IImageEditorParams;
|
|
//-----------------------------------------------------------------------------
|
|
class ToolFill : public QObject, public IImageEditorTool
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(ImageEditor::IImageEditorTool)
|
|
|
|
public:
|
|
explicit ToolFill(IImageEditorParams *parameters, QObject *parent = 0);
|
|
~ToolFill();
|
|
|
|
const QString title() const;
|
|
const QString tooltip() const;
|
|
const QIcon *icon() const;
|
|
const QList<QAction *> *actions() const;
|
|
const QList<QWidget *> *widgets() const;
|
|
|
|
public slots:
|
|
bool processMouse(QMouseEvent *event,
|
|
const QImage *imageOriginal);
|
|
|
|
signals:
|
|
void started(const QImage *value);
|
|
void processing(const QImage *value);
|
|
void completed(const QImage *value, bool changed);
|
|
|
|
private:
|
|
IImageEditorParams *mParameters;
|
|
QIcon *mIcon;
|
|
QList<QAction *> *mActions;
|
|
QList<QWidget *> *mWidgets;
|
|
int mSize;
|
|
bool mFlagChanged;
|
|
QImage mInternalImage;
|
|
|
|
void initializeWidgets();
|
|
void loadSettings();
|
|
void saveSettings() const;
|
|
bool fillArea(int x, int y, const QColor &color);
|
|
void collectPointsAround(const QImage &image, const QPoint &point, const QRgb &color, QVector<QPoint> *vector);
|
|
void collectPoint(const QImage &image, const QPoint &point, const QRgb &color, QVector<QPoint> *vector);
|
|
|
|
private slots:
|
|
void on_spinBoxSize_valueChanged(int value);
|
|
};
|
|
//-----------------------------------------------------------------------------
|
|
} // end of namespace
|
|
//-----------------------------------------------------------------------------
|
|
#endif // TOOLFILL_H
|