Subversion Repositories Kolibri OS

Rev

Rev 9455 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9455 Rev 9516
Line 1... Line 1...
1
#ifndef TAB_PADDING
1
#ifndef TAB_P
2
#define TAB_PADDING 15
2
#define TAB_P 15  //Tab padding
3
#endif
3
#endif
Line 4... Line 4...
4
 
4
 
5
#define TAB_HEIGHT 28
5
#define TAB_HEIGHT 28
Line 31... Line 31...
31
		DrawBar(x+1,y+0+TAB_HEIGHT,w,1, sc.work_graph);
31
		DrawBar(x+1,y+0+TAB_HEIGHT,w,1, sc.work_graph);
32
		DrawBar(x+1,y+1+TAB_HEIGHT,w,1, sc.work_light);		
32
		DrawBar(x+1,y+1+TAB_HEIGHT,w,1, sc.work_light);		
33
	}
33
	}
Line 34... Line 34...
34
 
34
 
35
	for (i=0; i
35
	for (i=0; i
36
		xx += draw_button(xx + TAB_PADDING, i, names[i]) + TAB_PADDING;
36
		xx += draw_button(xx + TAB_P, i, names[i]) + TAB_P;
37
	}
37
	}
Line 38... Line 38...
38
}
38
}
39
 
39