Modified listviewscreen.
[situare] / src / ui / infotab.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include "infotab.h"
23 #include "buttonitem.h"
24 #include "mainwindow.h"
25 #include <QDebug>
26
27 const int RGB_R = 152;
28 const int RGB_G = 152;
29 const int RGB_B = 152;
30 const int GRADIENT_START_R = 49;
31 const int GRADIENT_START_G = 52;
32 const int GRADIENT_START_B = 57;
33 const int GRADIENT_STOP_R = 82;
34 const int GRADIENT_STOP_G = 73;
35 const int GRADIENT_STOP_B = 74;
36 const int ROUNDNESS = 9;
37 const int SIZE_X = 280;
38 const int SIZE_Y = 280;
39 const int BIG_FONT = 18;
40 const int SMALL_FONT = 13;
41 const int RECT_WIDTH_OFFSET = 2;
42 const int RECT_HEIGHT_OFFSET = 2;
43
44 InfoTab::InfoTab(QWidget *parent)
45     : QWidget(parent, Qt::FramelessWindowHint)
46 {
47     widget = new QWidget(this);
48     verticalLayout = new QVBoxLayout(widget);
49     horizontalLayout = new QHBoxLayout(widget);
50     m_layout = new QGridLayout(widget);
51     situUser = new SituareUser(widget);
52     situUser->setAlignment(Qt::AlignHCenter|Qt::AlignVCenter);
53     situUser->setMargin(1);
54
55     //Tex color settings
56     QPalette textPalette;
57     QColor textColor(RGB_R,RGB_G,RGB_B);
58     textPalette.setColor(QPalette::WindowText,textColor);
59     m_userNameLabel = new QLabel(widget);
60     m_userNameLabel->setFont(QFont( "Nokia Sans", BIG_FONT, QFont::Normal));
61
62     m_messageLabel = new QLabel(widget);
63     m_messageLabel->setFont(QFont( "Nokia Sans", SMALL_FONT, QFont::Normal));
64     m_messageLabel->setPalette(textPalette);
65
66     m_addressLabel = new QLabel(widget);
67     m_addressLabel->setFont(QFont( "Nokia Sans", SMALL_FONT, QFont::Normal));
68     m_addressLabel->setPalette(textPalette);
69
70     m_timeLabel = new QLabel(widget);
71     m_timeLabel->setFont(QFont( "Nokia Sans", 13, QFont::Normal));
72     m_timeLabel->setPalette(textPalette);
73
74     m_clockLabel = new QLabel(widget);
75     m_clockLabel->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter);
76     m_envelopeLabel = new QLabel(widget);
77     m_envelopeLabel->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter);
78     m_compassLabel = new QLabel(widget);
79     m_compassLabel->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter);
80     ButtonItem *updateFriendsButton = new ButtonItem(widget);
81     ButtonItem *updateStatusMessageButton = new ButtonItem(widget);
82
83     updateFriendsButton->setIcon(QIcon(QPixmap(":/res/images/refresh.png")));
84     updateStatusMessageButton->setIcon(QIcon(QPixmap(":/res/images/send_position.png")));
85
86     m_clockLabel->setPixmap(QPixmap(":/res/images/clock.png"));
87     m_envelopeLabel->setPixmap(QPixmap(":/res/images/envelope.png"));
88     m_compassLabel->setPixmap(QPixmap(":/res/images/compass.png"));
89     m_layout->addWidget(situUser,0,0,1,2,Qt::AlignHCenter);
90     m_layout->addWidget(m_userNameLabel,1,1,1,2);
91     m_layout->addWidget(m_clockLabel,3,0,1,1);
92     m_layout->addWidget(m_envelopeLabel,2,0,1,1);
93     m_layout->addWidget(m_compassLabel,4,0,1,1);
94     m_layout->addWidget(m_timeLabel,3,1,1,1);
95     m_layout->addWidget(m_messageLabel,2,1,1,1);
96     m_layout->addWidget(m_addressLabel,4,1,1,1);
97
98     verticalLayout->addLayout(m_layout);
99     horizontalLayout->setSpacing(0);
100     horizontalLayout->addWidget(updateFriendsButton);
101     horizontalLayout->addWidget(updateStatusMessageButton);
102
103     verticalLayout->addLayout(horizontalLayout);
104
105     connect(updateStatusMessageButton,SIGNAL(clicked()),this,SLOT(messageUpdate()));
106     connect(updateFriendsButton,SIGNAL(clicked()),this,SLOT(updateFriendsStatus()));
107 }
108
109 void InfoTab::paintEvent(QPaintEvent *aPaintEvent)
110 {
111     Q_UNUSED(aPaintEvent);
112
113     QRect widgetRect = this->rect();
114
115     //Gradient
116     QLinearGradient linearGrad(QPointF(widgetRect.height(), widgetRect.width()/2),
117                                QPointF(widgetRect.width()/2,0));
118     linearGrad.setColorAt(0, QColor::fromRgb(GRADIENT_START_R,GRADIENT_START_G,GRADIENT_START_B));
119     linearGrad.setColorAt(1, QColor::fromRgb(GRADIENT_STOP_R,GRADIENT_STOP_G,GRADIENT_STOP_B));
120
121     //Look and feel settings
122     QPalette qpalette;
123     QBrush brush(linearGrad);
124     qpalette.setBrush(QPalette::Window,brush);
125     setPalette(qpalette);
126
127     QPainter painter(this);
128
129     painter.save();
130
131     painter.setRenderHint(QPainter::Antialiasing);
132     QPainterPath roundedRect;
133     roundedRect.addRoundedRect(1,1,widgetRect.width()-RECT_WIDTH_OFFSET,
134                                widgetRect.height()-RECT_HEIGHT_OFFSET,ROUNDNESS,ROUNDNESS);
135
136     painter.setClipPath(roundedRect);
137     QRegion maskRegion = painter.clipRegion();
138
139     setMask(maskRegion);
140
141     painter.fillPath(roundedRect,QBrush(brush));
142     painter.restore();
143 }
144
145 QSize InfoTab::sizeHint() const
146 {
147    QSize size(SIZE_X,SIZE_Y);
148    return size;
149 }
150
151 void InfoTab::setAvatar(const QPixmap &avat)
152 {
153     m_avatar = avat;
154     situUser->setPixmap(m_avatar);
155 }
156
157 void InfoTab::setUserName(const QString &usernam)
158 {
159     if(m_userName == usernam)
160       return;
161     m_userName = usernam;
162     m_userNameLabel->setText(m_userName);
163 }
164
165 void InfoTab::setMessageText(const QString &text)
166 {
167     if(m_messageText == text)
168       return;
169     m_messageText = text;
170     m_messageLabel->setText(m_messageText);
171 }
172
173 void InfoTab::setAddress(const QString &addr)
174 {
175     if(m_address == addr)
176       return;
177     m_address = addr;
178     m_addressLabel->setText(m_address);
179 }
180
181 void InfoTab::setTime(const QString &tim)
182 {
183     if(m_time == tim)
184       return;
185     m_time = tim;
186     m_timeLabel->setText(m_time);
187 }
188
189 void InfoTab::messageUpdate()
190 {
191     emit launchMessageUpdate();
192     qDebug() << __PRETTY_FUNCTION__;
193 }
194
195 void InfoTab::updateFriendsStatus()
196 {
197     emit launchUpdateFriendsStatus();
198     qDebug() << __PRETTY_FUNCTION__;
199 }