2003-08-29 22:49:03 +00:00
|
|
|
/* Plastik KWin window decoration
|
2005-03-24 16:56:58 +00:00
|
|
|
Copyright (C) 2003-2005 Sandro Giessl <sandro@giessl.com>
|
2003-08-29 22:49:03 +00:00
|
|
|
|
|
|
|
based on the window decoration "Web":
|
|
|
|
Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org>
|
|
|
|
|
|
|
|
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
|
2005-10-05 08:44:32 +00:00
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2005-07-04 19:02:09 +00:00
|
|
|
Boston, MA 02110-1301, USA.
|
2003-08-29 22:49:03 +00:00
|
|
|
*/
|
|
|
|
|
2003-09-17 18:43:17 +00:00
|
|
|
#ifndef PLASTIKBUTTON_H
|
|
|
|
#define PLASTIKBUTTON_H
|
2003-08-29 22:49:03 +00:00
|
|
|
|
2006-05-13 16:33:18 +00:00
|
|
|
#include <QImage>
|
2003-08-29 22:49:03 +00:00
|
|
|
#include "plastik.h"
|
|
|
|
|
2005-03-11 20:14:04 +00:00
|
|
|
#include <kcommondecoration.h>
|
|
|
|
|
2003-08-29 22:49:03 +00:00
|
|
|
class QTimer;
|
|
|
|
|
2003-09-17 18:43:17 +00:00
|
|
|
namespace KWinPlastik {
|
2003-08-29 22:49:03 +00:00
|
|
|
|
|
|
|
class PlastikClient;
|
|
|
|
|
2005-03-11 20:14:04 +00:00
|
|
|
class PlastikButton : public KCommonDecorationButton
|
2003-08-29 22:49:03 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2006-03-04 22:27:27 +00:00
|
|
|
PlastikButton(ButtonType type, PlastikClient *parent);
|
2003-08-29 22:49:03 +00:00
|
|
|
~PlastikButton();
|
|
|
|
|
2005-03-14 09:39:09 +00:00
|
|
|
void reset(unsigned long changed);
|
2003-08-29 22:49:03 +00:00
|
|
|
PlastikClient * client() { return m_client; }
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void animate();
|
|
|
|
|
2005-08-17 09:15:59 +00:00
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
|
2003-08-29 22:49:03 +00:00
|
|
|
private:
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
void drawButton(QPainter *painter);
|
|
|
|
|
|
|
|
private:
|
|
|
|
PlastikClient *m_client;
|
2005-03-19 16:16:33 +00:00
|
|
|
ButtonIcon m_iconType;
|
2003-08-29 22:49:03 +00:00
|
|
|
bool hover;
|
|
|
|
|
|
|
|
QTimer *animTmr;
|
|
|
|
uint animProgress;
|
|
|
|
};
|
|
|
|
|
2005-03-19 16:16:33 +00:00
|
|
|
/**
|
|
|
|
* This class creates bitmaps which can be used as icons on buttons. The icons
|
|
|
|
* are "hardcoded".
|
|
|
|
* Over the previous "Gimp->xpm->QImage->recolor->SmoothScale->QPixmap" solution
|
|
|
|
* it has the important advantage that icons are more scalable and at the same
|
|
|
|
* time sharp and not blurred.
|
|
|
|
*/
|
|
|
|
class IconEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static QBitmap icon(ButtonIcon icon, int size);
|
|
|
|
|
|
|
|
private:
|
|
|
|
enum Object {
|
|
|
|
HorizontalLine,
|
|
|
|
VerticalLine,
|
|
|
|
DiagonalLine,
|
|
|
|
CrossDiagonalLine
|
|
|
|
};
|
|
|
|
|
|
|
|
static void drawObject(QPainter &p, Object object, int x, int y, int length, int lineWidth);
|
|
|
|
};
|
|
|
|
|
2003-09-17 18:43:17 +00:00
|
|
|
} // namespace KWinPlastik
|
2003-08-29 22:49:03 +00:00
|
|
|
|
2003-09-17 18:43:17 +00:00
|
|
|
#endif // PLASTIKBUTTON_H
|