@@ -28,8 +28,7 @@ void FullTimeline::paint (Graphics& g)
28
28
/* Draw timeline background */
29
29
int tickHeight = 4 ;
30
30
int borderThickness = 1 ;
31
-
32
- g.setColour (Colours::black);
31
+ g.setColour (findColour (ThemeColours::componentParentBackground));
33
32
34
33
int numTicks = 5 ;
35
34
@@ -44,7 +43,7 @@ void FullTimeline::paint (Graphics& g)
44
43
}
45
44
46
45
g.fillRect (0 , 0 , this ->getWidth (), this ->getHeight () - tickHeight);
47
- g.setColour (Colours::white );
46
+ g.setColour (findColour (ThemeColours::widgetBackground) );
48
47
g.fillRect (borderThickness, borderThickness, this ->getWidth () - 2 * borderThickness, this ->getHeight () - 2 * borderThickness - tickHeight);
49
48
50
49
/* Draw a coloured vertical bar for each event */
@@ -72,30 +71,40 @@ void FullTimeline::paint (Graphics& g)
72
71
if (eventMap.find (timelinePos) != eventMap.end ())
73
72
continue ;
74
73
eventMap[timelinePos] = true ;
75
- g.setColour (eventChannelColours[info.channels [i]]);
74
+ Colour c = eventChannelColours[info.channels [i] + 1 ];
75
+ g.setColour (c);
76
+
76
77
g.setOpacity (1 .0f );
77
78
g.fillRoundedRectangle (timelinePos, 0 , 1 , this ->getHeight () - tickHeight, 0.2 );
78
79
}
79
80
}
80
81
}
81
82
82
83
/* Draw the MAX_ZOOM_DURATION_IN_SECONDS interval */
83
- g.setColour (Colour ( 0 , 0 , 0 ));
84
+ g.setColour (findColour (ThemeColours::componentParentBackground ));
84
85
g.setOpacity (0 .8f );
85
86
86
87
if (intervalStartPosition < 0 )
87
88
return ;
89
+
88
90
setIntervalPosition (intervalStartPosition);
89
91
92
+ // Draw the scrubber interval bounds
90
93
g.fillRoundedRectangle (intervalStartPosition, 0 , 2 , this ->getHeight (), 2 );
91
94
g.fillRoundedRectangle (intervalStartPosition + intervalWidth, 0 , 2 , this ->getHeight (), 2 );
92
95
96
+ // Draw the scrubber interval as a highlight
97
+ g.setColour (findColour (ThemeColours::menuHighlightBackground));
98
+ g.setOpacity (0.3 );
99
+ g.fillRect (intervalStartPosition + 1 , 0 , intervalWidth - 2 , this ->getHeight ()-2 );
100
+
93
101
/* Draw the current playback position */
102
+ g.setColour (findColour (ThemeColours::defaultText));
94
103
float timelinePos = (float ) (fileReader->getCurrentSample () - startSample) / totalSamples * getWidth ();
95
-
96
104
g.setOpacity (1 .0f );
97
105
g.fillRoundedRectangle (timelinePos, 0 , 1 , this ->getHeight (), 0.2 );
98
106
107
+ // Update all time labels
99
108
fileReader->getScrubberInterface ()->updateTimeLabels ();
100
109
}
101
110
@@ -162,7 +171,7 @@ void ZoomTimeline::paint (Graphics& g)
162
171
int tickHeight = 4 ;
163
172
int borderThickness = 1 ;
164
173
165
- g.setColour (Colours::black );
174
+ g.setColour (findColour (ThemeColours::componentParentBackground) );
166
175
167
176
int numTicks = 7 ;
168
177
@@ -177,7 +186,7 @@ void ZoomTimeline::paint (Graphics& g)
177
186
}
178
187
179
188
g.fillRect (0 , tickHeight, this ->getWidth (), this ->getHeight () - tickHeight);
180
- g.setColour (Colours::white );
189
+ g.setColour (findColour (ThemeColours::widgetBackground) );
181
190
g.fillRect (borderThickness, tickHeight + borderThickness, this ->getWidth () - 2 * borderThickness, this ->getHeight () - 2 * borderThickness - tickHeight);
182
191
183
192
float sampleRate = fileReader->getCurrentSampleRate ();
@@ -201,27 +210,29 @@ void ZoomTimeline::paint (Graphics& g)
201
210
if (state && sampleNumber >= startSampleNumber && sampleNumber <= stopSampleNumber)
202
211
{
203
212
float timelinePos = (sampleNumber - startSampleNumber) / float (intervalSamples) * getWidth ();
204
- g.setColour (eventChannelColours[info.channels [i]]);
213
+ Colour c = eventChannelColours[info.channels [i] + 1 ];
214
+ g.setColour (c);
205
215
g.setOpacity (1 .0f );
206
216
g.fillRect (int (timelinePos), tickHeight, 1 , this ->getHeight () - tickHeight);
207
217
}
208
218
}
209
219
}
210
220
211
- /* Draw the scrubber interval */
212
- g.setColour (Colour (0 , 0 , 0 ));
213
- g.fillRoundedRectangle (sliderPosition, 0 , sliderWidth, this ->getHeight (), 2 );
214
- g.setColour (Colour (110 , 110 , 110 ));
215
- g.setOpacity (0 .8f );
216
- g.fillRoundedRectangle (sliderPosition + 1 , 1 , sliderWidth - 2 , this ->getHeight () - 2 , 2 );
217
-
218
221
/* Draw the current playback position */
222
+ g.setColour (findColour (ThemeColours::defaultText));
219
223
float timelinePos = (float ) (fileReader->getCurrentSample () - startSampleNumber) / (stopSampleNumber - startSampleNumber) * getWidth ();
220
- if (fileReader-> playbackIsActive () || (! fileReader-> playbackIsActive () && timelinePos < sliderPosition + sliderWidth) )
224
+ if (0 < timelinePos < sliderPosition + sliderWidth)
221
225
{
222
226
g.setOpacity (1 .0f );
223
227
g.fillRoundedRectangle (timelinePos, 0 , 1 , this ->getHeight (), 0.2 );
224
228
}
229
+
230
+ /* Draw the scrubber interval */
231
+ g.setColour (findColour (ThemeColours::componentParentBackground));
232
+ g.fillRoundedRectangle (sliderPosition, 0 , sliderWidth, this ->getHeight (), 2 );
233
+ g.setColour (findColour (ThemeColours::componentBackground));
234
+ g.setOpacity (0 .8f );
235
+ g.fillRoundedRectangle (sliderPosition + 1 , 1 , sliderWidth - 2 , this ->getHeight () - 2 , 2 );
225
236
}
226
237
227
238
void ZoomTimeline::mouseDown (const MouseEvent& event)
0 commit comments