summaryrefslogtreecommitdiffstats
path: root/client/crystalbutton.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 02:28:08 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 02:28:08 +0000
commitf9c5bc16e192997a25a9547b4173551bab70630a (patch)
treea701b520cf924c8588305b6e6fdd0748070bd542 /client/crystalbutton.h
downloadtwin-style-crystal-f9c5bc16e192997a25a9547b4173551bab70630a.tar.gz
twin-style-crystal-f9c5bc16e192997a25a9547b4173551bab70630a.zip
Added KDE3 version of kwin Crystal style
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kwin-style-crystal@1095345 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'client/crystalbutton.h')
-rw-r--r--client/crystalbutton.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/client/crystalbutton.h b/client/crystalbutton.h
new file mode 100644
index 0000000..c1f55c5
--- /dev/null
+++ b/client/crystalbutton.h
@@ -0,0 +1,73 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Sascha Hlusiak *
+ * *
+ * 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; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+
+
+#ifndef _CRYSTALBUTTON_INCLUDED_
+#define _CRYSTALBUTTON_INCLUDED_
+
+#include <qbutton.h>
+
+class CrystalClient;
+class ButtonImage;
+
+class CrystalButton : public QButton
+{
+ Q_OBJECT
+
+public:
+ CrystalButton(CrystalClient *parent=0, const char *name=0,
+ const QString &tip=NULL,
+ ButtonType type=ButtonHelp,
+ ButtonImage *vimage=NULL);
+ virtual ~CrystalButton();
+
+ void setBitmap(ButtonImage *newimage);
+ QSize sizeHint() const;
+ int lastMousePress() const { return lastmouse_; }
+ void reset() { repaint(false); }
+ void setFirstLast(bool vfirst,bool vlast) { first|=vfirst; last|=vlast; }
+ void resetSize(bool FullSize);
+private:
+ void enterEvent(QEvent *e);
+ void leaveEvent(QEvent *e);
+ void mousePressEvent(QMouseEvent *e);
+ void mouseReleaseEvent(QMouseEvent *e);
+ void drawButton(QPainter *painter);
+ void drawMenuImage(QPainter *painter, QRect r);
+
+ int buttonSizeH() const;
+ int buttonSizeV() const;
+
+private slots:
+ void animate();
+
+private:
+ QTimer animation_timer;
+ bool first,last;
+ bool hover;
+ float animation;
+ CrystalClient *client_;
+ ButtonType type_;
+ ButtonImage *image;
+ int lastmouse_;
+};
+
+#endif