Created
June 12, 2014 01:51
-
-
Save jerstlouis/93016d07b8d9a4ec5afd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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