|
@ -6,7 +6,6 @@ import "qrc:/theme" |
|
|
import "qrc:/const" |
|
|
import "qrc:/const" |
|
|
import "qrc:/emulator/components" |
|
|
import "qrc:/emulator/components" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import de.skycoder42.QtMvvm.Core 1.0 |
|
|
import de.skycoder42.QtMvvm.Core 1.0 |
|
|
import de.skycoder42.QtMvvm.Quick 1.0 |
|
|
import de.skycoder42.QtMvvm.Quick 1.0 |
|
|
import com.example.consoleemulator 1.0 |
|
|
import com.example.consoleemulator 1.0 |
|
@ -14,6 +13,10 @@ import com.example.consoleemulator 1.0 |
|
|
Button { |
|
|
Button { |
|
|
id: button |
|
|
id: button |
|
|
|
|
|
|
|
|
|
|
|
width: Const.macroButton |
|
|
|
|
|
height: Const.macroButton * 2 |
|
|
|
|
|
implicitWidth: width |
|
|
|
|
|
implicitHeight: height |
|
|
//========================================= |
|
|
//========================================= |
|
|
property var name |
|
|
property var name |
|
|
property var nameLed: name + "Led" |
|
|
property var nameLed: name + "Led" |
|
@ -30,9 +33,8 @@ Button { |
|
|
viewProperty: "colorMode" |
|
|
viewProperty: "colorMode" |
|
|
viewModelProperty: nameLed |
|
|
viewModelProperty: nameLed |
|
|
} |
|
|
} |
|
|
//========================================= |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//========================================= |
|
|
property var image: "" |
|
|
property var image: "" |
|
|
property var radius: Math.min(width / 2, height / 2) |
|
|
property var radius: Math.min(width / 2, height / 2) |
|
|
property var timeToPress: 100 |
|
|
property var timeToPress: 100 |
|
@ -45,45 +47,51 @@ Button { |
|
|
signal pressed |
|
|
signal pressed |
|
|
signal released |
|
|
signal released |
|
|
|
|
|
|
|
|
implicitWidth: width |
|
|
onPressed: { |
|
|
implicitHeight: height |
|
|
button.down = true |
|
|
|
|
|
} |
|
|
onPressed: { button.down = true } |
|
|
onReleased: { |
|
|
onReleased: { button.down = false } |
|
|
button.down = false |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
function getColor() { |
|
|
function getColor() { |
|
|
switch(colorMode) { |
|
|
switch (colorMode) { |
|
|
case(0): return Theme.current.none |
|
|
case (0): |
|
|
case(1): return Theme.current.white |
|
|
return Theme.current.none |
|
|
case(2): return Theme.current.green |
|
|
case (1): |
|
|
case(3): return Theme.current.yellow |
|
|
return Theme.current.white |
|
|
|
|
|
case (2): |
|
|
|
|
|
return Theme.current.green |
|
|
|
|
|
case (3): |
|
|
|
|
|
return Theme.current.yellow |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function getColorGlow() { |
|
|
function getColorGlow() { |
|
|
switch(colorMode) { |
|
|
switch (colorMode) { |
|
|
case(0): return Theme.current.noneGlow |
|
|
case (0): |
|
|
case(1): return Theme.current.whiteGlow |
|
|
return Theme.current.noneGlow |
|
|
case(2): return Theme.current.greenGlow |
|
|
case (1): |
|
|
case(3): return Theme.current.yellowGlow |
|
|
return Theme.current.whiteGlow |
|
|
|
|
|
case (2): |
|
|
|
|
|
return Theme.current.greenGlow |
|
|
|
|
|
case (3): |
|
|
|
|
|
return Theme.current.yellowGlow |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
width: Const.macroButton |
|
|
|
|
|
height: Const.macroButton*2 |
|
|
|
|
|
|
|
|
|
|
|
contentItem: Item { |
|
|
contentItem: Item { |
|
|
id: content |
|
|
id: content |
|
|
anchors.fill: parent |
|
|
anchors.fill: parent |
|
|
z: 1 |
|
|
z: 1 |
|
|
|
|
|
|
|
|
Item { |
|
|
Item { |
|
|
property var factor: button.state == "Pressed" ? |
|
|
property var factor: button.state |
|
|
Const.imageScalePressed : Const.imageScale |
|
|
== "Pressed" ? Const.imageScalePressed : Const.imageScale |
|
|
property var elevator: button.state == "Pressed" ? 3 : 0 |
|
|
property var elevator: button.state == "Pressed" ? 3 : 0 |
|
|
|
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter |
|
|
anchors.horizontalCenter: parent.horizontalCenter |
|
|
y: (parent.height * (1-factor)) / 2 + elevator |
|
|
y: (parent.height * (1 - factor)) / 2 + elevator |
|
|
width: parent.width * factor |
|
|
width: parent.width * factor |
|
|
height: parent.height * factor |
|
|
height: parent.height * factor |
|
|
|
|
|
|
|
@ -127,7 +135,7 @@ Button { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
background: Item{ |
|
|
background: Item { |
|
|
width: parent.width |
|
|
width: parent.width |
|
|
height: parent.height |
|
|
height: parent.height |
|
|
|
|
|
|
|
@ -138,7 +146,7 @@ Button { |
|
|
height: backLight.height + diffusion |
|
|
height: backLight.height + diffusion |
|
|
radius: width / 2 |
|
|
radius: width / 2 |
|
|
anchors.horizontalCenter: backLight.horizontalCenter |
|
|
anchors.horizontalCenter: backLight.horizontalCenter |
|
|
y: - diffusion / 4 |
|
|
y: -diffusion / 4 |
|
|
color: Theme.current.background |
|
|
color: Theme.current.background |
|
|
border { |
|
|
border { |
|
|
width: diffusion / 2 |
|
|
width: diffusion / 2 |
|
@ -164,13 +172,23 @@ Button { |
|
|
RadialGradient { |
|
|
RadialGradient { |
|
|
anchors.fill: parent |
|
|
anchors.fill: parent |
|
|
gradient: Gradient { |
|
|
gradient: Gradient { |
|
|
GradientStop { position: 0.0; color: lightGlow } |
|
|
|
|
|
GradientStop { |
|
|
GradientStop { |
|
|
position: 0.5 * (backLight.width - backLightGlow.diffusion / backLightGlow.width) |
|
|
position: 0.0 |
|
|
|
|
|
color: lightGlow |
|
|
|
|
|
} |
|
|
|
|
|
GradientStop { |
|
|
|
|
|
position: 0.5 * (backLight.width - backLightGlow.diffusion |
|
|
|
|
|
/ backLightGlow.width) |
|
|
color: lightGlow |
|
|
color: lightGlow |
|
|
} |
|
|
} |
|
|
GradientStop { position: 0.5; color: "transparent" } |
|
|
GradientStop { |
|
|
GradientStop { position: 1.0; color: "transparent" } |
|
|
position: 0.5 |
|
|
|
|
|
color: "transparent" |
|
|
|
|
|
} |
|
|
|
|
|
GradientStop { |
|
|
|
|
|
position: 1.0 |
|
|
|
|
|
color: "transparent" |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -211,7 +229,7 @@ Button { |
|
|
height: parent.height |
|
|
height: parent.height |
|
|
radius: width / 2 |
|
|
radius: width / 2 |
|
|
color: "transparent" |
|
|
color: "transparent" |
|
|
border{ |
|
|
border { |
|
|
color: background.color |
|
|
color: background.color |
|
|
width: button.border |
|
|
width: button.border |
|
|
} |
|
|
} |
|
@ -224,8 +242,7 @@ Button { |
|
|
anchors.fill: parent |
|
|
anchors.fill: parent |
|
|
|
|
|
|
|
|
layer.enabled: true |
|
|
layer.enabled: true |
|
|
layer.effect: |
|
|
layer.effect: OpacityMask { |
|
|
OpacityMask { |
|
|
|
|
|
maskSource: lightRing |
|
|
maskSource: lightRing |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -312,7 +329,7 @@ Button { |
|
|
id: hoverGlow |
|
|
id: hoverGlow |
|
|
width: 2 * parent.width |
|
|
width: 2 * parent.width |
|
|
height: parent.height |
|
|
height: parent.height |
|
|
x: - 2 * parent.width |
|
|
x: -2 * parent.width |
|
|
color: "transparent" |
|
|
color: "transparent" |
|
|
|
|
|
|
|
|
HoverGlow {} |
|
|
HoverGlow {} |
|
@ -349,7 +366,8 @@ Button { |
|
|
|
|
|
|
|
|
transitions: [ |
|
|
transitions: [ |
|
|
Transition { |
|
|
Transition { |
|
|
from: ""; to: "Hovering" |
|
|
from: "" |
|
|
|
|
|
to: "Hovering" |
|
|
NumberAnimation { |
|
|
NumberAnimation { |
|
|
properties: "x" |
|
|
properties: "x" |
|
|
duration: 500 |
|
|
duration: 500 |
|
@ -358,4 +376,3 @@ Button { |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|