1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-02 13:05:08 +00:00
transmission/qt/IconToolButton.h
2016-09-02 23:10:15 +03:00

27 lines
460 B
C++

/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
#include <QToolButton>
class IconToolButton: public QToolButton
{
Q_OBJECT
public:
IconToolButton (QWidget * parent = nullptr);
// QWidget
virtual QSize sizeHint () const;
protected:
// QWidget
virtual void paintEvent (QPaintEvent * event);
};