~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to src/AColor.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
class AColor {
24
24
 public:
25
25
   static void Init();
 
26
   static void ReInit();
26
27
 
27
28
   static void DrawFocus(wxDC & dc, wxRect & r);
28
29
   static void Bevel(wxDC & dc, bool up, wxRect & r);
 
30
   static void BevelTrackInfo(wxDC & dc, bool up, wxRect & r);
 
31
 
 
32
   static void UseThemeColour( wxDC * dc, int iIndex );
 
33
   static void TrackPanelBackground(wxDC * dc, bool selected);
29
34
 
30
35
   static void Light(wxDC * dc, bool selected);
31
36
   static void Medium(wxDC * dc, bool selected);
 
37
   static void MediumTrackInfo(wxDC * dc, bool selected);
32
38
   static void Dark(wxDC * dc, bool selected);
33
39
 
34
40
   static void CursorColor(wxDC * dc);
53
59
   static wxPen lightPen[2];
54
60
   static wxPen mediumPen[2];
55
61
   static wxPen darkPen[2];
56
 
   
 
62
 
57
63
   static wxPen cursorPen;
58
64
   static wxPen indicatorPen[2];
59
65
   static wxBrush indicatorBrush[2];
63
69
   static wxBrush muteBrush[2];
64
70
   static wxBrush soloBrush;
65
71
 
 
72
   static wxPen clippingPen;
 
73
 
66
74
   static wxPen envelopePen;
67
75
   static wxPen WideEnvelopePen;
68
76
   static wxBrush envelopeBrush;
80
88
 
81
89
   static wxBrush tooltipBrush;
82
90
 
83
 
 
84
91
 private:
 
92
   static wxPen sparePen;
 
93
   static wxBrush spareBrush;
85
94
   static bool inited;
86
95
 
87
96
};