~ubuntu-branches/ubuntu/vivid/youker-assistant/vivid

« back to all changes in this revision

Viewing changes to qml/func/HomePage.qml

  • Committer: Package Import Robot
  • Author(s): Jack Yu
  • Date: 2013-09-02 23:17:45 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130902231745-psyl14qxslg1g3dp
Tags: 0.1.6-0ubuntu1
* Modify SystemDispatcher and SessionDispatcher Classes.
* Add watch file into debian folder.
* Resolve status of onekey button(LP #1216236 ).
* Add monitorball code into systemdbus daemon.
* Optimize the status button.
* Add fcitx configuration function.
* Fix bugs due to bad references to apt lib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
            height: parent.height
53
53
 
54
54
            //左右布局
55
 
            Row {
56
 
                anchors.fill: parent
57
 
                spacing: 0
58
 
                //坐边栏
59
 
                LeftPage {
60
 
                    id: leftbar
 
55
            //坐边栏
 
56
            LeftPage {
 
57
                id: leftbar
 
58
                anchors.left: parent.left
 
59
                anchors.leftMargin: -2
 
60
                width: 600; height: screen.height
 
61
            }
 
62
           RightPage {
 
63
                id: rightbar
 
64
                anchors.left: leftbar.right
 
65
                anchors.leftMargin: 0
 
66
                width: screen.width - 600; height: screen.height
 
67
            }
 
68
//            Row {
 
69
//                anchors.fill: parent
 
70
//                spacing: 0
 
71
//                //坐边栏
 
72
//                LeftPage {
 
73
//                    id: leftbar
61
74
//                    anchors.left: parent.left
62
75
//                    anchors.leftMargin: -2
63
 
                    width: 600; height: screen.height
64
 
                }
65
 
               RightPage {
66
 
                    id: rightbar
 
76
//                    width: 600; height: screen.height
 
77
//                }
 
78
//               RightPage {
 
79
//                    id: rightbar
67
80
//                    anchors.left: leftbar.right
68
81
//                    anchors.leftMargin: 0
69
 
                    width: screen.width - 600; height: screen.height
70
 
                }
71
 
            }//左右布局Row
 
82
//                    width: screen.width - 600; height: screen.height
 
83
//                }
 
84
//            }//左右布局Row
72
85
            Item { id: foreground; anchors.fill: parent }
73
86
            //左右分割条
74
87
            Rectangle {id: midsplitbar1; x: 600; height: screen.height; width: 1; color: "#b9c5cc" }