diff options
Diffstat (limited to 'GUIModel/Menu/MenuAdasIconAdas.qml')
-rw-r--r-- | GUIModel/Menu/MenuAdasIconAdas.qml | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/GUIModel/Menu/MenuAdasIconAdas.qml b/GUIModel/Menu/MenuAdasIconAdas.qml index d1b8fef..0988cb8 100644 --- a/GUIModel/Menu/MenuAdasIconAdas.qml +++ b/GUIModel/Menu/MenuAdasIconAdas.qml @@ -14,54 +14,54 @@ * limitations under the License. */ -import QtQuick 2.0
-import QtGraphicalEffects 1.0
-import QtQuick.Shapes 1.11
-
-Item{
- id: adasIconAdas
-
- property bool enabled: false
- property bool focused: false
-
- property alias onImage: onImage.source
- property alias offImage: offImage.source
- property alias textImage: textImage.source
-
- Image{
- id: offImage
- source: "qrc:/Images/ADASView/MENU/adas_icon1_off.png"
- x:170
- y:186
- width:104
- height:90
- visible: !(adasIconAdas.enabled)
- }
- Image{
- id: onImage
- source: "qrc:/Images/ADASView/MENU/adas_icon1_on.png"
- x:170
- y:186
- width:104
- height:90
- visible: adasIconAdas.enabled
- }
- Image{
- id: textImage
- source: "qrc:/Images/ADASView/MENU/adas_text1.png"
- x:202
- y:278
- width:40
- height:18
- visible:true
- }
- Image{
- source: "qrc:/Images/ADASView/MENU/adas_panel1.png"
- x:165
- y:170
- width:114
- height:144
- visible: adasIconAdas.focused
- }
-
-}
+import QtQuick 2.0 + +import QtQuick.Shapes 1.11 + +Item{ + id: adasIconAdas + + property bool enabled: false + property bool focused: false + + property alias onImage: onImage.source + property alias offImage: offImage.source + property alias textImage: textImage.source + + Image{ + id: offImage + source: "qrc:/Images/ADASView/MENU/adas_icon1_off.png" + x:170 + y:186 + width:104 + height:90 + visible: !(adasIconAdas.enabled) + } + Image{ + id: onImage + source: "qrc:/Images/ADASView/MENU/adas_icon1_on.png" + x:170 + y:186 + width:104 + height:90 + visible: adasIconAdas.enabled + } + Image{ + id: textImage + source: "qrc:/Images/ADASView/MENU/adas_text1.png" + x:202 + y:278 + width:40 + height:18 + visible:true + } + Image{ + source: "qrc:/Images/ADASView/MENU/adas_panel1.png" + x:165 + y:170 + width:114 + height:144 + visible: adasIconAdas.focused + } + +} |