ea69bac27a02e21a989654d435b65a3d7da14f78
[profile/ivi/qtdeclarative.git] / examples / declarative / canvas / twitterfriends / twitter.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42 import "../contents"
43 import "cache.js" as TwitterUserCache
44 Item {
45     width:360
46     height:600
47     QtObject {
48         id:twitterManager
49         function getById(id) {
50             return TwitterUserCache.cache.getById(id);
51         }
52
53         function getByName(name) {
54             return TwitterUserCache.cache.getByName(name);
55         }
56
57         function createTwitterUser(canvas) {
58             return TwitterUserCache.createTwitterUser(canvas);
59         }
60     }
61     Rectangle {
62         id:inputContainer
63         width:parent.width
64         height:40
65         anchors.top : parent.top
66
67         TextInput {
68             id:inputName
69             anchors.fill:parent
70             font.pointSize : 20
71             opacity:1
72             color:"steelblue"
73             width:200
74             height:40
75             text: "Input your twitter name..."
76             selectByMouse:true
77             onAccepted : {canvas.twitterName = text; canvas.requestPaint();}
78         }
79     }
80     Canvas {
81       id:canvas
82       width:parent.width
83       anchors.top :inputContainer.bottom
84       anchors.bottom : parent.bottom
85       smooth:true
86       renderTarget:Canvas.Image
87       renderInThread:false
88
89       property bool layoutChanged:true
90       property string twitterName:""
91       property string twitterId:""
92       property bool loading:false
93
94       onLoadingChanged: requestPaint();
95       onWidthChanged: { layoutChanged = true; requestPaint();}
96       onHeightChanged:  { layoutChanged = true; requestPaint();}
97       onTwitterNameChanged: inputName.text = twitterName;
98       onImageLoaded:requestPaint();
99       onPaint: {
100       var ctx = canvas.getContext('2d');
101       ctx.reset();
102       ctx.fillStyle="black";
103       ctx.fillRect(0, 0, canvas.width, canvas.height);
104
105       if (canvas.twitterName != "" || canvas.twitterId != "") {
106           var user = canvas.twitterId ? TwitterUserCache.getById(canvas.twitterId) : TwitterUserCache.getByName(canvas.twitterName);
107           if (!user) {
108               user = TwitterUserCache.createTwitterUser(canvas);
109               user.hasFocus = true;
110               user.manager = twitterManager;
111               user.createByName(canvas.twitterName);
112               canvas.loading = true;
113           }
114
115           if (canvas.loading) {
116               ctx.font = "40px";
117               ctx.fillStyle = "steelblue";
118               ctx.fillText("Loading...", canvas.width/2 - 80, canvas.height/2);
119           } else {
120               user.show(ctx, layoutChanged);
121           }
122           layoutChanged = false;
123       }
124     }
125   }
126 }