|
|
|
//
|
|
|
|
// C++ Implementation: k9menubutton
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
|
|
|
|
//
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
//
|
|
|
|
//
|
|
|
|
#include "k9menubutton.h"
|
|
|
|
#include <tqpainter.h>
|
|
|
|
#include <tqwmatrix.h>
|
|
|
|
#include <tqbitmap.h>
|
|
|
|
|
|
|
|
k9CanvasSprite::k9CanvasSprite (TQCanvasPixmapArray *a,TQCanvas *canvas,k9MenuButton *button) : TQCanvasSprite(a,canvas) {
|
|
|
|
m_button=button;
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9CanvasSprite::update() {
|
|
|
|
m_button->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
k9MenuButton* k9CanvasSprite::getButton() const {
|
|
|
|
return m_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::select(bool _value) {
|
|
|
|
/* if (_value) {
|
|
|
|
m_lt->show();
|
|
|
|
m_mt->show();
|
|
|
|
m_rt->show();
|
|
|
|
m_lm->show();
|
|
|
|
m_rm->show();
|
|
|
|
m_lb->show();
|
|
|
|
m_mb->show();
|
|
|
|
m_rb->show();
|
|
|
|
} else {
|
|
|
|
m_lt->hide();
|
|
|
|
m_mt->hide();
|
|
|
|
m_rt->hide();
|
|
|
|
m_lm->hide();
|
|
|
|
m_rm->hide();
|
|
|
|
m_lb->hide();
|
|
|
|
m_mb->hide();
|
|
|
|
m_rb->hide();
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::update() {
|
|
|
|
int x=m_sprite->x()-5;
|
|
|
|
int y=m_sprite->y()-5;
|
|
|
|
int w=m_width;
|
|
|
|
int h=m_height;
|
|
|
|
|
|
|
|
int count=m_canvas->allItems().count();
|
|
|
|
/*
|
|
|
|
m_lt->move(x,y);
|
|
|
|
m_lt->setZ(count--);
|
|
|
|
|
|
|
|
m_mt->move(x+w/2,y);
|
|
|
|
m_mt->setZ(count--);
|
|
|
|
|
|
|
|
m_rt->move(x+w,y);
|
|
|
|
m_rt->setZ(count--);
|
|
|
|
|
|
|
|
m_lm->move(x,y+h/2);
|
|
|
|
m_lm->setZ(count--);
|
|
|
|
|
|
|
|
m_rm->move(x+w,y+h/2);
|
|
|
|
m_rm->setZ(count--);
|
|
|
|
|
|
|
|
m_lb->move(x,y+h);
|
|
|
|
m_lb->setZ(count--);
|
|
|
|
|
|
|
|
m_mb->move(x+w/2,y+h);
|
|
|
|
m_mb->setZ(count--);
|
|
|
|
|
|
|
|
m_rb->move(x+w,y+h);
|
|
|
|
m_rb->setZ(count--);
|
|
|
|
*/
|
|
|
|
switch(m_textPosition) {
|
|
|
|
case RIGHT:
|
|
|
|
m_text->move(x+2+w,y+2+h/2-m_text->boundingRect().height()/2);
|
|
|
|
break;
|
|
|
|
case BOTTOM:
|
|
|
|
m_text->move(x+2+w/2 - m_text->boundingRect().width()/2,y+2+h);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_text->show();
|
|
|
|
m_text->setZ(count --);
|
|
|
|
|
|
|
|
m_sprite->setZ(count--);
|
|
|
|
emit sigsetLeft(getLeft());
|
|
|
|
emit sigsetTop(getTop());
|
|
|
|
emit sigsetWidth(getWidth());
|
|
|
|
emit sigsetHeight(getHeight());
|
|
|
|
}
|
|
|
|
|
|
|
|
k9MenuButton::k9MenuButton(TQCanvas *parent, const char *name)
|
|
|
|
: TQObject(parent, name),m_width(0),m_height(0)
|
|
|
|
{
|
|
|
|
m_canvas=parent;
|
|
|
|
m_sprite=NULL;
|
|
|
|
m_pixmap=NULL;
|
|
|
|
m_text=new TQCanvasText("",m_canvas);
|
|
|
|
m_text->setColor(TQt::yellow);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
k9MenuButton::~k9MenuButton()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setImage(const TQImage &_image) {
|
|
|
|
m_image=_image;
|
|
|
|
emit sigsetImage(this,_image);
|
|
|
|
loadImage();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setImage(const TQString &_fileName){
|
|
|
|
m_image.load(_fileName);
|
|
|
|
emit sigsetImage(this,m_image);
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::loadImage() {
|
|
|
|
TQImage tmp=m_image.smoothScale(m_width,m_height);
|
|
|
|
int x=0,y=0;
|
|
|
|
if (m_sprite) {
|
|
|
|
x=m_sprite->x();
|
|
|
|
y=m_sprite->y();
|
|
|
|
delete m_sprite;
|
|
|
|
}
|
|
|
|
TQPixmap pix;
|
|
|
|
pix.convertFromImage(tmp);
|
|
|
|
|
|
|
|
m_pixmap=new TQCanvasPixmap(pix,TQPoint(0,0));
|
|
|
|
|
|
|
|
|
|
|
|
m_pixmapArray.setImage(0,m_pixmap);
|
|
|
|
m_sprite = new k9CanvasSprite(&m_pixmapArray,m_canvas,this);
|
|
|
|
m_sprite->move(x,y);
|
|
|
|
m_sprite->show();
|
|
|
|
update();
|
|
|
|
m_canvas->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setWidth(int _value,bool _reload) {
|
|
|
|
m_width=_value;
|
|
|
|
emit sigsetWidth(_value);
|
|
|
|
if (_reload)
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
int k9MenuButton::getWidth() {
|
|
|
|
return m_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setHeight(int _value,bool _reload) {
|
|
|
|
m_height=_value;
|
|
|
|
emit sigsetHeight(_value);
|
|
|
|
if (_reload)
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
int k9MenuButton::getHeight() {
|
|
|
|
return m_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setTop(int _value,bool _reload) {
|
|
|
|
m_sprite->setY(_value);
|
|
|
|
emit sigsetTop(_value);
|
|
|
|
if (_reload)
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setLeft(int _value,bool _reload) {
|
|
|
|
m_sprite->setX(_value);
|
|
|
|
emit sigsetLeft(_value);
|
|
|
|
if (_reload)
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
int k9MenuButton::getTop() {
|
|
|
|
return m_sprite->y();
|
|
|
|
}
|
|
|
|
|
|
|
|
int k9MenuButton::getLeft() {
|
|
|
|
return m_sprite->x();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setFont(TQFont _font) {
|
|
|
|
m_text->setFont(_font);
|
|
|
|
update();
|
|
|
|
m_canvas->update();
|
|
|
|
emit sigsetFont(_font);
|
|
|
|
}
|
|
|
|
|
|
|
|
TQFont k9MenuButton::getFont() {
|
|
|
|
return m_text->font();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setColor(TQColor _color) {
|
|
|
|
m_text->setColor(_color);
|
|
|
|
m_canvas->update();
|
|
|
|
emit sigsetColor(_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
TQColor k9MenuButton::getColor() {
|
|
|
|
return m_text->color();
|
|
|
|
}
|
|
|
|
|
|
|
|
void k9MenuButton::setText(TQString _text) {
|
|
|
|
m_text->setText(_text);
|
|
|
|
update();
|
|
|
|
m_canvas->update();
|
|
|
|
emit sigsetText(_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString k9MenuButton::getText() {
|
|
|
|
return m_text->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void k9MenuButton::moveBy(int _x,int _y,bool _reload) {
|
|
|
|
int x=getLeft();
|
|
|
|
int y=getTop();
|
|
|
|
m_sprite->moveBy(_x,_y);
|
|
|
|
emit sigsetLeft(x+_x);
|
|
|
|
emit sigsetTop(y+_y);
|
|
|
|
|
|
|
|
if(_reload)
|
|
|
|
loadImage();
|
|
|
|
}
|
|
|
|
#include "k9menubutton.moc"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
k9MenuButton::eTextPosition k9MenuButton::getTextPosition() const {
|
|
|
|
return m_textPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void k9MenuButton::setTextPosition(const eTextPosition& _value) {
|
|
|
|
m_textPosition = _value;
|
|
|
|
update();
|
|
|
|
m_canvas->update();
|
|
|
|
emit sigsetTextPosition(_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TQImage k9MenuButton::getImage() const {
|
|
|
|
return m_image;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TQString k9MenuButton::getScript() const {
|
|
|
|
return m_script;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void k9MenuButton::setScript(const TQString& _value) {
|
|
|
|
m_script = _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int k9MenuButton::getAngle() const {
|
|
|
|
return m_angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void k9MenuButton::setAngle(int _value) {
|
|
|
|
m_angle = _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
k9CanvasSprite* k9MenuButton::getSprite() const {
|
|
|
|
return m_sprite;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int k9MenuButton::getNum() const {
|
|
|
|
return m_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void k9MenuButton::setNum(int _value) {
|
|
|
|
m_num = _value;
|
|
|
|
}
|