- Add an extra cover-size setting (Automatic) which will adjust the covers in library and albums view based upon font size.
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2012 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
* ----
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef ACTIONITEMDELEGATE_H
|
|
#define ACTIONITEMDELEGATE_H
|
|
|
|
#include <QtGui/QStyledItemDelegate>
|
|
|
|
class QAction;
|
|
|
|
class ActionItemDelegate : public QStyledItemDelegate
|
|
{
|
|
public:
|
|
static void setup();
|
|
|
|
ActionItemDelegate(QObject *p, QAction *a1, QAction *a2, QAction *t, int actionLevel)
|
|
: QStyledItemDelegate(p)
|
|
, act1(a1)
|
|
, act2(a2)
|
|
, toggle(t)
|
|
, actLevel(actionLevel) {
|
|
}
|
|
|
|
virtual ~ActionItemDelegate() {
|
|
}
|
|
|
|
static int constBorder;
|
|
static int constActionBorder;
|
|
static int constActionIconSize;
|
|
|
|
static QRect calcActionRect(bool rtl, bool iconMode, const QRect &rect);
|
|
static void adjustActionRect(bool rtl, bool iconMode, QRect &rect);
|
|
static bool hasActions(const QModelIndex &index, int actLevel);
|
|
|
|
void drawIcons(QPainter *painter, const QRect &r, bool mouseOver, bool rtl, bool iconMode, const QModelIndex &index) const;
|
|
|
|
QAction *act1;
|
|
QAction *act2;
|
|
QAction *toggle;
|
|
int actLevel;
|
|
};
|
|
|
|
#endif
|
|
|