Update in example BCC

git-svn-id: svn://kolibrios.org@8166 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack
2020-11-09 10:04:30 +00:00
parent 3c2325ba4a
commit 97f79f243e
2 changed files with 20 additions and 19 deletions

View File

@@ -4,27 +4,27 @@
using namespace Kolibri;
const char header[] = "Title";
const char string[] = "Exit";
const char header[] = "Colors";
bool KolibriOnStart(TStartData &kos_start, TThreadData th)
{
kos_start.Left = 10;
kos_start.Top = 40;
kos_start.Width = 150;
kos_start.Width = 135;
kos_start.Height = 80;
kos_start.WinData.WindowColor = 0xFFFFFF;
kos_start.WinData.WindowType = 0x34; // 0x34 - fixed, 0x33 - not fixed
kos_start.WinData.Title = header;
return true;
}
void KolibriOnPaint(void)
{
DrawButton(1,0xB0B0B0, 10,10,50,20);
DrawText(15, 15, 0, string);
// If button have ID 1, this is close button
DrawButton(2,0xff0000, 10,40,50,20);
DrawButton(3,0x00ff00, 70,10,50,20);
DrawButton(4,0x0000ff, 70,40,50,20);
DrawButton(5,0xFFFE00, 10,10,50,20);
}
void KolibriOnButton(long id, TThreadData th)
@@ -38,14 +38,13 @@ void KolibriOnButton(long id, TThreadData th)
break;
case 4:
SetWindowCaption("Blue");
break;
case 5:
SetWindowCaption("Yellow");
//break;
};
}
/*
bool KolibriOnClose(TThreadData th)
{
return true;
}
int KolibriOnIdle(TThreadData th)
{
return -1;
@@ -56,4 +55,4 @@ void KolibriOnKeyPress(TThreadData th)
GetKey();
}
void KolibriOnMouse(TThreadData th) {}
*/
*/