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

« back to all changes in this revision

Viewing changes to qml/func/bars/FcitxThreeBar.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:
15
15
 */
16
16
 
17
17
import QtQuick 1.1
18
 
 
19
 
//import QtDesktop 0.1
20
18
import "../common" as Common
21
19
Item {
22
20
     id: toolbar
23
21
 
24
22
     property bool showok: true
 
23
     signal gobackHomeClicked
25
24
     signal cancelBtnClicked
26
25
     signal finishBtnClicked
27
26
     signal gobackBtnClicked
45
44
 
46
45
//         anchors.right: parent.right; anchors.rightMargin: 5; y: 3; height: 32; spacing: 30
47
46
         Common.Button {
 
47
             id: gobackHome
 
48
             hoverimage: "gray1.png"//../../img/icons/
 
49
             text: "返回主页"
 
50
             fontcolor:"#929292"
 
51
             fontsize: 13
 
52
             width: 94; height: 29
 
53
             onClicked: toolbar.gobackHomeClicked()
 
54
         }
 
55
         Common.Button {
48
56
             id: cancelBtn
49
57
             visible: toolbar.showok
50
 
             //hoverimage: "list_item_active.png"
 
58
             hoverimage: "gray1.png"//../../img/icons/
51
59
             text: "取消"
 
60
             fontcolor:"#929292"
 
61
             fontsize: 13
52
62
             width: 94; height: 29
53
63
             onClicked: toolbar.cancelBtnClicked()
54
64
         }
55
65
         Common.Button {
56
66
             id: gobackBtn
57
 
             //hoverimage: "list_item_pressed.png"
 
67
             hoverimage: "gray1.png"//../../img/icons/
58
68
             text: "上一步"
 
69
             fontcolor:"#929292"
 
70
             fontsize: 13
59
71
             width: 94; height: 29
60
72
             onClicked: toolbar.gobackBtnClicked()
61
73
         }
62
74
         Common.Button {
63
75
            id: finishBtn
64
76
            visible: toolbar.showok
65
 
            //hoverimage: "list_item_active.png"
 
77
            hoverimage: "green2.png"//../../img/icons/
 
78
            fontsize: 13
 
79
            fontcolor:"#ffffff"
66
80
            text: "应用"
67
81
            width: 94; height: 29
68
82