2009-04-15 01:59:54 +00:00
|
|
|
/*
|
2010-08-01 20:36:13 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2009-04-15 01:59:54 +00:00
|
|
|
*
|
2010-08-01 20:36:13 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
2009-04-15 01:59:54 +00:00
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-15 01:59:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTR_IconPushButton_H
|
|
|
|
#define QTR_IconPushButton_H
|
|
|
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
class QIcon;
|
|
|
|
|
|
|
|
class TrIconPushButton: public QPushButton
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
TrIconPushButton( QWidget * parent = 0 );
|
|
|
|
TrIconPushButton( const QIcon&, QWidget * parent = 0 );
|
|
|
|
virtual ~TrIconPushButton( ) { }
|
|
|
|
QSize sizeHint () const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent( QPaintEvent * event );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTR_IconPushButton_H
|