~josephjamesmills/+junk/americanFootball_api_stuff

« back to all changes in this revision

Viewing changes to NNews.qml

  • Committer: Joseph Mills
  • Date: 2013-12-15 15:25:28 UTC
  • Revision ID: josephjamesmills@gmail.com-20131215152528-vke40bcaabivhpm9
for dude to pull stuff out

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import QtQuick.Window 2.0
 
3
import QtQuick.Controls 1.0
 
4
import "Models/nfl.com"
 
5
TabView {
 
6
    id:frame
 
7
    anchors.fill: parent
 
8
    Tab {
 
9
        id: controlPage
 
10
        title: "Nfl.Com"
 
11
        ScoreStrip{
 
12
            id: scoreStrip
 
13
            w: Screen.width
 
14
            h: Screen.height    / 5
 
15
            cellHeight: h / 2
 
16
            cellWidth: w / 7
 
17
            backgroundColor: "#88C7C7C7"
 
18
        }
 
19
    }
 
20
    Tab {
 
21
        title: "Espn"
 
22
        GameVideo{
 
23
            id: gameVideo
 
24
            w: Screen.width
 
25
            h: Screen.height    / 3
 
26
            cellHeight: h
 
27
            cellWidth: w / 3
 
28
            backgroundColor: "#88C7C7C7"
 
29
        }
 
30
    }
 
31
    Tab {
 
32
        title: "Fanatsy"
 
33
        RecentNews{
 
34
            w: Screen.width
 
35
            h: Screen.height / 3
 
36
            cellHeight: h / 7
 
37
            cellWidth: w
 
38
            backgroundColor: "#88C7C7C7"
 
39
        }
 
40
    }
 
41
}
 
42