123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /**
- * Copyright © 2010 Digia Plc
- * Copyright © 2010 Nokia Corporation
- *
- * All rights reserved.
- *
- * Nokia and Nokia Connecting People are registered trademarks of
- * Nokia Corporation.
- * Java and all Java-based marks are trademarks or registered
- * trademarks of
- * Sun Microsystems, Inc. Other product and company names
- * mentioned herein may be
- * trademarks or trade names of their respective owners.
- *
- *
- * Subject to the conditions below, you may, without charge:
- *
- * · Use, copy, modify and/or merge copies of this software and
- * associated documentation files (the "Software")
- *
- * · Publish, distribute, sub-licence and/or sell new software
- * derived from or incorporating the Software.
- *
- *
- * This file, unmodified, shall be included with all copies or
- * substantial portions
- * of the Software that are distributed in source code form.
- *
- * The Software cannot constitute the primary value of any new
- * software derived
- * from or incorporating the Software.
- *
- * Any person dealing with the Software shall not misrepresent
- * the source of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
- * KIND, EXPRESS OR IMPLIED,
- * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A
- * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE
- * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- import Qt 4.7
- ListModel {
- id: model
- ListElement {
- artist: "Kraftwerk"
- album: "Tour De France"
- track: "Tour De France"
- length: 180
- year: 2010
- cover: "images/cover1.jpg"
- label: "Tour De France"
- value:"0"
- selected: false
- }
- ListElement {
- artist: "Kanye West"
- album: "Graduation"
- track: "Good Morning"
- length: 195
- year: 2007
- cover: "images/cover2.jpg"
- label: "Good Morning"
- value:"1"
- selected: false
- }
- ListElement {
- artist: "Keane"
- album: "Under The Iron Sea"
- track: "Is It Any Wonder?"
- length: 186
- year: 2006
- cover: "images/cover3.jpg"
- label: "Is It Any Wonder?"
- value:"2"
- selected: false
- }
- ListElement {
- artist: "Pink Floyd"
- album: "The Dark Side Of The Moon"
- track: "Time"
- length: 426
- year: 1973
- cover: "images/cover4.jpg"
- label: "Time"
- value:"3"
- selected: false
- }
- ListElement {
- artist: "The Beatles"
- album: "Abbey Road"
- track: "Here Comes the Sun"
- length: 186
- year: 1969
- cover: "images/cover5.jpg"
- label: "Here Comes the Sun"
- value:"4"
- selected: false
- }
- ListElement {
- artist: "Efterklang"
- album: "Under Giant Trees"
- track: "Falling Horses"
- length: 432
- year: 2007
- cover: "images/cover6.jpg"
- label: "Falling Horses"
- value:"5"
- selected: false
- }
- ListElement {
- artist: "The Autumn Film"
- album: "The Grey"
- track: "Sleep"
- length: 295
- year: 2010
- cover: "images/cover7.jpg"
- label: "Sleep"
- value:"6"
- selected: false
- }
- ListElement {
- artist: "Muse"
- album: "Black Holes & Revelations"
- track: "Knights of Cydonia"
- length: 366
- year: 2010
- cover: "images/cover8.jpg"
- label: "Knights of Cydonia"
- value:"7"
- selected: false
- }
- }
|