~ubuntu-branches/ubuntu/trusty/fritzing/trusty-proposed

« back to all changes in this revision

Viewing changes to src/utils/abstractimagebutton.h

  • Committer: Package Import Robot
  • Author(s): Enrique Hernández Bello
  • Date: 2012-11-11 21:38:56 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20121111213856-0825ywdrtdcshl91
Tags: 0.7.10b-1
* New upstream version. Closes: #661495, #692998
* Removed useless patches.
* Removed SetupAPI.lib from sourceless files.
* Skip dfsg tarball creation if there are no sourceless files.
* Added libqt4-sql-sqlite to dependencies. Thanks to Tom Hummel <tom@bluespice.org>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************
2
 
 
3
 
Part of the Fritzing project - http://fritzing.org
4
 
Copyright (c) 2007-2010 Fachhochschule Potsdam - http://fh-potsdam.de
5
 
 
6
 
Fritzing is free software: you can redistribute it and/or modify
7
 
it under the terms of the GNU General Public License as published by
8
 
the Free Software Foundation, either version 3 of the License, or
9
 
(at your option) any later version.
10
 
 
11
 
Fritzing 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 Fritzing.  If not, see <http://www.gnu.org/licenses/>.
18
 
 
19
 
********************************************************************
20
 
 
21
 
$Revision: 4183 $:
22
 
$Author: cohen@irascible.com $:
23
 
$Date: 2010-05-06 22:30:19 +0200 (Thu, 06 May 2010) $
24
 
 
25
 
********************************************************************/
26
 
 
27
 
#ifndef ABSTRACTIMAGEBUTTON_H_
28
 
#define ABSTRACTIMAGEBUTTON_H_
29
 
 
30
 
#include <QLabel>
31
 
 
32
 
#include "abstractstatesbutton.h"
33
 
 
34
 
class AbstractImageButton : public QLabel, public AbstractStatesButton {
35
 
        Q_OBJECT
36
 
        public:
37
 
                AbstractImageButton(QWidget *parent=0)
38
 
                        : QLabel(parent)
39
 
                {
40
 
                };
41
 
                virtual ~AbstractImageButton() {}
42
 
 
43
 
        signals:
44
 
                void clicked();
45
 
 
46
 
        protected:
47
 
                virtual QString imagePrefix() = 0;
48
 
 
49
 
                void setImage(const QPixmap & pixmap) {
50
 
                        setPixmap(pixmap);
51
 
                }
52
 
 
53
 
                void mousePressEvent(QMouseEvent * event) {
54
 
                        setPressedIcon();
55
 
                        QLabel::mousePressEvent(event);
56
 
                }
57
 
 
58
 
                void mouseReleaseEvent(QMouseEvent * event) {
59
 
                        if(isEnabled()) {
60
 
                                emit clicked();
61
 
                                setEnabledIcon();
62
 
                        }
63
 
                        QLabel::mouseReleaseEvent(event);
64
 
                }
65
 
};
66
 
 
67
 
#endif /* ABSTRACTIMAGEBUTTON_H_ */