Minor costmetic cleanup.

This commit is contained in:
Jonathan Moore Liles 2008-04-27 05:33:26 -05:00
parent d7b8ecc591
commit 28d1b4754b
5 changed files with 7 additions and 8 deletions

View File

@ -30,7 +30,7 @@ public:
Ruler_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H ) Ruler_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H )
{ {
box( FL_UP_BOX ); // box( FL_UP_BOX );
} }
void void

View File

@ -38,8 +38,7 @@ Sequence::Sequence ( int X, int Y, int W, int H, Track *track ) : Fl_Widget( X,
/* if ( track ) */ /* if ( track ) */
/* track->add( this ); */ /* track->add( this ); */
// box( FL_DOWN_BOX ); box( FL_DOWN_BOX );
box( FL_CRYSTAL_DOWN_BOX );
color( fl_darker( FL_GRAY ) ); color( fl_darker( FL_GRAY ) );
align( FL_ALIGN_LEFT ); align( FL_ALIGN_LEFT );

View File

@ -31,7 +31,7 @@ public:
Tempo_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H ) Tempo_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H )
{ {
box( FL_UP_BOX ); // box( FL_DOWN_BOX );
} }
float float

View File

@ -32,7 +32,7 @@ public:
Time_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H ) Time_Sequence ( int X, int Y, int W, int H ) : Sequence ( X, Y, W, H )
{ {
box( FL_UP_BOX ); // box( FL_UP_BOX );
} }
time_sig time_sig

View File

@ -117,7 +117,7 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : Fl_Overlay_Wi
{ {
Tempo_Sequence *o = new Tempo_Sequence( 0, 0, 800, 24 ); Tempo_Sequence *o = new Tempo_Sequence( 0, 0, 800, 24 );
o->color( FL_RED ); o->color( fl_gray_ramp( 18 ) );
o->label( "Tempo" ); o->label( "Tempo" );
o->align( FL_ALIGN_LEFT ); o->align( FL_ALIGN_LEFT );
@ -128,7 +128,7 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : Fl_Overlay_Wi
{ {
Time_Sequence *o = new Time_Sequence( 0, 24, 800, 24 ); Time_Sequence *o = new Time_Sequence( 0, 24, 800, 24 );
o->color( fl_color_average( FL_RED, FL_WHITE, 0.50f ) ); o->color( fl_gray_ramp( 16 ) );
o->label( "Time" ); o->label( "Time" );
o->align( FL_ALIGN_LEFT ); o->align( FL_ALIGN_LEFT );
@ -139,7 +139,7 @@ Timeline::Timeline ( int X, int Y, int W, int H, const char* L ) : Fl_Overlay_Wi
{ {
Ruler_Sequence *o = new Ruler_Sequence( 0, 24, 800, 24 ); Ruler_Sequence *o = new Ruler_Sequence( 0, 24, 800, 24 );
o->color( FL_GREEN ); o->color( fl_gray_ramp( 'F' ) );
o->label( "Ruler" ); o->label( "Ruler" );
o->align( FL_ALIGN_LEFT ); o->align( FL_ALIGN_LEFT );