2013-03-31 22:25:54 +02:00
|
|
|
|
//Leency 2008-2013
|
|
|
|
|
|
2013-08-04 01:35:59 +02:00
|
|
|
|
#ifdef LANG_RUS
|
|
|
|
|
char *captions[] = {
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", "Enter",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...", "CrlEnt",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ⥪<><E2A5AA>", "F3",
|
2013-08-31 20:33:48 +02:00
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> HEX", "F4",
|
2013-08-04 01:35:59 +02:00
|
|
|
|
//
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", "Crl+C",
|
|
|
|
|
"<EFBFBD><EFBFBD>१<EFBFBD><EFBFBD><EFBFBD>", "Crl+X",
|
|
|
|
|
"<EFBFBD><EFBFBD>⠢<EFBFBD><EFBFBD><EFBFBD>", "Crl+V",
|
|
|
|
|
"<EFBFBD><EFBFBD>२<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", "F2",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", "Del",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", "F5",
|
|
|
|
|
0, 0};
|
2013-09-24 20:50:05 +02:00
|
|
|
|
#elif LANG_EST
|
|
|
|
|
char *captions[] = {
|
|
|
|
|
"Ava", "Enter",
|
|
|
|
|
"Ava ...", "CrlEnt",
|
|
|
|
|
"Vaata tekstina", "F3",
|
|
|
|
|
"Vaata HEX", "F4",
|
|
|
|
|
//
|
|
|
|
|
"Kopeeri", "Crl+C",
|
|
|
|
|
"L<EFBFBD>ika", "Crl+X",
|
|
|
|
|
"Aseta", "Crl+V",
|
|
|
|
|
"Nimeta <20>mber", "F2",
|
|
|
|
|
"Kustuta", "Del",
|
|
|
|
|
"V<EFBFBD>rskenda", "F5",
|
|
|
|
|
0, 0};
|
2013-08-04 01:35:59 +02:00
|
|
|
|
|
|
|
|
|
#else
|
2013-03-31 22:25:54 +02:00
|
|
|
|
char *captions[] = {
|
|
|
|
|
"Open", "Enter",
|
2013-04-01 17:41:17 +02:00
|
|
|
|
"Open with...", "CrlEnt",
|
2013-03-31 22:25:54 +02:00
|
|
|
|
"View as text", "F3",
|
|
|
|
|
"View as HEX", "F4",
|
2013-06-22 00:49:43 +02:00
|
|
|
|
//
|
|
|
|
|
"Copy", "Crl+C",
|
|
|
|
|
"Cut", "Crl+X",
|
|
|
|
|
"Paste", "Crl+V",
|
2013-03-31 22:25:54 +02:00
|
|
|
|
"Rename", "F2",
|
|
|
|
|
"Delete", "Del",
|
2013-08-04 01:35:59 +02:00
|
|
|
|
"Refresh", "F5",
|
2013-06-22 00:49:43 +02:00
|
|
|
|
0, 0};
|
2013-08-04 01:35:59 +02:00
|
|
|
|
#endif
|
2013-06-22 00:49:43 +02:00
|
|
|
|
|
|
|
|
|
proc_info MenuForm;
|
2013-03-31 22:25:54 +02:00
|
|
|
|
|
|
|
|
|
void FileMenu()
|
|
|
|
|
{
|
2013-04-01 17:41:17 +02:00
|
|
|
|
mouse mm;
|
2013-06-22 00:49:43 +02:00
|
|
|
|
word id, key, slot, index;
|
2013-04-01 17:41:17 +02:00
|
|
|
|
int ccount=0, cur, newi, linew=10, lineh=18, texty;
|
2013-06-22 00:49:43 +02:00
|
|
|
|
for (index=0; captions[index]!=0; index+=2)
|
2013-03-31 22:25:54 +02:00
|
|
|
|
{
|
|
|
|
|
ccount++;
|
2013-06-22 00:49:43 +02:00
|
|
|
|
if (strlen(captions[index])>linew) linew = strlen(captions[index]);
|
2013-03-31 22:25:54 +02:00
|
|
|
|
}
|
2013-04-01 17:41:17 +02:00
|
|
|
|
linew = linew + 3 * 6 + 50;
|
2013-03-31 22:25:54 +02:00
|
|
|
|
texty = lineh/2-4;
|
|
|
|
|
SetEventMask(100111b);
|
|
|
|
|
|
|
|
|
|
goto _MENU_DRAW;
|
|
|
|
|
loop() switch(WaitEvent())
|
|
|
|
|
{
|
|
|
|
|
case evMouse:
|
|
|
|
|
slot = GetProcessSlot(MenuForm.ID);
|
|
|
|
|
if (slot != GetActiveProcess()) ExitProcess();
|
2013-04-01 17:41:17 +02:00
|
|
|
|
mm.get();
|
|
|
|
|
newi = mm.y - 1 / lineh;
|
2013-04-02 15:33:32 +02:00
|
|
|
|
if (mm.y<=0) || (mm.y>ccount*lineh+5) || (mm.x<0) || (mm.x>linew) newi=-1;
|
2013-04-01 17:41:17 +02:00
|
|
|
|
if (cur<>newi)
|
|
|
|
|
{
|
|
|
|
|
cur=newi;
|
|
|
|
|
goto _ITEMS_DRAW;
|
|
|
|
|
}
|
2013-03-31 22:25:54 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case evButton:
|
|
|
|
|
id=GetButtonID();
|
|
|
|
|
if (id==100) Open();
|
|
|
|
|
if (id==101) notify("Not compleated yet");
|
2013-06-22 00:49:43 +02:00
|
|
|
|
if (id==102) FnProcess(3); //F3
|
|
|
|
|
if (id==103) FnProcess(4); //F4
|
|
|
|
|
if (id==104) Copy(#file_path, NOCUT);
|
|
|
|
|
if (id==105) Copy(#file_path, CUT);
|
|
|
|
|
if (id==106) CreateThread(#Paste,#copy_stak);
|
|
|
|
|
if (id==107) FnProcess(2);
|
|
|
|
|
if (id==108) Del_Form();
|
|
|
|
|
if (id==109) FnProcess(5);
|
2013-03-31 22:25:54 +02:00
|
|
|
|
ExitProcess();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case evKey:
|
|
|
|
|
IF (GetKey()==27) ExitProcess();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case evReDraw: _MENU_DRAW:
|
2013-04-04 19:07:38 +02:00
|
|
|
|
DefineAndDrawWindow(m.x+Form.left+5,m.y+Form.top+GetSkinHeight(),linew+3,ccount*lineh+6,0x01, 0, 0, 0x01fffFFF);
|
2013-03-31 22:25:54 +02:00
|
|
|
|
GetProcessInfo(#MenuForm, SelfInfo);
|
2013-04-01 17:41:17 +02:00
|
|
|
|
DrawRectangle(0,0,linew+1,ccount*lineh+2,col_border);
|
|
|
|
|
DrawBar(1,1,linew,1,0xFFFfff);
|
2013-04-04 19:07:38 +02:00
|
|
|
|
PutShadow(linew+2,1,1,ccount*lineh+2,0,2);
|
|
|
|
|
PutShadow(linew+3,2,1,ccount*lineh+2,0,1);
|
|
|
|
|
PutShadow(1,ccount*lineh+3,linew+2,1,0,2);
|
|
|
|
|
PutShadow(2,ccount*lineh+4,linew+1,1,0,1);
|
2013-03-31 22:25:54 +02:00
|
|
|
|
|
2013-04-01 17:41:17 +02:00
|
|
|
|
_ITEMS_DRAW:
|
2013-06-22 00:49:43 +02:00
|
|
|
|
for (index=0; captions[index*2]!=0; index++)
|
2013-03-31 22:25:54 +02:00
|
|
|
|
{
|
2013-06-22 00:49:43 +02:00
|
|
|
|
DefineButton(1,index*lineh+1,linew,lineh-1,index+100+BT_HIDE+BT_NOFRAME,0xFFFFFF);
|
|
|
|
|
DrawBar(1,index*lineh+2,1,lineh,0xFFFfff);
|
|
|
|
|
if (index==cur)
|
|
|
|
|
{
|
|
|
|
|
DrawBar(2,index*lineh+2,linew-1,lineh,0xFFFfff);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DrawBar(2,index*lineh+2,linew-1,lineh,col_work);
|
|
|
|
|
WriteText(8,index*lineh+texty+3,0x80,0xf2f2f2,captions[index*2]);
|
|
|
|
|
}
|
|
|
|
|
WriteText(7,index*lineh+texty+2,0x80,0x000000,captions[index*2]);
|
|
|
|
|
WriteText(-strlen(captions[index*2+1])*6-6+linew,index*lineh+texty+2,0x80,0x888888,captions[index*2+1]);
|
2013-03-31 22:25:54 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|