~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to installer/ClickableLabel.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-03-24 23:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: package-import@ubuntu.com-20150324230635-nvt7aq7kqvaxq36e
Tags: upstream-5.2.2-1
ImportĀ upstreamĀ versionĀ 5.2.2-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2010 by Daniel Nicoletti                           *
 
3
 *   dantti85-pk@yahoo.com.br                                              *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; see the file COPYING. If not, write to       *
 
17
 *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
 
18
 *   Boston, MA 02110-1301, USA.                                           *
 
19
 ***************************************************************************/
 
20
 
 
21
#include "ClickableLabel.h"
 
22
 
 
23
#include <QMouseEvent>
 
24
 
 
25
ClickableLabel::ClickableLabel(QWidget *parent, Qt::WindowFlags f)
 
26
 : QLabel(parent, f)
 
27
{
 
28
}
 
29
 
 
30
 
 
31
void ClickableLabel::mousePressEvent(QMouseEvent *event)
 
32
{
 
33
    if (cursor().shape() == Qt::PointingHandCursor) {
 
34
        emit clicked();
 
35
        event->accept();
 
36
    } else {
 
37
        QLabel::mousePressEvent(event);
 
38
    }
 
39
}
 
40
 
 
41
#include "ClickableLabel.moc"