forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor_picker.h
49 lines (38 loc) · 958 Bytes
/
color_picker.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Aseprite
// Copyright (C) 2001-2018 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_COLOR_PICKER_H_INCLUDED
#define APP_COLOR_PICKER_H_INCLUDED
#pragma once
#include "app/color.h"
#include "doc/layer.h"
#include "gfx/point.h"
namespace render {
class Projection;
}
namespace app {
class Site;
class ColorPicker {
public:
enum Mode {
FromComposition,
FromActiveLayer,
FromFirstReferenceLayer
};
ColorPicker();
void pickColor(const Site& site,
const gfx::PointF& pos,
const render::Projection& proj,
const Mode mode);
app::Color color() const { return m_color; }
int alpha() const { return m_alpha; }
doc::Layer* layer() const { return m_layer; }
private:
app::Color m_color;
int m_alpha;
doc::Layer* m_layer;
};
} // namespace app
#endif