I'm developing an application framework for my own personal use.
One iteration of the framework I have developed using REALbasic 5.5(and it should be easily ported to REALbasic 3.5 for system 7 support).
I'm curious if my work might be useful for anyone in the community.
The general concept is providing access to code via data. Ie. Creating menus, windows, sockets, etc via a JSON file, database, console, etc.
I'm currently working on the application engine that utilises the framework. One example I can show is creating menus:
This shows appending menu items to the Apple menu. The JSON for this would be similar to this:
The goal of the application is to have a user interface for creating and editing the data.
Any comments are appreciated. Thanks
One iteration of the framework I have developed using REALbasic 5.5(and it should be easily ported to REALbasic 3.5 for system 7 support).
I'm curious if my work might be useful for anyone in the community.
The general concept is providing access to code via data. Ie. Creating menus, windows, sockets, etc via a JSON file, database, console, etc.
I'm currently working on the application engine that utilises the framework. One example I can show is creating menus:
This shows appending menu items to the Apple menu. The JSON for this would be similar to this:
{
"nil_app": {
"menu_bar": {
"menus": {
"apple": {
"items": {
"about": {
"text": "About…",
"action": "NilAppAbout",
"visible": true,
"enabled": true
},
"preferences": {
"text": "Preferences…",
"action": "NilAppPreferences",
"shortcut": ",",
"visible": true,
"enabled": true
}
}
}
}
}
}
}
The goal of the application is to have a user interface for creating and editing the data.
Any comments are appreciated. Thanks
Last edited: