Andreas Kling
f6998b1817
JSON: Templatize the JSON serialization code
...
This makes it possible to use something other than a StringBuilder for
serialization (and to produce something other than a String.) :^)
2019-08-07 21:29:32 +02:00
Andreas Kling
3eb6a9a286
FormCompiler: Produce a C++ header file as output.
...
Also make sure the generated main widget has autofill turned on.
2019-07-10 21:14:25 +02:00
Andreas Kling
8d67aa1e59
FormCompiler: Generate a basic UI skeleton holder struct.
...
The basic idea is that you would use it like this:
MyWidget::MyWidget(GWidget* parent)
: GWidget(parent)
{
m_ui = new UI_MyWidget;
set_main_widget(m_ui->main_widget);
...
}
2019-07-10 20:58:54 +02:00
Andreas Kling
2d3293dfbd
FormCompiler: Start working on a C++ code generator for VisualBuilder forms.
2019-07-10 20:41:31 +02:00