aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/WindowFrame.qml
blob: b17650014a8d43cbab28a71f11437d0f3ad261ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// vi: ft=qml
import QtQuick 2.0
import QtQuick.Window 2.2
import QtQuick.Controls 1.4 
import QtQuick.Layouts 1.3

Rectangle {
  id: background
  color: "grey"

  Rectangle {
    id: windowFrame
    border.width: 5
    border.color: "black"
    color: "white"
    width: 400 
    height: 300

    MouseArea {
      id: resizeArea
      anchors.fill: parent
      property int positionX: 0
      property int positionY: 0
      property int newWidth: 0
      property int newHeight: 0

      onPositionChanged: { 
        var globalP = windowFrame.mapToItem(background, mouse.x, mouse.y)
        if(positionY < windowFrame.y + 15 ) {
          /*if(positionX < windowFrame.x + 15) {
            console.log("Top Left");
            //Top Left 
            newWidth = windowFrame.width + (windowFrame.x - mouse.x) 
            newHeight = windowFrame.height + (windowFrame.y - mouse.y) 
            windowFrame.x = mouse.x
            windowFrame.y = mouse.y
          }else if(positionX > windowFrame.x + windowFrame.width - 15) {
            console.log("Top Right");
            //Top Right
            newX = positionX - mouse.x
            newY = positionY - mouse.y
            newWidth = windowFrame.width - (positionX - mouse.x)
            newHeight = windowFrame.height + (windowFrame.y - mouse.y)
            windowFrame.y = mouse.y
          }else{*/
            //Top
            console.log("oldHeight: ", windowFrame.height);
            windowFrame.height -= 1
            console.log("newHeight: ", windowFrame.height);
            windowFrame.y = globalP.y
         // }
        }
/*else if(mouse.x < windowFrame.x + 15) {
          if(mouse.y > windowFrame.y + windowFrame.height - 15) {
            //Bottom Left
            newX = positionX - mouse.x
            newWidth = windowFrame.width - newX
            newHeight = windowFrame.height - newY
          }else{
            //Left
          }
        }else if(mouse.y > windowFrame.y + windowFrame.height - 15) {
          if(mouse.x > windowFrame.x + windowFrame.width - 15) {
            //Bottom Right
          }else{
            //Bottom
          }
        }else if(mouse.x > windowFrame.x + windowFrame.width - 15) {
          //Right
        } else {
          console.log("Cursor error");
        }*/
      }
    }

    MouseArea {
      id: dragArea
      anchors.fill: titleBar
      drag.target: windowFrame
      drag.axis: Drag.XAndYAxis
      onClicked: { console.log("dragArea"); }
      //released: { function(); }
    }

    states: [ 
      State {
        when: resizeArea.drag.held
        PropertyChanges { target: canvas; color:"red" }
      },
      State {
        when: dragArea.drag.held
        AnchorChanges { target: windowFrame; anchors.verticalCenter: undefined; anchors.horizontalCenter: undefined }
      }

    ]


    Rectangle {
      id: titleBar
      border.width: 2
      color: "black" 
      height: 25
      anchors.top: windowFrame.top
      anchors.right: windowFrame.right
      anchors.left: windowFrame.left
      anchors.margins: windowFrame.border.width
      width: parent.width

      RowLayout {
        anchors.right: parent.right
        spacing: 0

        Button {
          iconName: "window-minimize"
          //action: 
        }

        Button {
          iconName: "window-maximize"
          //action: 
        }

        Button {
          iconName: "document-close"
          //action: 
        }

      }

      Button {
        iconName: "emblem-synchronized"
        anchors.left: parent.left
      }

      Text {
        anchors.verticalCenter: parent.verticalCenter
        anchors.horizontalCenter: parent.horizontalCenter
        color: "white" 
        text: "zwelch@trueos~8905:~/lumina/src-qt5/src-qml/test"
        font.pixelSize: 10
      }

      MouseArea {
        acceptedButtons: Qt.RightButton
        anchors.fill: parent
        //onClicked: contextMenu.open()
      }
    }

    Image {
      id: frameContents
//      source: "balloon.png"
      anchors.top: titleBar.bottom
      anchors.bottom: parent.bottom
      anchors.left: windowFrame.left
      anchors.right: windowFrame.right
      anchors.leftMargin: windowFrame.border.width
      anchors.rightMargin: windowFrame.border.width
      anchors.bottomMargin: windowFrame.border.width
      width: parent.width
      height: parent.height

      MouseArea { 
        width: parent.width; 
        height: parent.height; 
        anchors.fill: frameContents; 
        onClicked: { console.log(parent.mapToGlobal(mouse.x, mouse.y)); }

      }
    }
  }
}
bgstack15