You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
twin-style-crystal/client/crystalbutton.h

75 lines
2.5 KiB

/***************************************************************************
* Copyright (C) 2006 by Sascha Hlusiak *
* Spam84@gmx.de *
* *
* 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 <tqbutton.h>
class CrystalClient;
class ButtonImage;
class CrystalButton : public TQButton
{
TQ_OBJECT
public:
CrystalButton(CrystalClient *parent=0, const char *name=0,
const TQString &tip=NULL,
ButtonType type=ButtonHelp,
ButtonImage *vimage=NULL);
virtual ~CrystalButton();
void setBitmap(ButtonImage *newimage);
TQSize 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(TQEvent *e);
void leaveEvent(TQEvent *e);
void mousePressEvent(TQMouseEvent *e);
void mouseReleaseEvent(TQMouseEvent *e);
void drawButton(TQPainter *painter);
void drawMenuImage(TQPainter *painter, TQRect r);
int buttonSizeH() const;
int buttonSizeV() const;
private slots:
void animate();
private:
TQTimer animation_timer;
bool first,last;
bool hover;
float animation;
CrystalClient *client_;
ButtonType type_;
ButtonImage *image;
int lastmouse_;
};
#endif