forked from KolibriOS/kolibrios
a0126a688c
git-svn-id: svn://kolibrios.org@4026 a494cfbc-eb01-0410-851d-a64ba20cac60
99 lines
2.2 KiB
C
99 lines
2.2 KiB
C
//Leency - 2012-2013
|
|
|
|
char *ITEMS_LIST[]={
|
|
"WIN F5",54,
|
|
"DOS Ctrl+D",04,
|
|
"KOI Ctrl+K",11,
|
|
"UTF Ctrl+U",21,
|
|
#ifdef LANG_RUS
|
|
"ˆá室¨ª áâà ¨æë F3",52,
|
|
"Žç¨áâ¨âì ªíè ª à⨮ª" ,02,
|
|
#else
|
|
"View source F3",52,
|
|
"Free image cache" ,02,
|
|
#endif
|
|
0};
|
|
|
|
|
|
void menu_rmb()
|
|
{
|
|
mouse mm;
|
|
proc_info MenuForm;
|
|
llist menu;
|
|
int overid, key, N;
|
|
dword col_work = 0xE4DFE1;
|
|
dword col_border = 0x9098B0;
|
|
|
|
menu.w = 165;
|
|
menu.line_h = 19;
|
|
while (ITEMS_LIST[menu.count*2]) menu.count++;
|
|
SetEventMask(100111b);
|
|
|
|
loop() switch(WaitEvent())
|
|
{
|
|
case evMouse:
|
|
GetProcessInfo(#MenuForm, SelfInfo);
|
|
N=GetProcessSlot(MenuForm.ID);
|
|
if (N<>GetActiveProcess()) ExitProcess();
|
|
|
|
mm.get();
|
|
overid=mm.y/menu.line_h;
|
|
if (overid<0) || (overid+1>menu.count) || (mm.x<0) || (mm.x>menu.w) break;
|
|
if (mm.lkm) || (mm.pkm)
|
|
{
|
|
action_buf = ITEMS_LIST[menu.current*2+1];
|
|
ExitProcess();
|
|
}
|
|
if (menu.current<>overid)
|
|
{
|
|
menu.current=overid;
|
|
goto _ITEMS_DRAW;
|
|
}
|
|
break;
|
|
|
|
case evKey:
|
|
key = GetKey();
|
|
if (key==27) ExitProcess();
|
|
if (key==178) && (menu.current)
|
|
{
|
|
menu.current--;
|
|
goto _ITEMS_DRAW;
|
|
}
|
|
if (key==177) && (menu.current+1<menu.count)
|
|
{
|
|
menu.current++;
|
|
goto _ITEMS_DRAW;
|
|
}
|
|
if (key==13)
|
|
{
|
|
action_buf = ITEMS_LIST[menu.current*2+1];
|
|
ExitProcess();
|
|
}
|
|
break;
|
|
|
|
case evReDraw:
|
|
DefineAndDrawWindow(Form.left+m.x,Form.top+m.y+GetSkinHeight()+3,menu.w+2,menu.count*menu.line_h+4,0x01, 0, 0, 0x01fffFFF);
|
|
DrawPopup(0,0,menu.w,menu.count*menu.line_h+3,0, col_work,col_border);
|
|
//PutPixel();
|
|
|
|
_ITEMS_DRAW:
|
|
for (N=0; N<menu.count; N++;)
|
|
{
|
|
if (N==menu.current)
|
|
DrawBar(2, N*menu.line_h+2, menu.w-3, menu.line_h, 0x94AECE);
|
|
else
|
|
{
|
|
DrawBar(2, N*menu.line_h+2, menu.w-3, menu.line_h, col_work);
|
|
WriteText(19,N*menu.line_h+9,0x80,0xf2f2f2,ITEMS_LIST[N*2]);
|
|
}
|
|
WriteText(18,N*menu.line_h+8,0x80,0x000000,ITEMS_LIST[N*2]);
|
|
}
|
|
DrawBar(7, cur_encoding*menu.line_h+9, 4, 4, 0x444444); //show current encoding
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|