~mterry/ubuntu-calculator-app/confined

« back to all changes in this revision

Viewing changes to app/ui/ActionButton.qml

  • Committer: Launchpad Translations on behalf of ubuntu-calculator-dev
  • Date: 2016-11-30 05:39:14 UTC
  • Revision ID: launchpad_translations_on_behalf_of_ubuntu-calculator-dev-20161130053914-wkcv01lmm4b62jru
Launchpad automatic translations update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical Ltd
 
3
 *
 
4
 * This file is part of Ubuntu Calculator App
 
5
 *
 
6
 * Ubuntu Calculator App is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License version 3 as
 
8
 * published by the Free Software Foundation.
 
9
 *
 
10
 * Ubuntu Calculator App is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.4
 
20
import Ubuntu.Components 1.3
 
21
 
 
22
AbstractButton {
 
23
    id: abstractButton
 
24
 
 
25
    property alias iconName: _icon.name
 
26
    property alias color: _icon.color
 
27
 
 
28
    Rectangle {
 
29
        visible: abstractButton.pressed
 
30
        anchors.fill: parent
 
31
        color:  UbuntuColors.orange
 
32
    }
 
33
 
 
34
    Icon {
 
35
        id: _icon
 
36
        width: units.gu(2.5)
 
37
        height: width
 
38
        anchors.centerIn: parent
 
39
        color:  UbuntuColors.orange
 
40
        asynchronous: true
 
41
    }
 
42
}