/* * 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 #include #include #include #include #include #include "iimageeditortool.h" namespace ImageEditor { class IImageEditorParams; namespace Tools { class ToolRect : public QObject, public IImageEditorTool { Q_OBJECT Q_INTERFACES(ImageEditor::Tools::IImageEditorTool) public: explicit ToolRect(IImageEditorParams* parameters, QObject* parent = 0); virtual ~ToolRect(); const QString title() const Q_DECL_OVERRIDE; const QString tooltip() const Q_DECL_OVERRIDE; const QIcon* icon() const Q_DECL_OVERRIDE; const QList* actions() const Q_DECL_OVERRIDE; const QList* widgets() const Q_DECL_OVERRIDE; public slots: bool processMouse(QMouseEvent* event, const QImage* imageOriginal, bool inRect) Q_DECL_OVERRIDE; signals: void started(const QImage* value) Q_DECL_OVERRIDE; void processing(const QImage* value) Q_DECL_OVERRIDE; void completed(const QImage* value, bool changed) Q_DECL_OVERRIDE; private: enum OutlineMode { Outline = 1, Filled = 2, FilledOutline = 4 }; IImageEditorParams* mParameters; QIcon* mIcon; QList* mActions; QList* mWidgets; int mSize; bool mFlagChanged; QImage mOriginalImage; QImage mInternalImage; QAction* mActionRectOutline; QAction* mActionRectFilledOutline; QAction* mActionRectFilled; QPoint mStartPoint; OutlineMode mOutlineMode; void initializeWidgets(); void loadSettings(); void saveSettings() const; void drawRect(const QRect& rect, OutlineMode mode, int borderWidth, bool inverted); private slots: void on_spinBoxSize_valueChanged(int value); void on_buttonRertFilledOutline_triggered(); }; } // namespace Tools } // namespace ImageEditor #endif // TOOLRECT_H