-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplot.py
More file actions
411 lines (388 loc) · 16.5 KB
/
plot.py
File metadata and controls
411 lines (388 loc) · 16.5 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
# (see plotpy/LICENSE for details)
# pylint: disable=C0103
"""
Widget/plot builder
-------------------
This module provides a set of factory functions to simplify the creation of
plot widgets and grid items.
"""
# Note: when adding method to builder classes, please do not forget to update the
# documentation (see builder.rst file). Because of class inheritance, the methods
# are not automatically documented (otherwise, they would be sorted alphabetically,
# due to a limitation of sphinx auto-doc).
from __future__ import annotations
from typing import TYPE_CHECKING
from plotpy.config import CONF, _
from plotpy.items import GridItem
from plotpy.plot import PlotDialog, PlotOptions, PlotWidget, PlotWindow
from plotpy.styles import COLORS, GridParam, LineStyleParam
if TYPE_CHECKING:
from qtpy.QtWidgets import QWidget
from plotpy.constants import PlotType
from plotpy.panels import PanelWidget
class WidgetBuilder:
"""Class regrouping a set of factory functions to simplify the creation
of plot widgets and grid items."""
# ---- Plot widgets ---------------------------------------------------------------
def widget(
self,
parent: QWidget | None = None,
toolbar: bool = False,
panels: tuple[PanelWidget] | None = None,
auto_tools: bool = True,
title: str | None = None,
xlabel: str | tuple[str, str] | None = None,
ylabel: str | tuple[str, str] | None = None,
zlabel: str | None = None,
xunit: str | tuple[str, str] | None = None,
yunit: str | tuple[str, str] | None = None,
zunit: str | None = None,
yreverse: bool | None = None,
aspect_ratio: float = 1.0,
lock_aspect_ratio: bool | None = None,
curve_antialiasing: bool | None = None,
gridparam: GridParam | None = None,
section: str = "plot",
type: str | PlotType = "auto",
axes_synchronised: bool = False,
force_colorbar_enabled: bool = False,
no_image_analysis_widgets: bool = False,
show_contrast: bool = False,
show_itemlist: bool = False,
show_xsection: bool = False,
show_ysection: bool = False,
xsection_pos: str = "top",
ysection_pos: str = "right",
) -> PlotWidget:
"""Make a plot widget (:py:class:`.PlotWidget` object)
Args:
parent: Parent widget
toolbar: Show/hide toolbar
panels: Additionnal panels
auto_tools: If True, the plot tools are automatically registered.
If False, the user must register the tools manually.
title: The plot title
xlabel: (bottom axis title, top axis title) or bottom axis title only
ylabel: (left axis title, right axis title) or left axis title only
zlabel: The Z-axis label
xunit: (bottom axis unit, top axis unit) or bottom axis unit only
yunit: (left axis unit, right axis unit) or left axis unit only
zunit: The Z-axis unit
yreverse: If True, the Y-axis is reversed
aspect_ratio: The plot aspect ratio
lock_aspect_ratio: If True, the aspect ratio is locked
curve_antialiasing: If True, the curve antialiasing is enabled
gridparam: The grid parameters
section: The plot configuration section name ("plot", by default)
type: The plot type ("auto", "manual", "curve" or "image")
axes_synchronised: If True, the axes are synchronised
force_colorbar_enabled: If True, the colorbar is always enabled
no_image_analysis_widgets: If True, the image analysis widgets are not added
show_contrast: If True, the contrast adjustment panel is visible
show_itemlist: If True, the itemlist panel is visible
show_xsection: If True, the X-axis cross section panel is visible
show_ysection: If True, the Y-axis cross section panel is visible
xsection_pos: The X-axis cross section panel position ("top" or "bottom")
ysection_pos: The Y-axis cross section panel position ("left" or "right")
"""
options = PlotOptions(
title=title,
xlabel=xlabel,
ylabel=ylabel,
zlabel=zlabel,
xunit=xunit,
yunit=yunit,
zunit=zunit,
yreverse=yreverse,
aspect_ratio=aspect_ratio,
lock_aspect_ratio=lock_aspect_ratio,
curve_antialiasing=curve_antialiasing,
gridparam=gridparam,
section=section,
type=type,
axes_synchronised=axes_synchronised,
force_colorbar_enabled=force_colorbar_enabled,
no_image_analysis_widgets=no_image_analysis_widgets,
show_contrast=show_contrast,
show_itemlist=show_itemlist,
show_xsection=show_xsection,
show_ysection=show_ysection,
xsection_pos=xsection_pos,
ysection_pos=ysection_pos,
)
return PlotWidget(
parent,
toolbar=toolbar,
options=options,
panels=panels,
auto_tools=auto_tools,
)
def dialog(
self,
parent: QWidget | None = None,
toolbar: bool = False,
panels: tuple[PanelWidget] | None = None,
auto_tools: bool = True,
wintitle: str = "PlotPy",
icon: str = "plotpy.svg",
edit: bool = False,
size: tuple[int, int] | None = None,
title: str | None = None,
xlabel: str | tuple[str, str] | None = None,
ylabel: str | tuple[str, str] | None = None,
zlabel: str | None = None,
xunit: str | tuple[str, str] | None = None,
yunit: str | tuple[str, str] | None = None,
zunit: str | None = None,
yreverse: bool | None = None,
aspect_ratio: float = 1.0,
lock_aspect_ratio: bool | None = None,
curve_antialiasing: bool | None = None,
gridparam: GridParam | None = None,
section: str = "plot",
type: str | PlotType = "auto",
axes_synchronised: bool = False,
force_colorbar_enabled: bool = False,
no_image_analysis_widgets: bool = False,
show_contrast: bool = False,
show_itemlist: bool = False,
show_xsection: bool = False,
show_ysection: bool = False,
xsection_pos: str = "top",
ysection_pos: str = "right",
) -> PlotDialog:
"""Make a plot dialog (:py:class:`.PlotDialog` object)
Args:
parent: Parent widget
toolbar: Show/hide toolbar
panels: Additionnal panels
auto_tools: If True, the plot tools are automatically registered.
If False, the user must register the tools manually.
wintitle: The window title
icon: The window icon
edit: If True, the plot is editable
size: The window size
title: The plot title
xlabel: (bottom axis title, top axis title) or bottom axis title only
ylabel: (left axis title, right axis title) or left axis title only
zlabel: The Z-axis label
xunit: (bottom axis unit, top axis unit) or bottom axis unit only
yunit: (left axis unit, right axis unit) or left axis unit only
zunit: The Z-axis unit
yreverse: If True, the Y-axis is reversed
aspect_ratio: The plot aspect ratio
lock_aspect_ratio: If True, the aspect ratio is locked
curve_antialiasing: If True, the curve antialiasing is enabled
gridparam: The grid parameters
section: The plot configuration section name ("plot", by default)
type: The plot type ("auto", "manual", "curve" or "image")
axes_synchronised: If True, the axes are synchronised
force_colorbar_enabled: If True, the colorbar is always enabled
no_image_analysis_widgets: If True, the image analysis widgets are not added
show_contrast: If True, the contrast adjustment panel is visible
show_itemlist: If True, the itemlist panel is visible
show_xsection: If True, the X-axis cross section panel is visible
show_ysection: If True, the Y-axis cross section panel is visible
xsection_pos: The X-axis cross section panel position ("top" or "bottom")
ysection_pos: The Y-axis cross section panel position ("left" or "right")
"""
options = PlotOptions(
title=title,
xlabel=xlabel,
ylabel=ylabel,
zlabel=zlabel,
xunit=xunit,
yunit=yunit,
zunit=zunit,
yreverse=yreverse,
aspect_ratio=aspect_ratio,
lock_aspect_ratio=lock_aspect_ratio,
curve_antialiasing=curve_antialiasing,
gridparam=gridparam,
section=section,
type=type,
axes_synchronised=axes_synchronised,
force_colorbar_enabled=force_colorbar_enabled,
no_image_analysis_widgets=no_image_analysis_widgets,
show_contrast=show_contrast,
show_itemlist=show_itemlist,
show_xsection=show_xsection,
show_ysection=show_ysection,
xsection_pos=xsection_pos,
ysection_pos=ysection_pos,
)
return PlotDialog(
parent,
toolbar=toolbar,
options=options,
panels=panels,
auto_tools=auto_tools,
title=wintitle,
icon=icon,
edit=edit,
size=size,
)
def window(
self,
parent: QWidget | None = None,
toolbar: bool = False,
panels: tuple[PanelWidget] | None = None,
auto_tools: bool = True,
wintitle: str = "PlotPy",
icon: str = "plotpy.svg",
size: tuple[int, int] | None = None,
title: str | None = None,
xlabel: str | tuple[str, str] | None = None,
ylabel: str | tuple[str, str] | None = None,
zlabel: str | None = None,
xunit: str | tuple[str, str] | None = None,
yunit: str | tuple[str, str] | None = None,
zunit: str | None = None,
yreverse: bool | None = None,
aspect_ratio: float = 1.0,
lock_aspect_ratio: bool | None = None,
curve_antialiasing: bool | None = None,
gridparam: GridParam | None = None,
section: str = "plot",
type: str | PlotType = "auto",
axes_synchronised: bool = False,
force_colorbar_enabled: bool = False,
no_image_analysis_widgets: bool = False,
show_contrast: bool = False,
show_itemlist: bool = False,
show_xsection: bool = False,
show_ysection: bool = False,
xsection_pos: str = "top",
ysection_pos: str = "right",
) -> PlotWindow:
"""Make a plot window (:py:class:`.PlotWindow` object)
Args:
parent: Parent widget
toolbar: Show/hide toolbar
panels: Additionnal panels
auto_tools: If True, the plot tools are automatically registered.
If False, the user must register the tools manually.
wintitle: The window title
icon: The window icon
size: The window size
title: The plot title
xlabel: (bottom axis title, top axis title) or bottom axis title only
ylabel: (left axis title, right axis title) or left axis title only
zlabel: The Z-axis label
xunit: (bottom axis unit, top axis unit) or bottom axis unit only
yunit: (left axis unit, right axis unit) or left axis unit only
zunit: The Z-axis unit
yreverse: If True, the Y-axis is reversed
aspect_ratio: The plot aspect ratio
lock_aspect_ratio: If True, the aspect ratio is locked
curve_antialiasing: If True, the curve antialiasing is enabled
gridparam: The grid parameters
section: The plot configuration section name ("plot", by default)
type: The plot type ("auto", "manual", "curve" or "image")
axes_synchronised: If True, the axes are synchronised
force_colorbar_enabled: If True, the colorbar is always enabled
no_image_analysis_widgets: If True, the image analysis widgets are not added
show_contrast: If True, the contrast adjustment panel is visible
show_itemlist: If True, the itemlist panel is visible
show_xsection: If True, the X-axis cross section panel is visible
show_ysection: If True, the Y-axis cross section panel is visible
xsection_pos: The X-axis cross section panel position ("top" or "bottom")
ysection_pos: The Y-axis cross section panel position ("left" or "right")
"""
options = PlotOptions(
title=title,
xlabel=xlabel,
ylabel=ylabel,
zlabel=zlabel,
xunit=xunit,
yunit=yunit,
zunit=zunit,
yreverse=yreverse,
aspect_ratio=aspect_ratio,
lock_aspect_ratio=lock_aspect_ratio,
curve_antialiasing=curve_antialiasing,
gridparam=gridparam,
section=section,
type=type,
axes_synchronised=axes_synchronised,
force_colorbar_enabled=force_colorbar_enabled,
no_image_analysis_widgets=no_image_analysis_widgets,
show_contrast=show_contrast,
show_itemlist=show_itemlist,
show_xsection=show_xsection,
show_ysection=show_ysection,
xsection_pos=xsection_pos,
ysection_pos=ysection_pos,
)
return PlotWindow(
parent,
toolbar=toolbar,
options=options,
panels=panels,
auto_tools=auto_tools,
title=wintitle,
icon=icon,
size=size,
)
def gridparam(
self,
background: str | None = None,
major_enabled: tuple[bool, bool] | None = None,
minor_enabled: tuple[bool, bool] | None = None,
major_style: tuple[str, str, int] | None = None,
minor_style: tuple[str, str, int] | None = None,
) -> GridParam:
"""Make :py:class:`.GridParam` instance
Args:
background: canvas background color
major_enabled: major grid enabled (x, y)
minor_enabled: minor grid enabled (x, y)
major_style: major grid style (linestyle, color, width)
minor_style: minor grid style (linestyle, color, width)
Returns:
:py:class:`.GridParam`: grid parameters
"""
gridparam = GridParam(title=_("Grid"), icon="lin_lin.png")
gridparam.read_config(CONF, "plot", "grid")
if background is not None:
gridparam.background = background
if major_enabled is not None:
gridparam.maj_xenabled, gridparam.maj_yenabled = major_enabled
if minor_enabled is not None:
gridparam.min_xenabled, gridparam.min_yenabled = minor_enabled
if major_style is not None:
style = LineStyleParam()
linestyle, color, style.width = major_style
style.set_style_from_matlab(linestyle)
style.color = COLORS.get(color, color) # MATLAB-style
if minor_style is not None:
style = LineStyleParam()
linestyle, color, style.width = minor_style
style.set_style_from_matlab(linestyle)
style.color = COLORS.get(color, color) # MATLAB-style
return gridparam
def grid(
self,
background: str | None = None,
major_enabled: tuple[bool, bool] | None = None,
minor_enabled: tuple[bool, bool] | None = None,
major_style: tuple[str, str, int] | None = None,
minor_style: tuple[str, str, int] | None = None,
) -> GridItem:
"""Make a grid `plot item` (:py:class:`.GridItem` object)
Args:
background: canvas background color
major_enabled: major grid enabled (x, y)
minor_enabled: minor grid enabled (x, y)
major_style: major grid style (linestyle, color, width)
minor_style: minor grid style (linestyle, color, width)
Returns:
:py:class:`.GridItem`: grid item
"""
gridparam = self.gridparam(
background, major_enabled, minor_enabled, major_style, minor_style
)
return GridItem(gridparam)