Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created July 11, 2014 01:12
Show Gist options
  • Save jerstlouis/b1641a0949f56ceda7be to your computer and use it in GitHub Desktop.
Save jerstlouis/b1641a0949f56ceda7be to your computer and use it in GitHub Desktop.
import "ecere"
ConsoleFile con { };
class BaseStruct : struct
{
public:
void * type;
int continued;
};
static class DerivedStruct : BaseStruct
{
public:
int y, x;
};
class Form1 : Window
{
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
clientSize = { 632, 438 };
Button button1
{
this, caption = $"button1", position = { 296, 120 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
DerivedStruct foo { y = 4, x = 5 };
char temp[100];
PrintLn(foo);
foo.OnGetString(temp, null, null);
PrintLn(temp);
delete foo;
foo.OnGetDataFromString(temp);
WriteJSONObject(con, class(DerivedStruct), foo, 0);
return true;
}
};
}
Form1 form1 { };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment