Hi guys,
Im kinda new to Mac programming and Obj C. I need to actually port a program from Win to Mac. ( cuz wer supporting mac
)
I had actually used a pascal library for a custom scripting engine and dynamic controls.
What i mean by this is:
Say, at app run time. I open a txt file. theres simple strings with delimitors and some "script"
The app upon reading adds an Interface Button a List view etc. and Upon clicking the button, it executes a predermined function but with a variable in the script.
example of script from Windows, it could be anything
//these are buttons on UI with location on interface. Well, location can be ignored.
@Button(110,22,111,20);
@Button2(111,22,32,12);
//On clicking buttons.
function_click(Button2) {
show_message('btn 2 was clicked');
}
Nothing has to be exact like this above.. i just want to know if some wrapper, engine like this does exist, which i can use for a GUI application.
any suggestions are appreciated.
Im kinda new to Mac programming and Obj C. I need to actually port a program from Win to Mac. ( cuz wer supporting mac
I had actually used a pascal library for a custom scripting engine and dynamic controls.
What i mean by this is:
Say, at app run time. I open a txt file. theres simple strings with delimitors and some "script"
The app upon reading adds an Interface Button a List view etc. and Upon clicking the button, it executes a predermined function but with a variable in the script.
example of script from Windows, it could be anything
//these are buttons on UI with location on interface. Well, location can be ignored.
@Button(110,22,111,20);
@Button2(111,22,32,12);
//On clicking buttons.
function_click(Button2) {
show_message('btn 2 was clicked');
}
Nothing has to be exact like this above.. i just want to know if some wrapper, engine like this does exist, which i can use for a GUI application.
any suggestions are appreciated.