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.
32 typedef struct WIcon
{
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;
52 WMHandlerID handlerID
; /* timer handler ID for cycling select
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 set_icon_image_from_database(WIcon
*icon
, char *wm_instance
, char *wm_class
, char *command
);
60 void wIconDestroy(WIcon
*icon
);
61 void wIconPaint(WIcon
*icon
);
62 void wIconUpdate(WIcon
*icon
);
63 void wIconSelect(WIcon
*icon
);
64 void wIconChangeTitle(WIcon
*icon
, WWindow
*wwin
);
65 void update_icon_pixmap(WIcon
*icon
);
67 Bool
wIconChangeImageFile(WIcon
*icon
, char *file
);
69 RImage
*wIconValidateIconSize(RImage
*icon
, int max_size
);
70 RImage
*get_rimage_icon_from_wm_hints(WIcon
*icon
);
72 char *wIconStore(WIcon
*icon
);
73 char *get_name_for_instance_class(char *wm_instance
, char *wm_class
);
75 void wIconSetHighlited(WIcon
*icon
, Bool flag
);
76 void set_icon_image_from_image(WIcon
*icon
, RImage
*image
);
78 #endif /* WMICON_H_ */