~ci-train-bot/ubuntu-ui-extras/ubuntu-ui-extras-ubuntu-zesty-2510

« back to all changes in this revision

Viewing changes to modules/Ubuntu/Components/Extras/TabsBar/TabContour.qml

  • Committer: Bileto Bot
  • Author(s): Florian Boucault
  • Date: 2017-01-16 16:02:12 UTC
  • mfrom: (118.1.5 tabs)
  • Revision ID: ci-train-bot@canonical.com-20170116160212-nvk9is01eg6jyw9n
New component: TabsBar

Approved by: Andrew Hayzen

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored-by: Florian Boucault <florian.boucault@canonical.com>
 
17
 */
 
18
import QtQuick 2.4
 
19
import Ubuntu.Components 1.3
 
20
 
 
21
Item {
 
22
    id: tabContour
 
23
    property color backgroundColor
 
24
    property color contourColor
 
25
    property color outsideColor
 
26
 
 
27
    TabContourHalf {
 
28
        anchors {
 
29
            top: parent.top
 
30
            bottom: parent.bottom
 
31
            left: parent.left
 
32
        }
 
33
        width: parent.width / 2
 
34
        backgroundColor: tabContour.backgroundColor
 
35
        contourColor: tabContour.contourColor
 
36
        outsideColor: tabContour.outsideColor
 
37
    }
 
38
 
 
39
    TabContourHalf {
 
40
        anchors {
 
41
            top: parent.top
 
42
            bottom: parent.bottom
 
43
            right: parent.right
 
44
        }
 
45
        width: parent.width / 2
 
46
        transform: Scale { origin.x: width/4; origin.y: 0; xScale: -1.0}
 
47
        
 
48
        backgroundColor: tabContour.backgroundColor
 
49
        contourColor: tabContour.contourColor
 
50
        outsideColor: tabContour.outsideColor
 
51
    }
 
52
}