|
8 年之前 | |
---|---|---|
example | 8 年之前 | |
.gitignore | 8 年之前 | |
README.md | 8 年之前 | |
application.cpp | 8 年之前 | |
application.h | 8 年之前 | |
applicationlauncher.cpp | 8 年之前 | |
applicationlauncher.h | 8 年之前 | |
applicationlauncher.pro | 8 年之前 | |
applicationlauncher_plugin.cpp | 8 年之前 | |
applicationlauncher_plugin.h | 8 年之前 | |
qmldir | 8 年之前 |
App Launcher plugin for QT Qml
import ApplicationLauncher 1.0
.....
Application {
id: testScripts
appName: "cat"
arguments: "/etc/passwd"
onAppFinished: {
console.debug("AppFinished :");
console.debug("appError : " + exitError + " appStatus : " + exitStatus + " appCode " + exitCode );
console.debug("stdERR :" + stdERR);
console.debug("stdOUT :" + stdOUT);
}
onAppStarted: {
console.debug("appStarted :");
console.debug("appError : " + exitError + " appStatus : " + exitStatus + " appCode " + exitCode );
}
onAppError: {
console.debug("appError : " + exitError + " appStatus : " + exitStatus + " appCode " + exitCode );
}
}
......
Properties
Events
Methods