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

« back to all changes in this revision

Viewing changes to qml/func/ClearRubbish.qml

  • Committer: Package Import Robot
  • Author(s): Kobe Lee (kylinkobe)
  • Date: 2013-09-18 16:22:14 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130918162214-6nqyjyf3cd3ynqky
Tags: 0.2.1-0ubuntu1
* Modify the mouse events of MonitorBall.
* Add reset button for clear pages.
* Add policykit for apt clear in sudodbus.
* Fixed the bug about software status and add masklayer.
* Rewrite the code of system information.
* Add some signals and slots.
* Fixed the bug about Software signals(LP: #1226389).
* Modify KThread and add base.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        width: parent.width; height: 435
37
37
 
38
38
        Common.Tab {
39
 
            title: qsTr("一键清理")
 
39
            title: qsTr("一键清理")           
40
40
            anchors.fill: parent
41
41
            FastclearModel {
42
42
                id: fastitem
79
79
            }
80
80
        }
81
81
        Common.TabPage{
82
 
            title:qsTr("文件排序")
 
82
            title:qsTr("大文件清理")
83
83
            anchors.fill: parent
84
84
            LargestFile {
85
85
                id: largestitem
87
87
        }
88
88
    }
89
89
}
90
 
 
91
 
 
92
 
 
93
 
//Item {
94
 
//    id: clearmode
95
 
//    width: parent.width
96
 
//    height: 475
97
 
//    property SessionDispatcher dis1: sessiondispatcher
98
 
//    property SystemDispatcher dis2: systemdispatcher
99
 
//    ListModel {
100
 
//        id: choices
101
 
//        ListElement { text: "kobe333" }
102
 
//        ListElement { text: "lixiang" }
103
 
//        ListElement { text: "ps" }
104
 
//        ListElement { text: "baby" }
105
 
//    }
106
 
 
107
 
//    Common.TabFrame {
108
 
//        id:frame
109
 
//        //position decides the tabBar's location ,when is "South", the tabBar on Sourth, and when is "North", the tabBar on North
110
 
//        position: "North"
111
 
//        width: parent.width
112
 
//        height: parent.height
113
 
//        onCurrentChanged: {}
114
 
 
115
 
//        Common.Tab {
116
 
//            title: qsTr("一键清理")
117
 
//            contentMargin: 20
118
 
//            FastclearModel {
119
 
//                id: fastitem
120
 
//            }
121
 
//        }
122
 
//        Common.Tab {
123
 
//            title: qsTr("包管理缓存")
124
 
//            contentMargin: 20
125
 
//            AptCruft {
126
 
//                id: aptitem
127
 
//            }
128
 
//        }
129
 
//        Common.Tab {
130
 
 
131
 
//            title: qsTr("软件中心缓存")
132
 
//            contentMargin: 20
133
 
//            SoftwareCruft {
134
 
//                id: softwareitem
135
 
//            }
136
 
//        }
137
 
//        Common.Tab {
138
 
//            title: qsTr("历史记录")
139
 
//            contentMargin: 20
140
 
//            BrowserHistroy {
141
 
//                id: historyitem
142
 
//            }
143
 
//        }
144
 
//        Common.Tab {
145
 
 
146
 
//            title: qsTr("Cookies")
147
 
//            contentMargin: 20
148
 
//            BrowserCookies {
149
 
//                id: cookiesitem
150
 
//            }
151
 
//        }
152
 
//        Common.Tab {
153
 
//            title: qsTr("包卸载")
154
 
//            contentMargin: 20
155
 
//            PackageModel {
156
 
//                id: packagemodel
157
 
//            }
158
 
//        }
159
 
//        Common.Tab {
160
 
//            title: qsTr("文件排序")
161
 
//            contentMargin: 20
162
 
//            LargestFile {
163
 
//                id: largestitem
164
 
//            }
165
 
//        }
166
 
//    }
167
 
//}