rewrote Button and ToggleButton to use the new PixmapButton as baseclass.

This commit is contained in:
Thomas Frauendorfer 2008-01-27 07:58:02 +01:00
parent e2fdb4e009
commit efa16e9236
15 changed files with 115 additions and 146 deletions

View file

@ -1,4 +1,18 @@
/**
* This file is a part of Promoe, an XMMS2 Client
*
* Copyright (C) 2008 Thomas Frauendorfer
*
* 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.
*/
#include "pixmapbutton.h"
@ -7,14 +21,6 @@
#include <QPaintEvent>
#include <QPixmap>
PixmapButton::PixmapButton (QWidget *parent) : QAbstractButton (parent)
{
}
PixmapButton::~PixmapButton ()
{
}
void
PixmapButton::paintEvent( QPaintEvent * event )
{

View file

@ -26,8 +26,8 @@ class PixmapButton : public QAbstractButton {
Q_OBJECT
public:
PixmapButton (QWidget *parent);
~PixmapButton ();
PixmapButton (QWidget *parent) : QAbstractButton (parent) {}
~PixmapButton () {};
protected:
void paintEvent ( QPaintEvent * event );