Subversion Repositories Kolibri OS

Rev

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

Rev 5718 Rev 5768
Line 1... Line 1...
1
//Leency - 2012-2013
1
//Leency - 2012-2013
Line 2... Line 2...
2
 
2
 
3
char *ITEMS_LIST[]={
3
char *ITEMS_LIST[]={
4
#ifdef LANG_RUS
-
 
5
"Zoom 2x",
4
#ifdef LANG_RUS
6
"®á¬®âà¥âì ¨á室­¨ª",
5
"®á¬®âà¥âì ¨á室­¨ª",
7
"¥¤ ªâ¨à®¢ âì ¨á室­¨ª",
6
"¥¤ ªâ¨à®¢ âì ¨á室­¨ª",
8
"ˆáâ®à¨ï",
7
"ˆáâ®à¨ï",
9
"Žç¨áâ¨âì ªíè ª à⨭®ª",
8
"Žç¨áâ¨âì ªíè ª à⨭®ª",
10
"Œ¥­¥¤¦¥à § £à㧮ª",
9
"Œ¥­¥¤¦¥à § £à㧮ª",
11
#else
-
 
12
"Zoom 2x",
10
#else
13
"View source",
11
"View source",
14
"Edit source",
12
"Edit source",
15
"History",
13
"History",
16
"Free image cache",
14
"Free image cache",
Line 70... Line 68...
70
			DrawBar(menu.x, N*menu.line_h+menu.y, menu.w-3, menu.line_h, col_bg);
68
			DrawBar(menu.x, N*menu.line_h+menu.y, menu.w-3, menu.line_h, col_bg);
71
			WriteText(19,N*menu.line_h+9,0x80,0xf2f2f2,ITEMS_LIST[N]);
69
			WriteText(19,N*menu.line_h+9,0x80,0xf2f2f2,ITEMS_LIST[N]);
72
		}
70
		}
73
		WriteText(18,N*menu.line_h+8,0x80,0x000000,ITEMS_LIST[N]);
71
		WriteText(18,N*menu.line_h+8,0x80,0x000000,ITEMS_LIST[N]);
74
	}
72
	}
75
	if (WB1.DrawBuf.zoom == 2) DrawBar(6, 8, 6, 6, 0x777777);
-
 
76
}
73
}
Line 77... Line 74...
77
 
74
 
78
void ItemClick()
75
void ItemClick()
79
{
76
{
80
	action_buf = ZOOM2x + menu.current;
77
	action_buf = VIEW_SOURCE + menu.current;
81
	ExitProcess();
78
	ExitProcess();
82
}
79
}