2012-03-22 14:33:15 +01:00
|
|
|
|
//Leency - 2012
|
2008-12-19 03:44:13 +01:00
|
|
|
|
|
2010-02-15 02:23:03 +01:00
|
|
|
|
#include "imgs\logo.txt"
|
2008-12-20 04:38:10 +01:00
|
|
|
|
|
2012-07-16 13:58:24 +02:00
|
|
|
|
#define EDITOR_PATH "/sys/tinypad"
|
|
|
|
|
#define BROWSER_PATH "/sys/htmlv"
|
|
|
|
|
#define BROWSER_LINK "http://kolibri-os.narod.ru"
|
2008-12-29 02:49:26 +01:00
|
|
|
|
|
2008-12-19 03:44:13 +01:00
|
|
|
|
|
2012-05-13 13:42:55 +02:00
|
|
|
|
void about_dialog()
|
2008-12-19 03:44:13 +01:00
|
|
|
|
{
|
2011-08-27 23:37:45 +02:00
|
|
|
|
byte p;
|
2008-12-19 03:44:13 +01:00
|
|
|
|
mouse mm;
|
2011-07-30 16:59:48 +02:00
|
|
|
|
byte id, letitclose=0;
|
2008-12-19 03:44:13 +01:00
|
|
|
|
SetEventMask(100111b);
|
|
|
|
|
loop() switch(WaitEvent())
|
|
|
|
|
{
|
|
|
|
|
case evMouse:
|
|
|
|
|
mm.get();
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
IF (mm.x>85) && (mm.x<155) && (mm.y>190) && (mm.y<190+22)
|
|
|
|
|
IF (mm.lkm) {DrawRegion_3D(86,191,68,20,0xC7C7C7,0xFFFFFF); letitclose=1;}
|
|
|
|
|
ELSE {IF (letitclose) {DrawRegion_3D(86,191,68,20,0xFFFFFF,0xC7C7C7); Pause(7); ExitProcess();}}
|
|
|
|
|
ELSE IF (letitclose) {letitclose=0; DrawRegion_3D(86,191,68,20,0xFFFFFF,0xC7C7C7);}
|
|
|
|
|
break;
|
2011-10-05 11:50:43 +02:00
|
|
|
|
|
2011-07-30 16:59:48 +02:00
|
|
|
|
case evButton:
|
|
|
|
|
id=GetButtonID();
|
|
|
|
|
IF (id==1) ExitProcess();
|
|
|
|
|
IF (id==23) RunProgram(BROWSER_PATH, BROWSER_LINK);
|
2012-07-16 13:58:24 +02:00
|
|
|
|
IF (id==33) RunProgram(EDITOR_PATH, #program_path);
|
2011-07-30 16:59:48 +02:00
|
|
|
|
break;
|
2011-10-05 11:50:43 +02:00
|
|
|
|
|
2011-07-30 16:59:48 +02:00
|
|
|
|
case evKey:
|
|
|
|
|
IF (GetKey()==27) ExitProcess();
|
|
|
|
|
break;
|
2011-10-05 11:50:43 +02:00
|
|
|
|
|
2008-12-19 03:44:13 +01:00
|
|
|
|
case evReDraw:
|
2012-07-16 13:58:24 +02:00
|
|
|
|
DefineAndDrawWindow(600,150,181,256,0x34,0x10EFEBEF,"About Eolite");
|
2011-08-27 23:37:45 +02:00
|
|
|
|
DrawBar(0,0,172,50,0x8494C4); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
PutPaletteImage(#logo,85,85,43,7,#logo_pal);
|
2012-08-02 19:41:55 +02:00
|
|
|
|
WriteText(46,100,0x90,0xBF40BF,"Eolite v1.34",0);
|
2012-05-27 13:37:20 +02:00
|
|
|
|
$add ebx, 1<<16
|
|
|
|
|
$int 0x40
|
2011-08-27 23:37:45 +02:00
|
|
|
|
WriteText(55,120,0x80,0,"Developers:",0);
|
|
|
|
|
WriteText(39,130,0x80,0,"Leency & Veliant",0);
|
2012-04-09 00:01:35 +02:00
|
|
|
|
WriteText(45,140,0x80,0,"KolibriOS Team",0);
|
2012-05-13 13:42:55 +02:00
|
|
|
|
WriteText(61,150,0x80,0,"2008-2012",0);
|
2011-08-27 23:37:45 +02:00
|
|
|
|
WriteText(12,170,0x80,0,"Visit",0);
|
|
|
|
|
DrawLink(48,170,23, "kolibri-os.narod.ru"); //<2F><><EFBFBD><EFBFBD><EFBFBD>a
|
|
|
|
|
DrawFlatButton(85,190,70,22,0,0xE4DFE1, "Close");
|
2012-06-21 00:51:10 +02:00
|
|
|
|
|
2012-07-16 13:58:24 +02:00
|
|
|
|
DefineButton(20-1,195-1, 16+1,15+1, 33+BT_HIDE, 0);
|
|
|
|
|
PutPaletteImage(8*16*15+#ficons,16,15,20,195,#ficons_pal);
|
2008-12-19 03:44:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-30 16:59:48 +02:00
|
|
|
|
void DrawLink(dword x,y,btn_id, inscription)
|
|
|
|
|
{
|
|
|
|
|
WriteText(x,y,0x80,0x4E00E7,inscription,0);
|
|
|
|
|
DrawBar(x,y+8,strlen(inscription)*6,1,0x4E00E7); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
DefineButton(x-1,y-1,strlen(inscription)*6,10,btn_id+BT_HIDE,0);
|
2011-10-05 11:50:43 +02:00
|
|
|
|
}
|