Loading...
Searching...
No Matches
Pixmaps.hpp
1#pragma once
2#include <QPixmap>
3
4#include <score_lib_process_export.h>
5
6namespace Process
7{
8// TODO consider to change them into images,
9// since it is a tiny bit more efficient on the raster paint backend
10// TODO reconsider that with RHI in Qt6...
11struct SCORE_LIB_PROCESS_EXPORT Pixmaps
12{
13 static const Pixmaps& instance() noexcept;
14
15 const QPixmap show_ui_off;
16 const QPixmap show_ui_on;
17
18 const QPixmap show_script_off;
19 const QPixmap show_script_on;
20
21 const QPixmap preset_off;
22 const QPixmap preset_on;
23
24 const QPixmap record_off;
25 const QPixmap record_on;
26
27 const QPixmap snapshot_off;
28 const QPixmap snapshot_on;
29
30 const QPixmap close_off;
31 const QPixmap close_on;
32
33 const QPixmap nodal_off;
34 const QPixmap nodal_on;
35
36 const QPixmap timeline_off;
37 const QPixmap timeline_on;
38
39 const QPixmap unmuted;
40 const QPixmap muted;
41
42 const QPixmap play;
43 const QPixmap stop;
44
45 const QPixmap unroll;
46 const QPixmap unroll_selected;
47 const QPixmap roll;
48 const QPixmap roll_selected;
49
50 const QPixmap unroll_small;
51 const QPixmap roll_small;
52
53 const QPixmap add;
54 const QPixmap interval_play;
55 const QPixmap interval_stop;
56
57 const QPixmap metricHandle;
58
59 const QPixmap portHandleClosed;
60 const QPixmap portHandleOpen;
61
62private:
63 Pixmaps() noexcept;
64 ~Pixmaps();
65};
66}
Base classes and tools to implement processes and layers.
Definition JSONVisitor.hpp:1115
Definition Pixmaps.hpp:12