1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/***************************************************************************
* buttonimage.cpp *
* ----------------------- *
* Copyright (C) 2006-2011 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <qimage.h>
#include <math.h>
#include "crystalfactory.h"
#include "buttonimage.h"
ButtonImage::ButtonImage(const QRgb *d_normal,int w,int h)
{
normal=hovered=pressed=animated=NULL;
image_width=w;
image_height=h;
normal_data=hovered_data=animated_data=pressed_data=NULL;
org_normal_data=org_hovered_data=NULL;
normal_color=hovered_color=pressed_color=QColor(255,255,255);
reset();
if (d_normal)SetNormal(d_normal,w,h);
}
ButtonImage::~ButtonImage()
{
if (normal)delete normal;
if (hovered)delete hovered;
if (pressed)delete pressed;
if (animated)delete animated;
if (animated_data)delete[] animated_data;
if (pressed_data)delete[] pressed_data;
if (hovered_data)delete[] hovered_data;
if (normal_data)delete[] normal_data;
if (org_normal_data)delete[] org_normal_data;
if (org_hovered_data)delete[] org_hovered_data;
}
QImage ButtonImage::CreateImage(QRgb *data,QColor color)
{
tint(data,color);
QImage img=QImage((uchar*)data,image_width,image_height,QImage::Format_ARGB32),img2;
return img;
}
void ButtonImage::reset()
{
if (normal)delete normal;
if (hovered)delete hovered;
if (pressed)delete pressed;
if (animated)delete animated;
normal=hovered=pressed=animated=NULL;
if (normal_data)delete[] normal_data;
if (hovered_data)delete[] hovered_data;
if (pressed_data)delete[] pressed_data;
if (animated_data)delete[] animated_data;
if (org_hovered_data)delete[] org_hovered_data;
if (org_normal_data)delete[] org_normal_data;
normal_data=hovered_data=animated_data=pressed_data=NULL;
org_normal_data=org_hovered_data=NULL;
hSpace=vSpace=2;
drawMode=0;
}
void ButtonImage::SetNormal(const QRgb *d_normal,int w,int h)
{
image_width=w;
image_height=h;
if (normal)delete normal;
if (animated)delete animated;
animated=NULL;
if (animated_data)delete[] animated_data;
animated_data=NULL;
if (hovered_data)delete[] hovered_data;
hovered_data=NULL;
if (pressed_data)delete[] pressed_data;
pressed_data=NULL;
if (normal_data)delete[] normal_data;
org_normal_data=new QRgb[image_width*image_height];
memcpy(org_normal_data,d_normal,sizeof(QRgb)*image_width*image_height);
normal_data=new QRgb[image_width*image_height];
memcpy(normal_data,d_normal,sizeof(QRgb)*image_width*image_height);
normal=new QImage(CreateImage(normal_data,normal_color));
}
void ButtonImage::SetHovered(const QRgb *d_hovered)
{
if (hovered)delete hovered;
if (hovered_data)delete[] hovered_data;
if (org_hovered_data)delete[] org_hovered_data;
if (d_hovered)
{
org_hovered_data=new QRgb[image_width*image_height];
hovered_data=new QRgb[image_width*image_height];
memcpy(hovered_data,d_hovered,sizeof(QRgb)*image_width*image_height);
memcpy(org_hovered_data,d_hovered,sizeof(QRgb)*image_width*image_height);
hovered=new QImage(CreateImage(hovered_data,hovered_color));
}else{
hovered=NULL;
hovered_data=NULL;
org_hovered_data=NULL;
}
}
void ButtonImage::SetPressed(const QRgb *d_pressed)
{
if (pressed)delete pressed;
if (pressed_data)delete[] pressed_data;
if (d_pressed)
{
pressed_data=new QRgb[image_width*image_height];
memcpy(pressed_data,d_pressed,sizeof(QRgb)*image_width*image_height);
pressed=new QImage(CreateImage(pressed_data,pressed_color));
}else{
pressed=NULL;
pressed_data=NULL;
}
}
bool ButtonImage::initialized()
{
return ((org_normal_data!=NULL)&&(normal_data!=NULL)&&(normal!=NULL));
}
void ButtonImage::finish()
{
if (!org_normal_data)
{
/* printf("ERROR: No org_normal_data set!\n"); */
return;
}
if (!hovered_data){
hovered_data=new QRgb[image_width*image_height];
float faktor=::factory->hovereffect?0.5:1.0;
for (int i=0;i<image_width*image_height;i++)
{
hovered_data[i]=qRgba(qRed(org_normal_data[i]),
qGreen(org_normal_data[i]),
qBlue(org_normal_data[i]),
(int)(255.0*pow((float)qAlpha(org_normal_data[i])/255.0,
faktor)));
}
if (org_hovered_data)delete[] org_hovered_data;
org_hovered_data=new QRgb[image_width*image_height];
memcpy(org_hovered_data,hovered_data,sizeof(QRgb)*image_width*image_height);
hovered=new QImage(CreateImage(hovered_data,hovered_color));
}
if (!pressed_data){
float faktor=::factory->hovereffect?0.5:0.4;
pressed_data=new QRgb[image_width*image_height];
if (!org_hovered_data)
{
org_hovered_data=hovered_data;
}
for (int i=0;i<image_width*image_height;i++)
{
pressed_data[i]=qRgba(qRed(org_hovered_data[i]),
qGreen(org_hovered_data[i]),
qBlue(org_hovered_data[i]),
(int)(255.0*pow((float)qAlpha(org_hovered_data[i])/255.0,
faktor)));
}
pressed=new QImage(CreateImage(pressed_data,pressed_color));
}
if (!animated_data)
animated_data=new QRgb[image_width*image_height];
if (!animated)
{
animated=new QImage((uchar*)animated_data,
image_width,
image_height,
QImage::Format_ARGB32);
}
}
QImage* ButtonImage::getAnimated( float anim)
{
if (!normal_data)return NULL;
if (!animated_data)return NULL;
for (int i=0;i<image_width*image_height;i++)
{
const float r1=(float)qRed(normal_data[i])/255.0f;
const float r2=(float)qRed(hovered_data[i])/255.0f;
const float g1=(float)qGreen(normal_data[i])/255.0f;
const float g2=(float)qGreen(hovered_data[i])/255.0f;
const float b1=(float)qBlue(normal_data[i])/255.0f;
const float b2=(float)qBlue(hovered_data[i])/255.0f;
const float a1=(float)qAlpha(normal_data[i])/255.0f;
const float a2=(float)qAlpha(hovered_data[i])/255.0f;
animated_data[i]=qRgba(
(int)((r1*(1.0f-anim)+r2*anim)*255.0f),
(int)((g1*(1.0f-anim)+g2*anim)*255.0f),
(int)((b1*(1.0f-anim)+b2*anim)*255.0f),
(int)((a1*(1.0f-anim)+a2*anim)*255.0f));
}
return animated;
}
void ButtonImage::tint(QRgb *data,QColor color)
{
float f_r=(float)color.red()/255.0;
float f_g=(float)color.green()/255.0;
float f_b=(float)color.blue()/255.0;
for (int i=0;i<image_width*image_height;i++)
{
float r=(float)qRed(data[i])/255.0;
float g=(float)qGreen(data[i])/255.0;
float b=(float)qBlue(data[i])/255.0;
r*=f_r;
g*=f_g;
b*=f_b;
data[i]=qRgba(
(int)(r*255.0),
(int)(g*255.0),
(int)(b*255.0),
qAlpha(data[i]));
}
}
|