kdeplasma-addons: remove now unused source files

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-27 15:25:27 +03:00
parent ebfdcdee1c
commit 2258e72c20
4 changed files with 1 additions and 106 deletions

View file

@ -1,5 +1,4 @@
set(krunner_audioplayercontrol_SRCS
imageiconengine.cpp
audioplayercontrolrunner.cpp
)
@ -15,7 +14,7 @@ target_link_libraries(kcm_krunner_audioplayercontrol
${KDE4_KCMUTILS_LIBS}
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
)
)
kde4_add_plugin(krunner_audioplayercontrol ${krunner_audioplayercontrol_SRCS})
target_link_libraries(krunner_audioplayercontrol ${KDE4_KIO_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_PLASMA_LIBS})

View file

@ -19,7 +19,6 @@
*/
#include "audioplayercontrolrunner.h"
#include "imageiconengine.h"
#include "audioplayercontrolconfigkeys.h"
#include <QtCore/QElapsedTimer>

View file

@ -1,64 +0,0 @@
/*
* Copyright (C) 2009 Christoph Feck <christoph@maxiom.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2 as
* published by the Free Software Foundation
*
* 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 Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "imageiconengine.h"
#include <QtGui/QApplication>
#include <QtGui/QPainter>
#include <QtGui/QStyle>
#include <QtGui/QStyleOption>
ImageIconEngine::ImageIconEngine(const QImage &image)
: m_image(image)
{
}
ImageIconEngine::~ImageIconEngine()
{
}
QSize ImageIconEngine::actualSize(const QSize &size, QIcon::Mode mode, QIcon::State state)
{
Q_UNUSED(mode);
Q_UNUSED(state);
return size;
}
void ImageIconEngine::paint(QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state)
{
painter->fillRect(rect, Qt::transparent);
QPixmap p = pixmap(rect.size(), mode, state);
QRect r = p.rect();
r.moveCenter(rect.center());
painter->drawPixmap(r, p);
}
QPixmap ImageIconEngine::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state)
{
Q_UNUSED(state);
QImage image = m_image;
if (size.isValid() && size != image.size()) {
image = image.scaled(size, Qt::KeepAspectRatio, Qt::SmoothTransformation);
}
QStyleOption opt;
return QApplication::style()->generatedIconPixmap(mode, QPixmap::fromImage(image), &opt);
}

View file

@ -1,39 +0,0 @@
/*
* Copyright (C) 2009 Christoph Feck <christoph@maxiom.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2 as
* published by the Free Software Foundation
*
* 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 Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef IMAGEICONENGINE_H
#define IMAGEICONENGINE_H
#include <QtGui/qiconengine.h>
#include <QtGui/QIcon>
class ImageIconEngine : public QIconEngineV2
{
public:
ImageIconEngine(const QImage &image);
~ImageIconEngine();
QSize actualSize(const QSize &size, QIcon::Mode mode, QIcon::State state);
void paint(QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state);
QPixmap pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state);
private:
QImage m_image;
};
#endif