|
7 lat temu | |
---|---|---|
example | 7 lat temu | |
.gitignore | 8 lat temu | |
README.md | 7 lat temu | |
application.cpp | 7 lat temu | |
application.h | 7 lat temu | |
applicationlauncher.cpp | 8 lat temu | |
applicationlauncher.h | 8 lat temu | |
applicationlauncher.pro | 7 lat temu | |
applicationlauncher.qmltypes | 7 lat temu | |
applicationlauncher_plugin.cpp | 7 lat temu | |
applicationlauncher_plugin.h | 8 lat temu | |
qmldir | 7 lat temu |
App Launcher plugin for QT Qml
import ApplicationLauncher 1.0
.....
ApplicationLaunch {
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