add .gitignore
[lmms/mlankhorst.git] / include / tool_button.h
blob3a908f97e148d6d52fe5de40be8219c9ee4ca9ce
1 /*
2 * tool_button.h - declaration of class toolButton
4 * Copyright (c) 2005-2006 Tobias Doerffel <tobydox/at/users.sourceforge.net>
5 *
6 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program (see COPYING); if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301 USA.
26 #ifndef _TOOL_BUTTON_H
27 #define _TOOL_BUTTON_H
29 #include <QtGui/QToolButton>
30 #include <QtGui/QColor>
33 class toolButton : public QToolButton
35 Q_OBJECT
36 public:
37 toolButton( const QPixmap & _pixmap, const QString & _tooltip,
38 QObject * _receiver, const char * _slot,
39 QWidget * _parent );
41 inline toolButton( QWidget * _parent ) :
42 QToolButton( _parent ),
43 m_colorStandard( s_stdColor ),
44 m_colorHighlighted( s_hlColor )
46 // setup colors
47 leaveEvent( NULL );
50 virtual ~toolButton();
52 inline void setStandardColor( const QColor & _color )
54 m_colorStandard = _color;
57 inline void setHighlightedColor( const QColor & _color )
59 m_colorHighlighted = _color;
63 protected:
64 virtual void enterEvent( QEvent * _ev );
65 virtual void leaveEvent( QEvent * _ev );
68 private slots:
69 void toggledBool( bool _on );
72 private:
73 static const QColor s_stdColor;
74 static const QColor s_hlColor;
76 QColor m_colorStandard;
77 QColor m_colorHighlighted;
79 } ;
81 #endif