kolibrios/programs/bcc32/examples/template/template.cpp
maxcodehack 62f378b0e5 Add files
git-svn-id: svn://kolibrios.org@8168 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-11-09 10:14:09 +00:00

53 lines
976 B
C++
Executable File

#include <kolibri.h>
#include <kos_heap.h>
#include <kos_file.h>
using namespace Kolibri;
const char header[] = "bcc32 program template";
bool KolibriOnStart(TStartData &kos_start, TThreadData th)
{
kos_start.Left = 10;
kos_start.Top = 40;
kos_start.Width = 500;
kos_start.Height = 500;
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)
{
// SOME DRAWING CODE
}
void KolibriOnButton(long id, TThreadData th)
{
// button event (BUTTON ID)
/*
switch(id){
case 2:
SetWindowCaption("Red");
break;
...
case N:
SetWindowCaption("Yellow");
//break;
};
*/
}
/*
int KolibriOnIdle(TThreadData th)
{
return -1;
}
void KolibriOnSize(int window_rect[], TThreadData th) {}
void KolibriOnKeyPress(TThreadData th)
{
GetKey();
}
void KolibriOnMouse(TThreadData th) {}
*/