Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include "imgs\logo.cpp"
  2.  
  3. void authors()
  4. {
  5.         WindowRedrawStatus(1);
  6.         _HH:
  7.         DefineAndDrawWindow(500,200,181,256,0x04,0x00EFEBEF,0,0,0);
  8.      DrawTitle("About Eolite");
  9.         DrawBar(5,0,172,50,0x8494C4); //ãîëóáîå ñçàäè
  10.         PutImage(#logo,85,85,48,7);
  11.                 WriteText(38,100,0x80,0xBF40BF,"Eolite v0.84 beta2",0);
  12.                 WriteText(68,120,0x80,0,"Authors:",0);
  13.                 WriteText(44,130,0x80,0,"Leency & Veliant",0);
  14.                 WriteText(50,140,0x80,0,"KolibriOS Team",0);
  15.                 WriteText(26,160,0x80,0,"Made using C-- in 2008",0);
  16.                 WriteText(23,170,0x80,0,"Visit www.kolibrios.org",0);
  17.         DrawFlatButton(90,190,70,22,2,0x00D7D7D7);
  18.         WriteText(111,198,0x80,0,"Close",0);
  19.         WindowRedrawStatus(2);
  20.         loop()
  21.         {
  22.                 switch(WaitEvent())
  23.                 {
  24.                         CASE evButton: ExitProcess();
  25.                         CASE evReDraw:
  26.                         GOTO _HH;
  27.                         break;
  28.                 }
  29.         }
  30.         ExitProcess();
  31. }
  32.  
  33.  
  34.  
  35.