1 /* -----------------------------------------------------------------------------
2  *
3  * Giada - Your Hardcore Loopmachine
4  *
5  * graphics
6  *
7  * -----------------------------------------------------------------------------
8  *
9  * Copyright (C) 2010-2020 Giovanni A. Zuliani | Monocasual
10  *
11  * This file is part of Giada - Your Hardcore Loopmachine.
12  *
13  * Giada - Your Hardcore Loopmachine is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation, either
16  * version 3 of the License, or (at your option) any later version.
17  *
18  * Giada - Your Hardcore Loopmachine is distributed in the hope that it
19  * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21  * See the GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with Giada - Your Hardcore Loopmachine. If not, see
25  * <http://www.gnu.org/licenses/>.
26  *
27  * -------------------------------------------------------------------------- */
28 
29 
30 #ifndef G_GRAPHICS_H
31 #define G_GRAPHICS_H
32 
33 
34 extern const char* giada_logo_xpm[];
35 
36 extern const char* loopRepeat_xpm[];
37 extern const char* loopBasic_xpm[];
38 extern const char* loopOnce_xpm[];
39 extern const char* loopOnceBar_xpm[];
40 extern const char* oneshotBasic_xpm[];
41 extern const char* oneshotRetrig_xpm[];
42 extern const char* oneshotPress_xpm[];
43 extern const char* oneshotEndless_xpm[];
44 
45 extern const char* updirOff_xpm[];
46 extern const char* updirOn_xpm[];
47 
48 extern const char* pause_xpm[];
49 extern const char* play_xpm[];
50 
51 extern const char* zoomInOff_xpm[];
52 extern const char* zoomInOn_xpm[];
53 extern const char* zoomOutOff_xpm[];
54 extern const char* zoomOutOn_xpm[];
55 
56 extern const char* scrollLeftOff_xpm[];
57 extern const char* scrollLeftOn_xpm[];
58 extern const char* scrollRightOff_xpm[];
59 extern const char* scrollRightOn_xpm[];
60 
61 extern const char* rewindOff_xpm[];
62 extern const char* rewindOn_xpm[];
63 
64 extern const char* recOff_xpm[];
65 extern const char* recOn_xpm[];
66 
67 extern const char* metronomeOff_xpm[];
68 extern const char* metronomeOn_xpm[];
69 
70 extern const char* recTriggerModeOff_xpm[];
71 extern const char* recTriggerModeOn_xpm[];
72 
73 extern const char* inputRecOn_xpm[];
74 extern const char* inputRecOff_xpm[];
75 
76 extern const char* divideOn_xpm[];
77 extern const char* divideOff_xpm[];
78 extern const char* multiplyOn_xpm[];
79 extern const char* multiplyOff_xpm[];
80 
81 extern const char* muteOff_xpm[];
82 extern const char* muteOn_xpm[];
83 
84 extern const char* soloOff_xpm[];
85 extern const char* soloOn_xpm[];
86 
87 extern const char* armOff_xpm[];
88 extern const char* armOn_xpm[];
89 extern const char* armDisabled_xpm[];
90 
91 extern const char* readActionOn_xpm[];
92 extern const char* readActionOff_xpm[];
93 extern const char* readActionDisabled_xpm[];
94 
95 extern const char* channelStop_xpm[];
96 extern const char* channelPlay_xpm[];
97 
98 #ifdef WITH_VST
99 extern const char* fxOff_xpm[];
100 extern const char* fxOn_xpm[];
101 
102 extern const char* fxShiftUpOn_xpm[];
103 extern const char* fxShiftUpOff_xpm[];
104 extern const char* fxShiftDownOn_xpm[];
105 extern const char* fxShiftDownOff_xpm[];
106 
107 extern const char* fxRemoveOff_xpm[];
108 extern const char* fxRemoveOn_xpm[];
109 
110 extern const char* vstLogo_xpm[];
111 #endif
112 
113 extern const char* giada_icon[];
114 
115 
116 #endif
117