~pkunal-parmar/ubuntu-calendar-app/Minor-Performance

« back to all changes in this revision

Viewing changes to TimeLineHeader.qml

  • Committer: Frank Mertens
  • Date: 2013-03-22 01:32:02 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: frank@cyblogic.de-20130322013202-19s6th508vgo971t
Added more complex test case in preparation for integration of the diary view.

To run the tests and load the test data run 'qmlscene calendarTest.qml' once.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013-2014 Canonical Ltd
3
 
 *
4
 
 * This file is part of Ubuntu Calendar App
5
 
 *
6
 
 * Ubuntu Calendar 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 Calendar 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.3
20
 
import Ubuntu.Components 1.1
21
 
import "ViewType.js" as ViewType
22
 
 
23
 
PathViewBase {
24
 
    id: header
25
 
 
26
 
    property int type: ViewType.ViewTypeWeek
27
 
 
28
 
    interactive: false
29
 
    model:3
30
 
 
31
 
    height: units.gu(4)
32
 
    width: parent.width
33
 
 
34
 
    property var date;
35
 
    property var currentDay;
36
 
 
37
 
    signal dateSelected(var date);
38
 
 
39
 
    delegate: TimeLineHeaderComponent{
40
 
        type: header.type
41
 
 
42
 
        isCurrentItem: index == header.currentIndex
43
 
        currentDay: header.currentDay
44
 
 
45
 
        width: parent.width
46
 
 
47
 
        startDay: date.addDays(7*header.indexType(index))
48
 
 
49
 
        onDateSelected: {
50
 
            header.dateSelected(date);
51
 
        }
52
 
    }
53
 
}
54