This repository has been archived by the owner on Oct 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Pick.pas
231 lines (191 loc) · 6.37 KB
/
Pick.pas
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
unit Pick;
(*
CCA is a tool to evaluate the color visibility and contrast of foreground/background color combinations.
Copyright (C) 2014 The Paciello Group
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 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, ComCtrls, Math, MultiMon;
const
WM_DPICHANGED = 736;
type
TPickForm = class(TForm)
Shape1: TShape;
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
procedure FormMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
procedure FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
procedure FormShow(Sender: TObject);
procedure FormDestroy(Sender: TObject);
private
{ Private 錾 }
procedure WMCaptureChanged(var Message: TMessage); message WM_CaptureChanged;
procedure WMDPIChanged(var Message: TMessage); message WM_DPICHANGED;
public
{ Public 錾 }
ScaleX, ScaleY: double;
end;
var
PickForm: TPickForm;
implementation
uses Main;
{$R *.dfm}
function DoubleToInt(d: double): integer;
begin
SetRoundMode(rmUP);
Result := Trunc(SimpleRoundTo(d));
end;
procedure TPickForm.FormMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var
TP: TPoint;
ArPTClr: array of TColor;
i, t, p, dit: integer;
monEx: TMonitorInfoEx;
SC_hdc: HDC;
hm: HMonitor;
function GetAverageColor: TColor;
var
R, G, B, i: integer;
RGBColor : LongInt;
begin
R := 0;
G := 0;
B := 0;
for i := Low(ArPTClr) to High(ArPTClr) do
begin
RGBColor := ArPTClr[i];
R := R + ($000000FF and RGBColor);
G := G + ($0000FF00 and RGBColor) shr 8;
B := B + ($00FF0000 and RGBColor) shr 16;
end;
R := R div Length(ArPTClr);
G := G div Length(ArPTClr);
B := B div Length(ArPTClr);
Result := StringToColor('$00' + IntToHex(B, 2) + IntToHex(G, 2) + IntToHex(R, 2));
end;
begin
if GetCapture <> Handle then
SetCapture(Handle);
GetCursorPos(TP);
//MoveWindow(Handle, TP.x - 101, TP.y - 101, 202, 202, TRUE);
MoveWindow(PickForm.Handle, tp.x - Width div 2, tp.y - height div 2, width, height, TRUE);
FillChar(monEx, SizeOf(TMonitorInfoEx), #0);
monEx.cbSize := SizeOf(monEx);
for i := 0 to Screen.MonitorCount - 1 do
begin
GetMonitorInfo(Screen.Monitors[i].Handle, @monEx);
hm := MonitorFromWindow(Handle, MONITOR_DEFAULTTONEAREST);
//if PtInRect(monEx.rcMonitor , TP) then
if hm = Screen.Monitors[i].Handle then
begin
//lx := GetDeviceCaps (SC_hdc, LOGPIXELSX) div 96;
//ly := GetDeviceCaps (SC_hdc, LOGPIXELSY) div 96;
{SetRoundMode(rmUP);
TP.X := Trunc(SimpleRoundTo((TP.X - Screen.Monitors[i].Left) * 1.2, 0));// * lx;
TP.Y := Trunc(SimpleRoundTo((TP.Y - Screen.Monitors[i].Top) * 1.2, 0));// * ly;}
TP.X := TP.X - Screen.Monitors[i].Left;// * lx;
TP.Y := TP.Y - Screen.Monitors[i].Top;// * ly;
SC_hdc := CreateDC('DISPLAY', monEx.szDevice, nil, nil);
try
//BitBlt(Canvas.Handle, 0, 0, 200, 200, {MainForm.arSS_hdc[i]}SC_hdc, TP.X-20, TP.Y-20, SRCCOPY);
StretchBlt(Canvas.Handle, 1, 1, width -2 , Height - 2, MainForm.arSS_hdc[i], TP.X-((width - 2) div 10), TP.Y-((height - 2) div 10), (width - 2) div 5, (height - 2) div 5, SRCCOPY);
finally
DeleteDC(SC_HDC);
end;
break;
end;
end;
//StretchBlt(Canvas.Handle, 1, 1, 200, 200, MainForm.SS_hdc, pt.x - 20, pt.y - 20, 40, 40, SRCCOPY);
if MainForm.SelFore then
dit := MainForm.Dither1
else
dit := MainForm.Dither2;
Canvas.Brush.Color := clBlack;
Canvas.Pen.Style := psSolid ;
Canvas.FrameRect(Rect((width -2) div 2, (Height - 2 ) div 2, ((width -2) div 2)+(dit * 5)+2, ((Height - 2 ) div 2)+(dit * 5)+2));
if dit = 1 then
begin
SetLength(ArPTClr, 1);
ArPTClr[0] := Canvas.Pixels[width div 2, height div 2];
end
else
begin
SetLength(ArPTClr, Sqr(dit));
p := 0;
for i := 0 to dit - 1 do
begin
for t := 0 to dit - 1 do
begin
ArPTClr[p] := Canvas.Pixels[(width div 2) + (i * 5), (height div 2) + (t * 5)];
Inc(p);
end;
end;
end;
if MainForm.SelFore then
MainForm.FJColor.ActiveColor := GetAverageColor
else
MainForm.BColor.ActiveColor := GetAverageColor;
end;
procedure TPickForm.FormMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if Button = mbLeft then
begin
ReleaseCapture;
//ShowCursor(True);
MainForm.CalcColor;
Close;
end;
end;
procedure TPickForm.WMCaptureChanged(var Message: TMessage);
begin
inherited;
OnMouseDown(self, mbLeft, [], 0, 0);
end;
procedure TPickForm.WMDPIChanged(var Message: TMessage);
begin
scaleX := Message.WParamLo / 96.0;
end;
procedure TPickForm.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
var
pt: TPoint;
begin
GetCursorPos(pt);
if (Key = VK_RETURN) or (Key = VK_ESCAPE) then
OnMouseDown(self, mbLeft, [], 0, 0)
else if Key = VK_UP then
Dec(PT.Y)
else if Key = VK_DOWN then
Inc(PT.Y)
else if Key = VK_LEFT then
Dec(PT.X)
else if Key = VK_RIGHT then
Inc(PT.X);
SetCursorPos(PT.X, PT.Y);
end;
procedure TPickForm.FormShow(Sender: TObject);
begin
SetWindowPos(Handle,HWND_TOPMOST,Left,Top,Width,Height,SWP_SHOWWINDOW);
//ShowCursor(False);
end;
procedure TPickForm.FormDestroy(Sender: TObject);
begin
//ShowCursor(True);
end;
end.