get_rimage_icon_from_wm_hints returns image
[wmaker-crm.git] / src / icon.h
blobc2a6b098ce92b0e0c71f69396a7526cf04acf26d
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef WMICON_H_
23 #define WMICON_H_
25 #include "wcore.h"
26 #include "window.h"
27 #include "funcs.h"
29 #define TILE_NORMAL 0
30 #define TILE_CLIP 1
32 typedef struct WIcon {
33 WCoreWindow *core;
34 WWindow *owner; /* owner window */
35 char *icon_name; /* the icon name hint */
37 Window icon_win; /* client suplied icon window */
39 char *file; /* the file with the icon image */
40 RImage *file_image; /* the image from the file */
42 unsigned int tile_type:4;
43 unsigned int show_title:1;
44 unsigned int selected:1;
45 unsigned int step:3; /* selection cycle step */
46 unsigned int shadowed:1; /* If the icon is to be blured */
47 unsigned int mapped:1;
48 unsigned int highlighted:1;
50 Pixmap pixmap;
52 WMHandlerID handlerID; /* timer handler ID for cycling select
53 * color */
54 } WIcon;
56 WIcon *icon_create_for_dock(WScreen *scr, char *command, char *wm_instance, char *wm_class, int tile);
57 WIcon *icon_create_for_wwindow(WWindow *wwin);
59 void wIconDestroy(WIcon *icon);
60 void wIconPaint(WIcon *icon);
61 void wIconUpdate(WIcon *icon, RImage *image);
62 void wIconSelect(WIcon *icon);
63 void wIconChangeTitle(WIcon *icon, char *new_title);
64 void update_icon_pixmap(WIcon *icon);
66 Bool wIconChangeImageFile(WIcon *icon, char *file);
68 RImage *wIconValidateIconSize(RImage *icon, int max_size);
69 RImage *get_rimage_icon_from_wm_hints(WIcon *icon);
71 char *wIconStore(WIcon *icon);
72 char *get_name_for_instance_class(char *wm_instance, char *wm_class);
74 void wIconSetHighlited(WIcon *icon, Bool flag);
76 #endif /* WMICON_H_ */