2014-11-28 16:22:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1999-2005 Alfredo K. Kojima, Alban Hertroys
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/xpm.h>
|
|
|
|
#include <X11/extensions/shape.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#include "dockapp.h"
|
|
|
|
#include "daargs.h"
|
|
|
|
|
|
|
|
extern struct DAContext *_daContext;
|
|
|
|
|
|
|
|
/* Local typedef */
|
|
|
|
typedef enum {
|
2014-11-28 16:22:51 +00:00
|
|
|
daXpmSourceData,
|
|
|
|
daXpmSourceFile
|
2014-11-28 16:22:47 +00:00
|
|
|
} daXpmSource;
|
|
|
|
|
|
|
|
/* Function prototype */
|
|
|
|
Bool _daMakePixmap(daXpmSource source,
|
2014-11-28 16:22:51 +00:00
|
|
|
char **data, Pixmap *pixmap, Pixmap *mask,
|
|
|
|
unsigned short *width, unsigned short *height);
|
2014-11-28 16:22:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
DASetShapeWithOffset(Pixmap shapeMask, int x_ofs, int y_ofs)
|
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
DASetShapeWithOffsetForWindow(DAWindow, shapeMask, x_ofs, y_ofs);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DASetShapeWithOffsetForWindow(Window window, Pixmap shapeMask,
|
2014-11-28 16:22:51 +00:00
|
|
|
int x_ofs, int y_ofs)
|
2014-11-28 16:22:47 +00:00
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
XShapeCombineMask(DADisplay, window, ShapeBounding, -x_ofs, -y_ofs,
|
|
|
|
shapeMask, ShapeSet);
|
|
|
|
XFlush(DADisplay);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DASetPixmap(Pixmap pixmap)
|
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
DASetPixmapForWindow(DAWindow, pixmap);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DASetPixmapForWindow(Window window, Pixmap pixmap)
|
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
XSetWindowBackgroundPixmap(DADisplay, window, pixmap);
|
|
|
|
XClearWindow(DADisplay, window);
|
|
|
|
XFlush(DADisplay);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pixmap
|
|
|
|
DAMakePixmap(void)
|
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
return (XCreatePixmap(DADisplay, DAWindow,
|
|
|
|
_daContext->width, _daContext->height,
|
|
|
|
DADepth));
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pixmap
|
|
|
|
DAMakeShape(void)
|
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
return (XCreatePixmap(DADisplay, DAWindow,
|
|
|
|
_daContext->width, _daContext->height,
|
|
|
|
1));
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
DAMakePixmapFromData(char **data, Pixmap *pixmap, Pixmap *mask,
|
2014-11-28 16:22:51 +00:00
|
|
|
unsigned short *width, unsigned short *height)
|
2014-11-28 16:22:47 +00:00
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
return _daMakePixmap(daXpmSourceData, data,
|
|
|
|
pixmap, mask,
|
|
|
|
width, height);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
DAMakePixmapFromFile(char *filename, Pixmap *pixmap, Pixmap *mask,
|
2014-11-28 16:22:51 +00:00
|
|
|
unsigned short *width, unsigned short *height)
|
2014-11-28 16:22:47 +00:00
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
if (access(filename, R_OK) < 0)
|
|
|
|
return False;
|
2014-11-28 16:22:47 +00:00
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
return _daMakePixmap(daXpmSourceFile, (char **)filename,
|
|
|
|
pixmap, mask,
|
|
|
|
width, height);
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Bool
|
|
|
|
_daMakePixmap(daXpmSource source,
|
2014-11-28 16:22:51 +00:00
|
|
|
char **data, Pixmap *pixmap, Pixmap *mask,
|
|
|
|
unsigned short *width, unsigned short *height)
|
2014-11-28 16:22:47 +00:00
|
|
|
{
|
2014-11-28 16:22:51 +00:00
|
|
|
XpmAttributes xpmAttr;
|
2014-11-28 16:22:49 +00:00
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
xpmAttr.valuemask = XpmCloseness;
|
|
|
|
xpmAttr.closeness = 40000;
|
2014-11-28 16:22:49 +00:00
|
|
|
|
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
if (source == daXpmSourceData
|
2014-11-28 16:22:47 +00:00
|
|
|
&& (XpmCreatePixmapFromData(
|
2014-11-28 16:22:51 +00:00
|
|
|
DADisplay, DAWindow, data, pixmap, mask, &xpmAttr) != 0))
|
|
|
|
return False;
|
2014-11-28 16:22:47 +00:00
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
else if (source == daXpmSourceFile
|
|
|
|
&& (XpmReadFileToPixmap(
|
|
|
|
DADisplay, DAWindow, (char *)data, pixmap, mask, &xpmAttr) != 0))
|
|
|
|
return False;
|
2014-11-28 16:22:47 +00:00
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
*width = xpmAttr.width;
|
|
|
|
*height = xpmAttr.height;
|
2014-11-28 16:22:49 +00:00
|
|
|
|
2014-11-28 16:22:51 +00:00
|
|
|
return True;
|
2014-11-28 16:22:47 +00:00
|
|
|
}
|
|
|
|
|