1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-25 22:21:14 +01:00

Lighten colors slightly for sync-selection.

This commit is contained in:
businessmanprogrammersteve
2010-02-17 17:54:32 +00:00
parent c334b080e8
commit 5a6b7a4ec9
11 changed files with 61 additions and 25 deletions

View File

@@ -36,8 +36,8 @@ class AColor {
static void TrackPanelBackground(wxDC * dc, bool selected);
static void Light(wxDC * dc, bool selected);
static void Medium(wxDC * dc, bool selected);
static void MediumTrackInfo(wxDC * dc, bool selected);
static void Medium(wxDC * dc, int index);
static void MediumTrackInfo(wxDC * dc, bool selected, bool syncSel);
static void Dark(wxDC * dc, bool selected);
static void CursorColor(wxDC * dc);
@@ -57,10 +57,10 @@ class AColor {
// Member variables
static wxBrush lightBrush[2];
static wxBrush mediumBrush[2];
static wxBrush mediumBrush[3];
static wxBrush darkBrush[2];
static wxPen lightPen[2];
static wxPen mediumPen[2];
static wxPen mediumPen[3];
static wxPen darkPen[2];
static wxPen cursorPen;
@@ -82,8 +82,10 @@ class AColor {
static wxBrush labelTextEditBrush;
static wxBrush labelUnselectedBrush;
static wxBrush labelSelectedBrush;
static wxBrush labelSyncSelBrush;
static wxPen labelUnselectedPen;
static wxPen labelSelectedPen;
static wxPen labelSyncSelPen;
static wxPen labelSurroundPen;
static wxPen trackFocusPens[3];