Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created June 12, 2014 01:51
Show Gist options
  • Save jerstlouis/93016d07b8d9a4ec5afd to your computer and use it in GitHub Desktop.
Save jerstlouis/93016d07b8d9a4ec5afd to your computer and use it in GitHub Desktop.
import "ecere"
class Form1 : Window
{
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
clientSize = { 632, 438 };
Button button1
{
this, caption = $"button1", position = { 224, 64 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
HTTPFile f = FileOpenURL("http://www.google.ca");
if(f)
{
TempFile tmp { };
String tmpPath = PrintString("File://", (uintptr)tmp);
f.CopyTo(tmpPath);
delete tmpPath;
delete f;
PrintLn("Size is ", tmp.GetSize());
delete tmp;
}
return true;
}
};
}
Form1 form1 {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment