()
| 236 | this.DEVICE.first.delegate("onKeyUp", key); |
| 237 | } |
| 238 | launchScreen() { |
| 239 | if (this.screenOnce) |
| 240 | return; |
| 241 | if (this.libraryPath) { |
| 242 | system.copyFile(this.libraryPath, this.localLibraryPath); |
| 243 | if (this.archivePath) { |
| 244 | system.copyFile(this.archivePath, this.localArchivePath); |
| 245 | if (this.ffiPath) { |
| 246 | system.copyFile(this.ffiPath, this.localFFIPath); |
| 247 | this.SCREEN.launch(this.localLibraryPath, this.localArchivePath, this.localFFIPath); |
| 248 | } |
| 249 | else |
| 250 | this.SCREEN.launch(this.localLibraryPath, this.localArchivePath); |
| 251 | } |
| 252 | else |
| 253 | this.SCREEN.launch(this.localLibraryPath); |
| 254 | this.DEVICE.first.delegate("onLaunch"); |
| 255 | } |
| 256 | application.updateMenus(); |
| 257 | application.distribute("onInfoChanged"); |
| 258 | } |
| 259 | quitScreen() { |
| 260 | if (this.screenOnce) |
| 261 | return; |
no test coverage detected