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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user