2007-06-18 18:18:35 +04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-10-02 13:42:19 +04:00
|
|
|
* ede-desktop, desktop and icon manager
|
2007-06-18 18:18:35 +04:00
|
|
|
* Part of Equinox Desktop Environment (EDE).
|
2009-03-26 20:05:44 +03:00
|
|
|
* Copyright (c) 2006-2009 EDE Authors.
|
2007-06-18 18:18:35 +04:00
|
|
|
*
|
|
|
|
* This program is licensed under terms of the
|
|
|
|
* GNU General Public License version 2 or newer.
|
|
|
|
* See COPYING for details.
|
|
|
|
*/
|
|
|
|
|
2008-10-02 13:42:19 +04:00
|
|
|
#include <string.h> // memcpy
|
|
|
|
#include <stdlib.h> // malloc
|
2007-06-27 21:52:20 +04:00
|
|
|
|
2008-09-15 15:00:23 +04:00
|
|
|
#include <FL/Fl_Shared_Image.H>
|
|
|
|
#include <FL/Fl_RGB_Image.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
#include <FL/x.H>
|
2007-06-18 18:18:35 +04:00
|
|
|
|
2008-10-02 13:42:19 +04:00
|
|
|
#include <edelib/Debug.h>
|
|
|
|
|
|
|
|
#include "Wallpaper.h"
|
|
|
|
#include "Utils.h"
|
2007-06-26 20:33:25 +04:00
|
|
|
|
2007-06-22 13:43:15 +04:00
|
|
|
#define CALC_PIXEL(tmp, rshift, rmask, gshift, gmask, bshift, bmask) \
|
2009-11-23 15:52:03 +03:00
|
|
|
tmp = 0; \
|
|
|
|
if(rshift >= 0) \
|
|
|
|
tmp |= (((int)r << rshift) & rmask); \
|
|
|
|
else \
|
2007-06-22 13:43:15 +04:00
|
|
|
tmp |= (((int)r >> (-rshift)) & rmask); \
|
2009-11-23 15:52:03 +03:00
|
|
|
\
|
|
|
|
if(gshift >= 0) \
|
|
|
|
tmp |= (((int)g << gshift) & gmask); \
|
|
|
|
else \
|
2007-06-22 13:43:15 +04:00
|
|
|
tmp |= (((int)g >> (-gshift)) & gmask); \
|
2009-11-23 15:52:03 +03:00
|
|
|
\
|
|
|
|
if(bshift >= 0) \
|
|
|
|
tmp |= (((int)b << bshift) & bmask); \
|
|
|
|
else \
|
|
|
|
tmp |= (((int)b >> (-bshift)) & bmask)
|
2007-06-22 13:43:15 +04:00
|
|
|
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
static Pixmap create_xpixmap(Fl_Image* img, XImage** xim, Pixmap pix, int wp_w, int wp_h) {
|
2007-06-20 14:58:07 +04:00
|
|
|
if(!img)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(pix)
|
|
|
|
XFreePixmap(fl_display, pix);
|
|
|
|
|
|
|
|
unsigned long rmask = fl_visual->visual->red_mask;
|
|
|
|
unsigned long gmask = fl_visual->visual->green_mask;
|
|
|
|
unsigned long bmask = fl_visual->visual->blue_mask;
|
|
|
|
unsigned long start_mask;
|
|
|
|
int start_shift;
|
|
|
|
int rshift = 0;
|
|
|
|
int gshift = 0;
|
|
|
|
int bshift = 0;
|
|
|
|
|
|
|
|
if(fl_visual->depth == 24 || fl_visual->depth == 16) {
|
|
|
|
unsigned long n;
|
|
|
|
if(fl_visual->depth == 24) {
|
|
|
|
start_shift = 24;
|
|
|
|
start_mask = 0x80000000;
|
|
|
|
} else {
|
|
|
|
start_shift = 8;
|
|
|
|
start_mask = 0x8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
rshift = start_shift;
|
|
|
|
n = start_mask;
|
|
|
|
while(!(n & rmask)) {
|
|
|
|
n >>= 1;
|
|
|
|
rshift--;
|
|
|
|
}
|
|
|
|
|
|
|
|
gshift = start_shift;
|
|
|
|
n = start_mask;
|
|
|
|
while(!(n & gmask)) {
|
|
|
|
n >>= 1;
|
|
|
|
gshift--;
|
|
|
|
}
|
|
|
|
|
|
|
|
bshift = start_shift;
|
|
|
|
n = start_mask;
|
|
|
|
while(!(n & bmask)) {
|
|
|
|
n >>= 1;
|
|
|
|
bshift--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-22 13:43:15 +04:00
|
|
|
/*
|
|
|
|
* Figure out bitmap_pad and create image coresponding to the current
|
|
|
|
* display depth except for 8 bpp display
|
|
|
|
*/
|
|
|
|
int bitmap_pad = 0;
|
|
|
|
if(fl_visual->depth > 16)
|
|
|
|
bitmap_pad = 32;
|
|
|
|
else if(fl_visual->depth > 8)
|
|
|
|
bitmap_pad = 16;
|
|
|
|
else {
|
2009-03-26 16:01:59 +03:00
|
|
|
E_WARNING(E_STRLOC ": Visual %i not supported\n", fl_visual->depth);
|
2007-06-20 14:58:07 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
*xim = XCreateImage(fl_display, fl_visual->visual, fl_visual->depth, ZPixmap, 0, 0, img->w(), img->h(), bitmap_pad, 0);
|
2007-06-20 14:58:07 +04:00
|
|
|
|
|
|
|
int iw = img->w();
|
|
|
|
int ih = img->h();
|
|
|
|
int id = img->d();
|
|
|
|
|
|
|
|
bool msb = false;
|
|
|
|
if(ImageByteOrder(fl_display) == MSBFirst)
|
|
|
|
msb = true;
|
|
|
|
else
|
|
|
|
msb = false;
|
|
|
|
|
|
|
|
unsigned int r, g, b, tmp;
|
2009-11-23 15:52:03 +03:00
|
|
|
//unsigned char* dest = (unsigned char*)malloc(sizeof(unsigned char) * iw * ih * id);
|
|
|
|
unsigned char* dest = (unsigned char*)malloc(ih * (*xim)->bytes_per_line);
|
2007-06-20 14:58:07 +04:00
|
|
|
unsigned char* destptr = dest;
|
|
|
|
unsigned char* src = (unsigned char*)img->data()[0];
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
if((*xim)->bits_per_pixel == 32) {
|
2007-06-22 13:43:15 +04:00
|
|
|
if(id == 3 || id == 4) {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src++;
|
|
|
|
g = *src++;
|
|
|
|
b = *src++;
|
|
|
|
|
|
|
|
if(id == 4)
|
|
|
|
src++;
|
|
|
|
|
|
|
|
CALC_PIXEL(tmp, rshift, rmask, gshift, gmask, bshift, bmask);
|
|
|
|
|
|
|
|
if(msb) {
|
|
|
|
*destptr++ = (tmp & 0xff000000) >> 24;
|
|
|
|
*destptr++ = (tmp & 0xff0000) >> 16;
|
|
|
|
*destptr++ = (tmp & 0xff00) >> 8;
|
2009-11-23 15:52:03 +03:00
|
|
|
*destptr++ = (tmp & 0xff);
|
2007-06-22 13:43:15 +04:00
|
|
|
} else {
|
2009-11-23 15:52:03 +03:00
|
|
|
*destptr++ = (tmp & 0xff);
|
2007-06-22 13:43:15 +04:00
|
|
|
*destptr++ = (tmp & 0xff00) >> 8;
|
|
|
|
*destptr++ = (tmp & 0xff0000) >> 16;
|
|
|
|
*destptr++ = (tmp & 0xff000000) >> 24;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src++;
|
|
|
|
g = *src++;
|
|
|
|
b = *src++;
|
|
|
|
|
|
|
|
if(msb) {
|
|
|
|
*destptr++ = 0;
|
|
|
|
*destptr++ = b;
|
|
|
|
*destptr++ = g;
|
|
|
|
*destptr++ = r;
|
|
|
|
} else {
|
|
|
|
*destptr++ = r;
|
|
|
|
*destptr++ = g;
|
|
|
|
*destptr++ = b;
|
|
|
|
*destptr++ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-03-26 20:05:44 +03:00
|
|
|
} else if((*xim)->bits_per_pixel == 24) {
|
2007-06-22 13:43:15 +04:00
|
|
|
if(id == 3 || id == 4) {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src++;
|
|
|
|
g = *src++;
|
|
|
|
b = *src++;
|
|
|
|
|
|
|
|
if(id == 4)
|
|
|
|
src++;
|
|
|
|
|
|
|
|
CALC_PIXEL(tmp, rshift, rmask, gshift, gmask, bshift, bmask);
|
|
|
|
|
|
|
|
if(msb) {
|
|
|
|
*destptr++ = (tmp & 0xff0000) >> 16;
|
|
|
|
*destptr++ = (tmp & 0xff00) >> 8;
|
|
|
|
*destptr++ = (tmp & 0xff);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
*destptr++ = (tmp & 0xff);
|
|
|
|
*destptr++ = (tmp & 0xff00) >> 8;
|
|
|
|
*destptr++ = (tmp & 0xff0000) >> 16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src++;
|
|
|
|
g = *src++;
|
|
|
|
b = *src++;
|
2007-06-29 15:22:29 +04:00
|
|
|
|
2007-06-22 13:43:15 +04:00
|
|
|
if(msb) {
|
|
|
|
*destptr++ = b;
|
|
|
|
*destptr++ = g;
|
|
|
|
*destptr++ = r;
|
|
|
|
} else {
|
|
|
|
*destptr++ = r;
|
|
|
|
*destptr++ = g;
|
|
|
|
*destptr++ = b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-03-26 20:05:44 +03:00
|
|
|
} else if((*xim)->bits_per_pixel == 16) {
|
2007-06-22 13:43:15 +04:00
|
|
|
if(id == 3 || id == 4) {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src++;
|
|
|
|
g = *src++;
|
|
|
|
b = *src++;
|
|
|
|
|
|
|
|
if(id == 4)
|
|
|
|
src++;
|
|
|
|
|
|
|
|
CALC_PIXEL(tmp, rshift, rmask, gshift, gmask, bshift, bmask);
|
|
|
|
|
|
|
|
if(msb) {
|
|
|
|
*destptr++ = (tmp >> 8) & 0xff;
|
|
|
|
*destptr++ = (tmp & 0xff);
|
|
|
|
} else {
|
|
|
|
*destptr++ = (tmp & 0xff);
|
|
|
|
*destptr++ = (tmp >> 8) & 0xff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for(int j = 0; j < ih; j++) {
|
|
|
|
for(int i = 0; i < iw; i++) {
|
|
|
|
r = *src >> 3; src++;
|
|
|
|
g = *src >> 2; src++;
|
|
|
|
b = *src >> 3; src++;
|
|
|
|
|
|
|
|
*destptr++ = r << 11 | g << 5 | b;
|
|
|
|
}
|
2007-06-20 14:58:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
(*xim)->data = (char*)dest;
|
2007-06-20 14:58:07 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Creating another window as drawable is needed since fl_window (as drawable) can't be
|
2007-11-14 18:01:32 +03:00
|
|
|
* used here (valid only in draw()). Drawable must be size as wallpaper area or clients who
|
|
|
|
* query _XA_XROOTPMAP_ID will get BadWindow when goes out of drawable area (but not out of
|
|
|
|
* wallpaper area).
|
|
|
|
*
|
|
|
|
* FIXME: drawable background should be the same color as wallpaper background
|
2007-06-20 14:58:07 +04:00
|
|
|
*/
|
2007-11-14 18:01:32 +03:00
|
|
|
Window drawable = XCreateSimpleWindow(fl_display, RootWindow(fl_display, fl_screen), 0, 0, wp_w,
|
|
|
|
wp_h, 0, 0, BlackPixel(fl_display, fl_screen));
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2007-11-14 18:01:32 +03:00
|
|
|
pix = XCreatePixmap(fl_display, drawable, wp_w, wp_h, fl_visual->depth);
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
/* The same applies as above; fl_gc can't be used here */
|
2007-06-20 14:58:07 +04:00
|
|
|
XGCValues gcv;
|
|
|
|
gcv.graphics_exposures = False;
|
|
|
|
GC dgc = XCreateGC(fl_display, pix, GCGraphicsExposures, &gcv);
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
XPutImage(fl_display, pix, dgc, *xim, 0, 0, 0, 0, iw, ih);
|
2007-06-20 14:58:07 +04:00
|
|
|
|
|
|
|
XDestroyWindow(fl_display, drawable);
|
|
|
|
XFreeGC(fl_display, dgc);
|
|
|
|
|
|
|
|
return pix;
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
#define PIXEL_POS(x, y, w, d) ((((y) * (w)) + (x)) * (d))
|
2007-06-26 20:33:25 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
static void create_tile(Fl_Image* orig, Fl_RGB_Image** copied, int X, int Y, int W, int H) {
|
|
|
|
/* don't tile large image */
|
|
|
|
if(orig->w() >= W && orig->h() >= H) {
|
|
|
|
*copied = (Fl_RGB_Image*) orig;
|
|
|
|
return;
|
|
|
|
}
|
2007-06-26 20:33:25 +04:00
|
|
|
|
|
|
|
int iw = orig->w();
|
|
|
|
int ih = orig->h();
|
2007-06-27 21:52:20 +04:00
|
|
|
int idepth = orig->d();
|
2007-06-26 20:33:25 +04:00
|
|
|
int tx = X - (X % iw);
|
|
|
|
int ty = Y - (Y % ih);
|
|
|
|
int tw = W + tx;
|
|
|
|
int th = H + ty;
|
|
|
|
|
|
|
|
unsigned char* dest = new unsigned char[tw * th * orig->d()];
|
|
|
|
unsigned char* destptr = dest;
|
|
|
|
unsigned char* src = (unsigned char*)orig->data()[0];
|
|
|
|
int ppos = 0;
|
2009-03-26 20:05:44 +03:00
|
|
|
/* for bounds checks */
|
2007-06-27 21:52:20 +04:00
|
|
|
int imax = iw * ih * idepth;
|
2007-06-26 20:33:25 +04:00
|
|
|
|
2007-06-27 21:52:20 +04:00
|
|
|
if(idepth == 3 || idepth == 4) {
|
|
|
|
for(int j = 0, cj = 0; j < th; j++, cj++) {
|
2007-06-26 20:33:25 +04:00
|
|
|
if(cj > ih) cj = 0;
|
|
|
|
|
2007-06-27 21:52:20 +04:00
|
|
|
for(int i = 0, ci = 0; i < tw; i++, ci++) {
|
|
|
|
if(ci > iw) ci = 0;
|
|
|
|
ppos = PIXEL_POS(ci, cj, iw, idepth);
|
|
|
|
if(ppos > imax) ppos = imax;
|
2007-06-26 20:33:25 +04:00
|
|
|
|
|
|
|
*destptr++ = src[ppos];
|
2007-06-27 21:52:20 +04:00
|
|
|
*destptr++ = src[ppos + 1];
|
|
|
|
*destptr++ = src[ppos + 2];
|
|
|
|
|
|
|
|
if(idepth == 4)
|
|
|
|
*destptr++ = src[ppos + 3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(idepth == 2) {
|
|
|
|
for(int j = 0, cj = 0; j < th; j++, cj++) {
|
|
|
|
if(cj > ih) cj = 0;
|
|
|
|
|
|
|
|
for(int i = 0, ci = 0; i < tw; i++, ci++) {
|
|
|
|
if(ci > iw) ci = 0;
|
|
|
|
ppos = PIXEL_POS(ci, cj, iw, idepth);
|
|
|
|
if(ppos > imax) ppos = imax;
|
|
|
|
|
2007-06-26 20:33:25 +04:00
|
|
|
*destptr++ = src[ppos];
|
2007-06-27 21:52:20 +04:00
|
|
|
*destptr++ = src[ppos + 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for(int j = 0, cj = 0; j < th; j++, cj++) {
|
|
|
|
if(cj > ih) cj = 0;
|
|
|
|
|
|
|
|
for(int i = 0, ci = 0; i < tw; i++, ci++) {
|
|
|
|
if(ci > iw) ci = 0;
|
|
|
|
ppos = PIXEL_POS(ci, cj, iw, idepth);
|
|
|
|
if(ppos > imax) ppos = imax;
|
|
|
|
|
2007-06-26 20:33:25 +04:00
|
|
|
*destptr++ = src[ppos];
|
2007-06-27 21:52:20 +04:00
|
|
|
}
|
2007-06-26 20:33:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-27 21:52:20 +04:00
|
|
|
Fl_RGB_Image* c = new Fl_RGB_Image(dest, tw, th, idepth, orig->ld());
|
2007-06-26 20:33:25 +04:00
|
|
|
c->alloc_array = 1;
|
2009-03-26 16:01:59 +03:00
|
|
|
*copied = c;
|
2007-06-18 18:18:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Wallpaper::~Wallpaper() {
|
2007-06-20 14:58:07 +04:00
|
|
|
if(rootpmap_pixmap)
|
|
|
|
XFreePixmap(fl_display, rootpmap_pixmap);
|
2009-05-19 15:10:23 +04:00
|
|
|
|
|
|
|
delete stretched_alloc;
|
2007-06-18 18:18:35 +04:00
|
|
|
}
|
|
|
|
|
2007-06-20 14:58:07 +04:00
|
|
|
void Wallpaper::set_rootpmap(void) {
|
|
|
|
if(!image())
|
|
|
|
return;
|
|
|
|
|
2007-11-14 17:45:59 +03:00
|
|
|
XImage* rootpmap_image = 0;
|
2009-12-24 18:47:29 +03:00
|
|
|
Atom _XA_XROOTPMAP_ID;
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
rootpmap_pixmap = create_xpixmap(image(), &rootpmap_image, rootpmap_pixmap, w(), h());
|
2007-06-20 14:58:07 +04:00
|
|
|
|
|
|
|
if(!rootpmap_pixmap)
|
|
|
|
return;
|
|
|
|
|
2009-03-26 16:01:59 +03:00
|
|
|
/* XDestroyImage function calls frees both the image structure and the data pointed to by the image structure */
|
|
|
|
if(rootpmap_image)
|
|
|
|
XDestroyImage(rootpmap_image);
|
|
|
|
|
2009-12-24 18:47:29 +03:00
|
|
|
_XA_XROOTPMAP_ID = XInternAtom(fl_display, "_XROOTPMAP_ID", False);
|
|
|
|
|
2007-06-20 14:58:07 +04:00
|
|
|
XChangeProperty(fl_display, RootWindow(fl_display, fl_screen),
|
|
|
|
_XA_XROOTPMAP_ID, XA_PIXMAP, 32, PropModeReplace, (unsigned char *)&rootpmap_pixmap, 1);
|
2009-03-26 20:05:44 +03:00
|
|
|
}
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
bool Wallpaper::load(const char* path, WallpaperState s) {
|
|
|
|
E_ASSERT(path != NULL);
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
Fl_Shared_Image* i = Fl_Shared_Image::get(path);
|
|
|
|
if(!i)
|
|
|
|
return false;
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
if(s == WALLPAPER_TILE) {
|
|
|
|
Fl_RGB_Image* tiled;
|
|
|
|
|
|
|
|
create_tile((Fl_Image*)i, &tiled, x(), y(), w(), h());
|
|
|
|
image(tiled);
|
|
|
|
} else if(s == WALLPAPER_STRETCH) {
|
2009-05-19 15:10:23 +04:00
|
|
|
Fl_Image* stretched = NULL;
|
2009-03-26 20:05:44 +03:00
|
|
|
|
|
|
|
if(i->w() == w() && i->h() == h())
|
|
|
|
stretched = i;
|
|
|
|
else {
|
2009-05-19 15:10:23 +04:00
|
|
|
/* valgrind reports it as possible lost, but FLTK should free it */
|
|
|
|
delete stretched_alloc;
|
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
stretched = i->copy(w(), h());
|
|
|
|
i->release();
|
2009-05-19 15:10:23 +04:00
|
|
|
|
|
|
|
stretched_alloc = stretched;
|
2009-03-26 20:05:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
image(stretched);
|
|
|
|
} else {
|
|
|
|
image(i);
|
2007-06-20 14:58:07 +04:00
|
|
|
}
|
2009-03-26 20:05:44 +03:00
|
|
|
|
|
|
|
state = s;
|
|
|
|
|
|
|
|
/* set root pixmap for pseudo transparency */
|
|
|
|
set_rootpmap();
|
|
|
|
return true;
|
2007-06-20 14:58:07 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 18:18:35 +04:00
|
|
|
void Wallpaper::draw(void) {
|
|
|
|
if(!image())
|
|
|
|
return;
|
|
|
|
|
|
|
|
int ix, iy, iw, ih;
|
|
|
|
Fl_Image* im = image();
|
|
|
|
|
|
|
|
iw = im->w();
|
|
|
|
ih = im->h();
|
|
|
|
|
|
|
|
if(iw == 0 || ih == 0)
|
|
|
|
return;
|
2007-06-27 21:52:20 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
if(state == WALLPAPER_CENTER) {
|
2007-06-27 21:52:20 +04:00
|
|
|
ix = (w()/2) - (iw/2);
|
|
|
|
iy = (h()/2) - (ih/2);
|
|
|
|
ix += x();
|
|
|
|
iy += y();
|
2007-06-18 18:18:35 +04:00
|
|
|
} else {
|
|
|
|
ix = x();
|
|
|
|
iy = y();
|
|
|
|
}
|
2007-06-27 21:52:20 +04:00
|
|
|
|
2007-06-18 18:18:35 +04:00
|
|
|
im->draw(ix, iy);
|
2007-06-20 14:58:07 +04:00
|
|
|
|
2009-03-26 20:05:44 +03:00
|
|
|
#if 0
|
2007-06-20 14:58:07 +04:00
|
|
|
/*
|
|
|
|
* For debugging purposes :)
|
2009-03-26 20:05:44 +03:00
|
|
|
* Uncommenting this (and removing GC/Window creation in create_xpixmap will draw _XA_XROOTPMAP_ID
|
|
|
|
* Pixmap directly in Wallpaper widget. Used to check Fl_Image->Image conversion.
|
2007-06-20 14:58:07 +04:00
|
|
|
*/
|
|
|
|
if(global_xim) {
|
|
|
|
Pixmap pix = fl_create_offscreen(image()->w(), image()->h());
|
|
|
|
fl_begin_offscreen(pix);
|
|
|
|
XPutImage(fl_display, pix, fl_gc, global_xim, 0, 0, 0, 0, image()->w(), image()->h());
|
|
|
|
fl_end_offscreen();
|
|
|
|
|
|
|
|
fl_copy_offscreen(ix, iy, image()->w(), image()->h(), pix, 0, 0);
|
|
|
|
|
|
|
|
XChangeProperty(fl_display, RootWindow(fl_display, fl_screen),
|
|
|
|
_XA_XROOTPMAP_ID, XA_PIXMAP, 32, PropModeReplace, (unsigned char *)&pix, 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
2007-06-18 18:18:35 +04:00
|
|
|
}
|
2007-06-23 15:31:36 +04:00
|
|
|
|
|
|
|
int Wallpaper::handle(int event) {
|
|
|
|
switch(event) {
|
2009-03-26 20:05:44 +03:00
|
|
|
/* Route all DND events to parent (desktop), otherwise desktop will not get them if Wallpaper is visible */
|
2007-06-23 15:31:36 +04:00
|
|
|
case FL_DND_ENTER:
|
|
|
|
case FL_DND_DRAG:
|
|
|
|
case FL_DND_LEAVE:
|
|
|
|
case FL_DND_RELEASE:
|
|
|
|
case FL_PASTE:
|
2007-06-25 13:20:49 +04:00
|
|
|
return parent()->handle(event);
|
2007-06-23 15:31:36 +04:00
|
|
|
}
|
|
|
|
|
2007-07-02 14:28:18 +04:00
|
|
|
return 0;
|
2007-06-23 15:31:36 +04:00
|
|
|
}
|