~josephjamesmills/mythbuntu/mythtv-qml

« back to all changes in this revision

Viewing changes to programs/build-Mythbuntu-QML-Desktop-Debug/qml/Mythbuntu-QML/themes/Mythbuntu/Recordings/TypeOfRecordingModel.qml

  • Committer: Joseph Mills
  • Date: 2013-07-10 17:59:50 UTC
  • Revision ID: josephjamesmills@gmail.com-20130710175950-3xye623izda9ro1b
autopush for help with zeroconf 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
ListModel {
 
3
    ListElement {
 
4
         text: "Use Default Profile"
 
5
       type:"not"
 
6
     }
 
7
     ListElement {
 
8
         text: "Record only this showing"
 
9
           type: "single"
 
10
     }
 
11
     ListElement {
 
12
         text: "Record Every Time"
 
13
        type: "all"
 
14
     }
 
15
     ListElement {
 
16
         text: "Record Daily in this Time Slot"
 
17
         type: "daily"
 
18
     }
 
19
     ListElement {
 
20
         text:"Record Weekly in this Time Slot"
 
21
         type: "weekly"
 
22
     }
 
23
}