1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-18 23:17:59 +01:00

* Removed obsolete UnstyledFrame.

This commit is contained in:
Christian Muehlhaeuser 2014-08-25 22:15:37 +02:00
parent 290d30ce20
commit eab5be1e7c
3 changed files with 0 additions and 90 deletions

View File

@ -70,7 +70,6 @@ SET( tomahawkSourcesGui ${tomahawkSourcesGui}
widgets/SlideSwitchButton.cpp
widgets/SocialWidget.cpp
widgets/SplashWidget.cpp
widgets/UnstyledFrame.cpp
)
SET( tomahawkUI ${tomahawkUI}

View File

@ -1,45 +0,0 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2012 Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UnstyledFrame.h"
#include <QPainter>
UnstyledFrame::UnstyledFrame( QWidget* parent )
: QWidget( parent )
{
m_frameColor = Qt::black;
}
void
UnstyledFrame::paintEvent( QPaintEvent* event )
{
QWidget::paintEvent( event );
QPainter p;
p.begin( this );
p.setPen( m_frameColor );
p.drawRect( contentsRect() );
p.end();
}
void UnstyledFrame::setFrameColor(const QColor& color)
{
m_frameColor = color;
repaint();
}

View File

@ -1,44 +0,0 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2012 Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UNSTYLEDFRAME_H
#define UNSTYLEDFRAME_H
#include <QWidget>
/**
* @brief The UnstyledFrame class is just a QWidget with an overridden paintEvent
* to provide a *really* unstyled frame to be used with styles that don't obey
* QFrame::Shape.
*/
class UnstyledFrame : public QWidget
{
Q_OBJECT
public:
explicit UnstyledFrame( QWidget* parent = 0 );
void setFrameColor( const QColor& color );
protected:
void paintEvent( QPaintEvent* event );
private:
QColor m_frameColor;
};
#endif // UNSTYLEDFRAME_H