~aaronp/software-center/tests

« back to all changes in this revision

Viewing changes to softwarecenter/ui/qml/Frame.qml

  • Committer: Aaron Peachey
  • Date: 2011-06-20 09:50:42 UTC
  • mfrom: (1805.10.18 software-center)
  • Revision ID: alpeachey@gmail.com-20110620095042-a5s30o4vtx9l9fgr
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2011 Canonical Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Olivier Tilloy <olivier@tilloy.net>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
import QtQuick 1.0
 
21
 
 
22
FocusScope {
 
23
    signal shown
 
24
    signal hidden
 
25
    property alias duration: xAnimation.duration
 
26
    property alias running: xAnimation.running
 
27
    Behavior on x {
 
28
        NumberAnimation { id: xAnimation }
 
29
    }
 
30
    // Changing the 'visible' property badly messes with the active focus.
 
31
    // Changing the opacity preserves the focus, which is the desired behaviour.
 
32
    opacity: (x > -width) && (x < parent.width) ? 1.0 : 0.0
 
33
    onOpacityChanged: if (opacity == 0.0) hidden()
 
34
}
 
35