summaryrefslogtreecommitdiffstats
path: root/CoffeeTweed/Add.qml
diff options
context:
space:
mode:
Diffstat (limited to 'CoffeeTweed/Add.qml')
-rw-r--r--CoffeeTweed/Add.qml38
1 files changed, 0 insertions, 38 deletions
diff --git a/CoffeeTweed/Add.qml b/CoffeeTweed/Add.qml
deleted file mode 100644
index 5a16af9..0000000
--- a/CoffeeTweed/Add.qml
+++ /dev/null
@@ -1,38 +0,0 @@
-import Qt 4.7
-
-Item {
- id: bt_add
- width: 188; height: 188
-
- signal addClicked
-
- Image {
- id: bt_add_off;
- source: "images/bt_add_off.png";
- }
-
- Image {
- id: bt_add_on;
- source: "images/bt_add_on.png";
- opacity: 0;
- Behavior on opacity { NumberAnimation { duration: 150; } }
- }
-
- MouseArea {
- anchors.fill: parent
- onPressed: { bt_add.state = "pressed" }
- onReleased: { bt_add.state = "released"; bt_add.addClicked() }
-
- }
-
- states: [
- State {
- name: "pressed"
- PropertyChanges{ target: bt_add_on; opacity: 1; }
- },
- State {
- name: "released"
- PropertyChanges{ target: bt_add_on; opacity: 0; }
- }
- ]
-}