/* * Copyright (c) 1999 Alfredo K. Kojima * * 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. * This code is based on libdockapp-0.4.0 * modified by Seiichi SATO */ #ifndef __DOCKAPP_H #define __DOCKAPP_H #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_SELECT # include #endif #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #if HAVE_UNISTD_H # include #else /* We are in trouble. */ #endif typedef enum _dockapp_status { DOCKABLE_ICON, /* normal dockapp mode */ WINDOWED, /* windowed mode */ WINDOWED_WITH_PANEL /* windowed mode with background panel */ } dockapp_status; extern Display *display; extern Bool dockapp_isbrokenwm; extern dockapp_status dockapp_stat; void dockapp_open_window(char *display_specified, char *appname, unsigned w, unsigned h, int argc, char **argv); void dockapp_set_eventmask(long mask); void dockapp_set_background(Pixmap pixmap); void dockapp_show(void); Bool dockapp_xpm2pixmap(char **data, Pixmap * pixmap, Pixmap * mask, XpmColorSymbol * colorSymbol, unsigned int nsymbols); Pixmap dockapp_XCreatePixmap(int w, int h); void dockapp_setshape(Pixmap mask, int x_ofs, int y_ofs); void dockapp_copyarea(Pixmap src, Pixmap dist, int x_src, int y_src, int w, int h, int x_dist, int y_dist); void dockapp_copy2window(Pixmap src); Bool dockapp_nextevent_or_timeout(XEvent * event, unsigned long miliseconds); unsigned long dockapp_getcolor_pixel(char *color_name); unsigned long dockapp_blendedcolor(char *color_name, int r, int g, int b, float fac ); #endif