~ubuntu-branches/debian/stretch/apper/stretch

« back to all changes in this revision

Viewing changes to ApperKCM/ClickableLabel.cpp

  • Committer: Package Import Robot
  • Author(s): Matthias Klumpp
  • Date: 2011-10-06 17:54:49 UTC
  • Revision ID: package-import@ubuntu.com-20111006175449-mirjm0uszjmbj4tj
Tags: upstream-0.7.0
ImportĀ upstreamĀ versionĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2010 by Daniel Nicoletti                           *
 
3
 *   dantti12@gmail.com                                                    *
 
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"