Created
December 13, 2016 16:08
-
-
Save jerstlouis/44e858536316ac861d9e6d741a40d848 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
#define MODULE_NAME "HelloForm" | |
// #define __CONSOLE_APP__ | |
#include "ecere.hpp" | |
class HelloForm : public Window | |
{ | |
public: | |
Label label; | |
CONSTRUCT(HelloForm, Window) | |
{ | |
caption = $("My First Ecere/C++ Bindings App"); | |
borderStyle = sizable; | |
size = { 380, 190 }; | |
hasClose = true; | |
label.parent = this; | |
label.caption = $("Hello, Bindings!!"); | |
label.position = { 10, 10 }; | |
label.font = { "Arial", 30 }; | |
//char tmp[256]; | |
//String s = Instance_onGetString(0, font, tmp, null, null); | |
//PrintLn(class_String, s, null); // Need to terminate with a null! | |
} | |
}; | |
GuiApplication app; | |
REGISTER_CLASS_DEF(HelloForm, Window, app); | |
HelloForm hello; | |
MAIN_DEFINITION; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment