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
3
Pencil2D - Traditional Animation Software
4
Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
5
Copyright (C) 2012-2020 Matthew Chiawen Chang
6
7
This program is free software; you can redistribute it and/or
8
modify it under the terms of the GNU General Public License
9
as published by the Free Software Foundation; version 2 of the License.
10
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
15
16
*/
17
18
#ifndef EYEDROPPERTOOL_H
19
#define EYEDROPPERTOOL_H
20
21
#include "basetool.h"
22
23
class
LayerBitmap
;
24
class
LayerVector
;
25
26
class
EyedropperTool
:
public
BaseTool
27
{
28
Q_OBJECT
29
public
:
30
explicit
EyedropperTool
(
QObject
*
parent
= 0 );
31
32
ToolType type()
const override
{
return
EYEDROPPER; }
33
34
ToolProperties
& toolProperties()
override
{
return
mSettings; }
35
36
void
loadSettings()
override
;
37
QCursor
cursor()
override
;
38
QCursor
cursor(
const
QColor
color );
39
40
void
pointerPressEvent(
PointerEvent
* )
override
;
41
void
pointerReleaseEvent(
PointerEvent
*
event
)
override
;
42
void
pointerMoveEvent(
PointerEvent
*
event
)
override
;
43
45
void
updateFrontColor
(
const
QPointF
& pos);
46
47
private
:
49
QColor
getBitmapColor
(
LayerBitmap
* layer,
const
QPointF
& pos);
51
int
getVectorColor
(
LayerVector
*layer,
const
QPointF
& pos);
52
53
ToolProperties
mSettings;
54
};
55
56
#endif
// EYEDROPPERTOOL_H
BaseTool
Definition:
basetool.h:47
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:121
EyedropperTool::getBitmapColor
QColor getBitmapColor(LayerBitmap *layer, const QPointF &pos)
Retrieves color of the pixel under the cursor for a bitmap layer.
Definition:
eyedroppertool.cpp:144
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:158
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
ToolProperties
Definition:
toolproperties.h:204