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

Implements darkchains_mod2a style linking indication. This may not be

final but it's a big improvement. Reversed a couple changes from
original indication scheme that are no longer necessary. Unfortunately
it's really hard to remove colors from AllThemeResources.h.
This commit is contained in:
BusinessmanProgrammerSteve
2010-03-09 04:59:26 +00:00
parent 601d70efbc
commit b9fce94477
12 changed files with 4073 additions and 4017 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, int index);
static void MediumTrackInfo(wxDC * dc, bool selected, bool syncSel);
static void Medium(wxDC * dc, bool selected);
static void MediumTrackInfo(wxDC * dc, bool selected);
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[3];
static wxBrush mediumBrush[2];
static wxBrush darkBrush[2];
static wxPen lightPen[2];
static wxPen mediumPen[3];
static wxPen mediumPen[2];
static wxPen darkPen[2];
static wxPen cursorPen;