September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
2
Task/Hello-world-Graphical/EC/hello-world-graphical-1.ec
Normal file
2
Task/Hello-world-Graphical/EC/hello-world-graphical-1.ec
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import "ecere"
|
||||
MessageBox goodBye { contents = "Goodbye, World!" };
|
||||
2
Task/Hello-world-Graphical/EC/hello-world-graphical-2.ec
Normal file
2
Task/Hello-world-Graphical/EC/hello-world-graphical-2.ec
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import "ecere"
|
||||
Label label { text = "Goodbye, World!", hasClose = true, opacity = 1, size = { 320, 200 } };
|
||||
15
Task/Hello-world-Graphical/EC/hello-world-graphical-3.ec
Normal file
15
Task/Hello-world-Graphical/EC/hello-world-graphical-3.ec
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import "ecere"
|
||||
|
||||
class GoodByeForm : Window
|
||||
{
|
||||
text = "Goodbye, World!";
|
||||
size = { 320, 200 };
|
||||
hasClose = true;
|
||||
|
||||
void OnRedraw(Surface surface)
|
||||
{
|
||||
surface.WriteTextf(10, 10, "Goodbye, World!");
|
||||
}
|
||||
}
|
||||
|
||||
GoodByeForm form {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue