(loadFrom "kiss-godot" "src/kiss_godot/Util.kiss") (prop &mut :ArchiveController controller (property default default)) (prop &mut :Null> shortcutHandler (property default null)) (method :Void showPrefixMap [:Map map] (throw "TODO Not implemented!")) (method :Void hidePrefixMap [] (throw "TODO Not implemented!")) (method :Null> playgroundSystem [] pgSystem) (method :Void enterText [:String prompt :String->Void resolve :Float maxLength] (throw "TODO Not implemented!")) (method :Void enterNumber [:String prompt :Float->Void resolve :Float min :Float max &opt :Null inStepsOf &opt :Null allowNaN] (throw "TODO Not implemented!")) (method :Void chooseEntry [:String prompt :Archive archive :Entry->Void resolve] (throw "TODO Not implemented!")) (method :Void chooseEntries [:String prompt :Archive archive :Array->Void resolve :Int min :Float max] (throw "TODO Not implemented!")) (method :Void handleChanges [:Archive archive :ChangeSet changeSet] (throw "TODO Not implemented!")) (method :Void displayMessage [:String message] (throw "TODO Not implemented!")) (method :Void reportError [:String error] (throw "TODO Not implemented!")) (method :Void onSelectionChanged [:Array selectedEntries :Array lastSelectedEntries] (throw "TODO Not implemented!")) (method :Void choosePosition [:String prompt :Position->Void resolve] (throw "TODO Not implemented!")) (method :Option cursorPosition [] (throw "TODO Not implemented!")) (method :Void chooseBetweenStrings [:String prompt :Array choices :String->Void resolve] (throw "TODO Not implemented!")) (defNew [&prop :Archive archive &prop :RootNode rootNode] [ :EntryPanelSystem pgSystem (new EntryPanelSystem this rootNode) ])