CGUI
CGUI copied to clipboard
[Suggestion] CFileDialog and CFolderDialog rewrite
Suggestions for inspiration:
CFileDialog and CFolderDialog are simply wrappers around FileSelectFile
and FileSelectFolder
This seems fairly pointless in my opinion. It'd be much better if these were full extendable GUIs which you could customise with your own behaviours. E.G.
class MyFileDialog extends CFileDialog {
specialButton := this.AddControl("Button","specialButton".""."Clicky")
specialButton_click(){
;create some menu to choose some stuff... e.g. choose between file:///, ftp:// and http:// protocols.
}
}
The GUI was build from the ground up in CGUI that would be amazing (and significantly more useful!)