Pencil2D Animation
Download Community News Docs Contribute
  • Overview
  • Articles
  • Code
  •  
  • Class List
  • Class Index
  • Class Hierarchy
  • Class Members
  • File List
Loading...
Searching...
No Matches
  • core_lib
  • src
  • tool
eyedroppertool.h
1/*
2
3Pencil2D - Traditional Animation Software
4Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
5Copyright (C) 2012-2020 Matthew Chiawen Chang
6
7This program is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public License
9as published by the Free Software Foundation; version 2 of the License.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16*/
17
18#ifndef EYEDROPPERTOOL_H
19#define EYEDROPPERTOOL_H
20
21#include "basetool.h"
22
23class LayerBitmap;
24class LayerVector;
25
26class EyedropperTool : public BaseTool
27{
28 Q_OBJECT
29public:
30 explicit EyedropperTool( QObject* parent = 0 );
31 ToolType type() override { return EYEDROPPER; }
32 void loadSettings() override;
33 void saveSettings() override;
34 QCursor cursor() override;
35 QCursor cursor( const QColor color );
36
37 void pointerPressEvent( PointerEvent* ) override;
38 void pointerReleaseEvent( PointerEvent* event ) override;
39 void pointerMoveEvent( PointerEvent* event ) override;
40
42 void updateFrontColor(const QPointF& pos);
43
44private:
46 QColor getBitmapColor(LayerBitmap* layer, const QPointF& pos);
48 int getVectorColor(LayerVector *layer, const QPointF& pos);
49};
50
51#endif // EYEDROPPERTOOL_H
BaseTool
Definition: basetool.h:70
EyedropperTool
Definition: eyedroppertool.h:27
EyedropperTool::updateFrontColor
void updateFrontColor(const QPointF &pos)
Updates front color for bitmap and color index for vector.
Definition: eyedroppertool.cpp:129
EyedropperTool::getBitmapColor
QColor getBitmapColor(LayerBitmap *layer, const QPointF &pos)
Retrieves color of the pixel under the cursor for a bitmap layer.
Definition: eyedroppertool.cpp:152
EyedropperTool::getVectorColor
int getVectorColor(LayerVector *layer, const QPointF &pos)
Retrieves the color index of the pixel under the cursor for a vector layer.
Definition: eyedroppertool.cpp:166
LayerBitmap
Definition: layerbitmap.h:26
LayerVector
Definition: layervector.h:26
PointerEvent
Definition: pointerevent.h:8
QColor
QCursor
QObject
QObject::Q_OBJECT
Q_OBJECTQ_OBJECT
QObject::event
virtual bool event(QEvent *e)
QObject::parent
QObject * parent() const const
QPointF
Generated on Thu May 8 2025 04:47:53 for Pencil2D by doxygen 1.9.6 based on revision 4513250b1d5b1a3676ec0e67b06b7a885ceaae39