~mihirsoni/ubuntu-calendar-app/dateSelectNewEventTest

« back to all changes in this revision

Viewing changes to EventView.qml

  • Committer: Tarmac
  • Author(s): Frank Mertens
  • Date: 2013-04-01 23:47:20 UTC
  • mfrom: (12.1.3 eventview-merged)
  • Revision ID: tarmac-20130401234720-rlokamymmmfw61t6
Added the NewEvent component from the EventAPI_EventView branch.

Approved by Ubuntu Phone Apps Jenkins Bot, Kunal Parmar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
    signal compress()
16
16
    signal expand()
 
17
    signal newEvent()
17
18
 
18
19
    readonly property real visibleHeight: parent.height - y
19
20
 
74
75
 
75
76
        onExpand: eventView.expand()
76
77
        onCompress: eventView.compress()
 
78
        onNewEvent: eventView.newEvent()
77
79
    }
78
80
}