mirror of
https://github.com/transmission/transmission
synced 2024-12-28 10:38:45 +00:00
dee7bc9b6a
Among other things, * fix turtle icons size (20x14 -> 16x16) * use QIcon states instead of changing the turtle icon ourselves each time (unchecked - off, checked - on) * make speed limit action in tray menu checkable * simplify status bar buttons drawing and use QToolButton instead of QPushButton
28 lines
662 B
C++
28 lines
662 B
C++
/*
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU Public License v2 or v3 licenses,
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <QStyleOption>
|
|
#include <QStyleOptionToolButton>
|
|
#include <QStylePainter>
|
|
|
|
#include "tricontoolbutton.h"
|
|
|
|
TrIconToolButton::TrIconToolButton (QWidget * parent):
|
|
QToolButton (parent)
|
|
{
|
|
}
|
|
|
|
void TrIconToolButton::paintEvent (QPaintEvent * /*event*/)
|
|
{
|
|
QStylePainter painter(this);
|
|
QStyleOptionToolButton option;
|
|
initStyleOption (&option);
|
|
option.features &= ~QStyleOptionToolButton::HasMenu;
|
|
painter.drawComplexControl(QStyle::CC_ToolButton, option);
|
|
}
|