Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created December 13, 2016 16:08
Show Gist options
  • Save jerstlouis/44e858536316ac861d9e6d741a40d848 to your computer and use it in GitHub Desktop.
Save jerstlouis/44e858536316ac861d9e6d741a40d848 to your computer and use it in GitHub Desktop.
#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