1
1
import math
2
+ import random
2
3
from typing import Optional
3
4
4
- from PyQt5 .QtCore import Qt , QRect , QPoint , QPointF
5
+ from PyQt5 .QtCore import Qt , QRect , QPoint , QPointF , QRectF
5
6
from PyQt5 .QtGui import (
6
7
QPainter , QBrush , QPixmap , QImage , QColor , QPolygonF , QPalette ,
7
8
QPainterPath , QGuiApplication ,
8
9
)
9
10
from PyQt5 .QtWidgets import QWidget
10
11
11
- from feeluown .gui .helpers import random_solarized_color , painter_save , IS_MACOS
12
+ from feeluown .gui .helpers import (
13
+ random_solarized_color , painter_save , IS_MACOS , SOLARIZED_COLORS ,
14
+ )
12
15
13
16
14
17
class SizedPixmapDrawer :
@@ -18,6 +21,7 @@ class SizedPixmapDrawer:
18
21
Note that if device_pixel_ratio is not properly set, the drawed image
19
22
quality may be poor.
20
23
"""
24
+
21
25
def __init__ (self , img : Optional [QImage ], rect : QRect , radius : int = 0 ):
22
26
self ._rect = rect
23
27
self ._img_old_width = rect .width ()
@@ -103,6 +107,7 @@ class PixmapDrawer(SizedPixmapDrawer):
103
107
104
108
TODO: rename this drawer to WidgetPixmapDrawer?
105
109
"""
110
+
106
111
def __init__ (self , img , widget : QWidget , radius : int = 0 ):
107
112
"""
108
113
:param widget: a object which has width() and height() method.
@@ -147,16 +152,16 @@ def draw(self, painter: QPainter):
147
152
# Draw body.
148
153
x , y = self ._padding , self ._length // 2
149
154
width , height = self ._length // 2 , self ._length // 2
150
- painter .drawArc (x , y , width , height , 0 , 60 * 16 )
151
- painter .drawArc (x , y , width , height , 120 * 16 , 60 * 16 )
155
+ painter .drawArc (x , y , width , height , 0 , 60 * 16 )
156
+ painter .drawArc (x , y , width , height , 120 * 16 , 60 * 16 )
152
157
153
158
154
159
class PlusIconDrawer :
155
160
def __init__ (self , length , padding ):
156
- self .top = QPoint (length // 2 , padding )
157
- self .bottom = QPoint (length // 2 , length - padding )
158
- self .left = QPoint (padding , length // 2 )
159
- self .right = QPoint (length - padding , length // 2 )
161
+ self .top = QPoint (length // 2 , padding )
162
+ self .bottom = QPoint (length // 2 , length - padding )
163
+ self .left = QPoint (padding , length // 2 )
164
+ self .right = QPoint (length - padding , length // 2 )
160
165
161
166
def draw (self , painter ):
162
167
pen = painter .pen ()
@@ -208,7 +213,7 @@ def set_direction(self, direction):
208
213
right = QPointF (real_padding + diameter , half )
209
214
210
215
d60 = diameter / 2 * 0.87 # sin60
211
- d30 = diameter / 2 / 2 # sin30
216
+ d30 = diameter / 2 / 2 # sin30
212
217
213
218
if direction in ('left' , 'right' ):
214
219
left_x = half - d30
@@ -247,14 +252,81 @@ def draw(self, painter):
247
252
painter .drawPolygon (self .triangle )
248
253
249
254
255
+ class AIIconDrawer :
256
+ def __init__ (self , length , padding , colorful = False ):
257
+
258
+ sr = length / 12 # small circle radius
259
+ sd = sr * 2
260
+
261
+ half = length / 2
262
+ diameter = length - 2 * padding - sd
263
+ real_padding = (length - diameter ) / 2
264
+ d60 = diameter / 2 * 0.87 # sin60
265
+ d30 = diameter / 2 / 2 # sin30
266
+ left_x = half - d60
267
+ bottom_y = half + d30
268
+ right_x = half + d60
269
+
270
+ self ._center_rect = QRectF (real_padding , real_padding , diameter , diameter )
271
+ self ._top_circle = QRectF (half - sr , padding , sd , sd )
272
+ self ._left_circle = QRectF (left_x - sr , bottom_y - sr , sd , sd )
273
+ self ._right_circle = QRectF (right_x - sr , bottom_y - sr , sd , sd )
274
+
275
+ self .colorful = colorful
276
+ self ._colors = [QColor (e ) for e in SOLARIZED_COLORS .values ()]
277
+ self ._colors_count = len (self ._colors )
278
+
279
+ def draw (self , painter , palette ):
280
+ if self .colorful :
281
+ self ._draw_colorful (painter , palette )
282
+ else :
283
+ self ._draw_bw (painter , palette )
284
+
285
+ def _draw_bw (self , painter , palette ):
286
+ pen = painter .pen ()
287
+ pen .setWidthF (1.5 )
288
+ painter .setPen (pen )
289
+ with painter_save (painter ):
290
+ painter .drawEllipse (self ._center_rect )
291
+ painter .setBrush (palette .color (QPalette .Window ))
292
+ painter .drawEllipse (self ._top_circle )
293
+ painter .drawEllipse (self ._left_circle )
294
+ painter .drawEllipse (self ._right_circle )
295
+
296
+ def _draw_colorful (self , painter , palette ):
297
+ pen = painter .pen ()
298
+ pen .setWidthF (1.5 )
299
+ pen .setColor (self ._colors [random .randint (0 , self ._colors_count - 1 )])
300
+ painter .setPen (pen )
301
+ with painter_save (painter ):
302
+ start_alen = 120 * 16
303
+ pen .setColor (self ._colors [5 ])
304
+ painter .setPen (pen )
305
+ painter .drawArc (self ._center_rect , 0 , start_alen )
306
+ pen .setColor (self ._colors [1 ])
307
+ painter .setPen (pen )
308
+ painter .drawArc (self ._center_rect , start_alen , start_alen )
309
+ pen .setColor (self ._colors [4 ])
310
+ painter .setPen (pen )
311
+ painter .drawArc (self ._center_rect , start_alen * 2 , start_alen )
312
+
313
+ painter .setPen (Qt .NoPen )
314
+ painter .setBrush (self ._colors [5 ])
315
+ painter .drawEllipse (self ._top_circle )
316
+ painter .setBrush (self ._colors [1 ])
317
+ painter .drawEllipse (self ._left_circle )
318
+ painter .setBrush (self ._colors [4 ])
319
+ painter .drawEllipse (self ._right_circle )
320
+
321
+
250
322
class HomeIconDrawer :
251
323
def __init__ (self , length , padding ):
252
324
icon_length = length
253
325
diff = 1 # root/body width diff
254
326
h_padding = v_padding = padding
255
327
256
- body_left_x = h_padding + diff * 2
257
- body_right_x = icon_length - h_padding - diff * 2
328
+ body_left_x = h_padding + diff * 2
329
+ body_right_x = icon_length - h_padding - diff * 2
258
330
body_top_x = icon_length // 2
259
331
260
332
self ._roof = QPoint (icon_length // 2 , v_padding )
@@ -296,7 +368,7 @@ def paint(self, painter: QPainter):
296
368
297
369
class RankIconDrawer :
298
370
def __init__ (self , length , padding ):
299
- body = length - 2 * padding
371
+ body = length - 2 * padding
300
372
body_2 = body // 2
301
373
body_8 = body // 8
302
374
body_3 = body // 3
@@ -324,8 +396,7 @@ def paint(self, painter: QPainter):
324
396
325
397
class StarIconDrawer :
326
398
def __init__ (self , length , padding ):
327
-
328
- radius_outer = (length - 2 * padding )// 2
399
+ radius_outer = (length - 2 * padding ) // 2
329
400
length_half = length // 2
330
401
radius_inner = radius_outer // 2
331
402
center = QPointF (length_half , length_half )
@@ -339,8 +410,8 @@ def __init__(self, length, padding):
339
410
)
340
411
self ._star_polygon .append (outer_point )
341
412
inner_point = center + QPointF (
342
- radius_inner * math .cos (angle + math .pi / 5 ),
343
- - radius_inner * math .sin (angle + math .pi / 5 )
413
+ radius_inner * math .cos (angle + math .pi / 5 ),
414
+ - radius_inner * math .sin (angle + math .pi / 5 )
344
415
)
345
416
self ._star_polygon .append (inner_point )
346
417
angle += 2 * math .pi / 5
@@ -407,9 +478,9 @@ def draw(self, painter: QPainter, palette: QPalette):
407
478
disabled_lines = ()
408
479
elif self ._volume >= 33 :
409
480
lines = (self ._line2 , self ._line3 )
410
- disabled_lines = (self ._line1 , )
481
+ disabled_lines = (self ._line1 ,)
411
482
elif self ._volume > 0 :
412
- lines = (self ._line3 , )
483
+ lines = (self ._line3 ,)
413
484
disabled_lines = (self ._line1 , self ._line2 )
414
485
else :
415
486
lines = ()
@@ -493,6 +564,6 @@ def paint(self, painter: QPainter):
493
564
font .setPixelSize (width - 4 )
494
565
else :
495
566
# -1 works well on KDE when length is in range(30, 200)
496
- font .setPixelSize (width - (self ._length // 20 ))
567
+ font .setPixelSize (width - (self ._length // 20 ))
497
568
painter .setFont (font )
498
569
painter .drawText (0 , 0 , width , width , Qt .AlignHCenter | Qt .AlignVCenter , self ._emoji )
0 commit comments