8 lines
270 B
QML
8 lines
270 B
QML
import QtQuick 2.0
|
|
import QtQuick.Window 2.0
|
|
QtObject{
|
|
property int appWidth: Screen.desktopAvailableWidth
|
|
property int appHeight: Screen.desktopAvailableHeight
|
|
property int backKey: Qt.Key_Back
|
|
property string attachImageDir:filesystem.cameraPath+"/"
|
|
}
|