mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-05 05:37:29 +02:00
* Removed obsolete UnstyledFrame.
This commit is contained in:
@@ -70,7 +70,6 @@ SET( tomahawkSourcesGui ${tomahawkSourcesGui}
|
|||||||
widgets/SlideSwitchButton.cpp
|
widgets/SlideSwitchButton.cpp
|
||||||
widgets/SocialWidget.cpp
|
widgets/SocialWidget.cpp
|
||||||
widgets/SplashWidget.cpp
|
widgets/SplashWidget.cpp
|
||||||
widgets/UnstyledFrame.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
SET( tomahawkUI ${tomahawkUI}
|
SET( tomahawkUI ${tomahawkUI}
|
||||||
|
@@ -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();
|
|
||||||
}
|
|
@@ -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
|
|
Reference in New Issue
Block a user