- removed the collapse appicons thing
[wmaker-crm.git] / src / application.c
blob1163664f5d7c74de3bf21bdc94fcc97b98573db4
1 /*
2 * Window Maker window manager
3 *
4 * Copyright (c) 1997, 1998 Alfredo K. Kojima
5 * Copyright (c) 1998 Dan Pascu
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
22 #include "wconfig.h"
24 #include <X11/Xlib.h>
26 #include <stdlib.h>
27 #include <string.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <unistd.h>
32 #include <errno.h>
34 #include "WindowMaker.h"
35 #include "menu.h"
36 #include "window.h"
37 #ifdef USER_MENU
38 #include "usermenu.h"
39 #endif /* USER_MENU */
40 #include "icon.h"
41 #include "appicon.h"
42 #include "application.h"
43 #include "appmenu.h"
44 #include "properties.h"
45 #include "funcs.h"
46 #include "stacking.h"
47 #include "actions.h"
48 #include "defaults.h"
49 #include "workspace.h"
50 #include "dock.h"
51 #include "wsound.h"
54 /******** Global variables ********/
56 extern XContext wAppWinContext;
57 extern XContext wWinContext;
58 extern WPreferences wPreferences;
60 extern WDDomain *WDWindowAttributes;
62 /******** Local variables ********/
65 static WWindow*
66 makeMainWindow(WScreen *scr, Window window)
68 WWindow *wwin;
69 XWindowAttributes attr;
71 if (!XGetWindowAttributes(dpy, window, &attr)) {
72 return NULL;
75 wwin = wWindowCreate();
76 wwin->screen_ptr = scr;
77 wwin->client_win = window;
78 wwin->main_window = window;
79 wwin->wm_hints = XGetWMHints(dpy, window);
80 /* if (!MyXFetchName(dpy, window, &(wwin->frame->title))) {
81 wwin->frame->title = NULL;
84 PropGetWMClass(window, &wwin->wm_class, &wwin->wm_instance);
87 wDefaultFillAttributes(scr, wwin->wm_instance, wwin->wm_class,
88 &wwin->user_flags, &wwin->defined_user_flags, True);
90 XSelectInput(dpy, window, attr.your_event_mask | PropertyChangeMask
91 | StructureNotifyMask );
92 return wwin;
96 WApplication*
97 wApplicationOf(Window window)
99 WApplication *wapp;
101 if (window == None)
102 return NULL;
103 if (XFindContext(dpy, window, wAppWinContext, (XPointer*)&wapp)!=XCSUCCESS)
104 return NULL;
105 return wapp;
109 static WAppIcon*
110 findDockIconFor(WDock *dock, Window main_window)
112 WAppIcon *aicon = NULL;
114 aicon = wDockFindIconForWindow(dock, main_window);
115 if (!aicon) {
116 wDockTrackWindowLaunch(dock, main_window);
117 aicon = wDockFindIconForWindow(dock, main_window);
119 return aicon;
123 static void
124 extractIcon(WWindow *wwin)
126 int argc;
127 char **argv;
129 if (!XGetCommand(dpy, wwin->client_win, &argv, &argc) || argc < 1)
130 return;
132 wApplicationExtractDirPackIcon(wwin->screen_ptr,argv[0],
133 wwin->wm_instance,
134 wwin->wm_class);
135 XFreeStringList(argv);
139 static void
140 saveIconNameFor(char *iconPath, char *wm_instance, char *wm_class)
142 WMPropList *dict = WDWindowAttributes->dictionary;
143 WMPropList *adict, *key, *iconk;
144 WMPropList *val;
145 char *tmp;
146 int i;
148 i = 0;
149 if (wm_instance)
150 i += strlen(wm_instance);
151 if (wm_class)
152 i += strlen(wm_class);
154 tmp = wmalloc(i+8);
155 *tmp = 0;
156 if (wm_class && wm_instance) {
157 sprintf(tmp, "%s.%s", wm_instance, wm_class);
158 } else {
159 if (wm_instance)
160 strcat(tmp, wm_instance);
161 if (wm_class)
162 strcat(tmp, wm_class);
165 key = WMCreatePLString(tmp);
166 wfree(tmp);
167 adict = WMGetFromPLDictionary(dict, key);
169 iconk = WMCreatePLString("Icon");
171 if (adict) {
172 val = WMGetFromPLDictionary(adict, iconk);
173 } else {
174 /* no dictionary for app, so create one */
175 adict = WMCreatePLDictionary(NULL, NULL, NULL);
176 WMPutInPLDictionary(dict, key, adict);
177 WMReleasePropList(adict);
178 val = NULL;
180 if (!val) {
181 val = WMCreatePLString(iconPath);
182 WMPutInPLDictionary(adict, iconk, val);
183 WMReleasePropList(val);
185 WMReleasePropList(key);
186 WMReleasePropList(iconk);
188 if (val && !wPreferences.flags.noupdates)
189 WMWritePropListToFile(dict, WDWindowAttributes->path, True);
193 void
194 wApplicationExtractDirPackIcon(WScreen *scr, char *path,
195 char *wm_instance, char *wm_class)
197 char *iconPath=NULL;
198 /* Maybe the app is a .app and it has an icon in it, like
199 * /usr/local/GNUstep/Apps/WPrefs.app/WPrefs.tiff
201 if (strstr(path, ".app")) {
202 char *tmp;
204 tmp = wmalloc(strlen(path)+16);
206 if (scr->flags.supports_tiff) {
207 strcpy(tmp, path);
208 strcat(tmp, ".tiff");
209 if (access(tmp, R_OK)==0)
210 iconPath = tmp;
212 if (!path) {
213 strcpy(tmp, path);
214 strcat(tmp, ".xpm");
215 if (access(tmp, R_OK)==0)
216 iconPath = tmp;
218 if (!iconPath)
219 wfree(tmp);
222 if (iconPath) {
223 saveIconNameFor(iconPath, wm_instance, wm_class);
225 wfree(iconPath);
230 static Bool
231 extractClientIcon(WAppIcon *icon)
233 char *path;
235 path = wIconStore(icon->icon);
236 if (!path)
237 return False;
239 saveIconNameFor(path, icon->wm_instance, icon->wm_class);
241 wfree(path);
243 return True;
247 WApplication*
248 wApplicationCreate(WScreen *scr, Window main_window)
250 WApplication *wapp;
251 WWindow *leader;
253 if (main_window==None || main_window==scr->root_win) {
254 #ifdef DEBUG0
255 wwarning("trying to create application for %x",(unsigned)main_window);
256 #endif
257 return NULL;
261 Window root;
262 int foo;
263 unsigned int bar;
264 /* check if the window is valid */
265 if (!XGetGeometry(dpy, main_window, &root, &foo, &foo, &bar, &bar,
266 &bar, &bar)) {
267 return NULL;
271 wapp = wApplicationOf(main_window);
272 if (wapp) {
273 wapp->refcount++;
274 if (wapp->app_icon && wapp->app_icon->docked &&
275 wapp->app_icon->relaunching && wapp->main_window_desc->fake_group) {
276 wDockFinishLaunch(wapp->app_icon->dock, wapp->app_icon);
279 return wapp;
282 wapp = wmalloc(sizeof(WApplication));
283 memset(wapp, 0, sizeof(WApplication));
285 wapp->refcount = 1;
286 wapp->last_focused = NULL;
288 wapp->last_workspace = 0;
290 wapp->main_window = main_window;
291 wapp->main_window_desc = makeMainWindow(scr, main_window);
292 if (!wapp->main_window_desc) {
293 wfree(wapp);
294 return NULL;
297 extractIcon(wapp->main_window_desc);
299 leader = wWindowFor(main_window);
300 if (leader) {
301 leader->main_window = main_window;
303 wapp->menu = wAppMenuGet(scr, main_window);
304 #ifdef USER_MENU
305 if (!wapp->menu) wapp->menu = wUserMenuGet(scr, wapp->main_window_desc);
306 #endif /* USER_MENU */
310 * Set application wide attributes from the leader.
312 wapp->flags.hidden = WFLAGP(wapp->main_window_desc, start_hidden);
314 wapp->flags.emulated = WFLAGP(wapp->main_window_desc, emulate_appicon);
316 /* application descriptor */
317 XSaveContext(dpy, main_window, wAppWinContext, (XPointer)wapp);
319 if (!WFLAGP(wapp->main_window_desc, no_appicon)) {
320 wapp->app_icon = NULL;
321 if (scr->last_dock)
322 wapp->app_icon = findDockIconFor(scr->last_dock, main_window);
323 /* check main dock if we did not find it in last dock */
324 if (!wapp->app_icon && scr->dock) {
325 wapp->app_icon = findDockIconFor(scr->dock, main_window);
327 /* finally check clips */
328 if (!wapp->app_icon) {
329 int i;
330 for (i=0; i<scr->workspace_count; i++) {
331 WDock *dock = scr->workspaces[i]->clip;
332 if (dock)
333 wapp->app_icon = findDockIconFor(dock, main_window);
334 if (wapp->app_icon)
335 break;
339 if (wapp->app_icon) {
340 WWindow *mainw = wapp->main_window_desc;
342 wapp->app_icon->running = 1;
343 wapp->app_icon->icon->force_paint = 1;
344 wapp->app_icon->icon->owner = mainw;
345 if (mainw->wm_hints && (mainw->wm_hints->flags&IconWindowHint))
346 wapp->app_icon->icon->icon_win = mainw->wm_hints->icon_window;
347 wAppIconPaint(wapp->app_icon);
348 } else {
349 wapp->app_icon = wAppIconCreate(wapp->main_window_desc);
351 } else {
352 wapp->app_icon = NULL;
355 if (wapp->app_icon) {
356 wapp->app_icon->main_window = main_window;
359 if (wapp->app_icon && !wapp->app_icon->docked) {
360 WIcon *icon = wapp->app_icon->icon;
361 WDock *clip = scr->workspaces[scr->current_workspace]->clip;
362 int x=0, y=0;
364 if (clip && clip->attract_icons && wDockFindFreeSlot(clip, &x, &y)) {
365 wapp->app_icon->attracted = 1;
366 if (!wapp->app_icon->icon->shadowed) {
367 wapp->app_icon->icon->shadowed = 1;
368 wapp->app_icon->icon->force_paint = 1;
369 /* We don't do an wAppIconPaint() here because it's in
370 * wDockAttachIcon(). -Dan.
373 wDockAttachIcon(clip, wapp->app_icon, x, y);
374 } else {
375 PlaceIcon(scr, &x, &y);
376 wAppIconMove(wapp->app_icon, x, y);
377 wLowerFrame(icon->core);
379 if (!clip || !wapp->app_icon->attracted || !clip->collapsed)
380 XMapWindow(dpy, icon->core->window);
383 if (wPreferences.auto_arrange_icons && wapp->app_icon && !wapp->app_icon->attracted) {
384 wArrangeIcons(scr, True);
387 if (wapp->app_icon) {
388 char *tmp, *path;
389 struct stat dummy;
390 RImage *image;
392 tmp = wDefaultGetIconFile(scr, wapp->app_icon->wm_instance,
393 wapp->app_icon->wm_class, True);
395 /* If the icon was saved by us from the client supplied icon, but is
396 * missing, recreate it. */
397 if (tmp && strstr(tmp, ".AppInfo/WindowMaker")!=NULL &&
398 stat(tmp, &dummy)!=0 && errno==ENOENT) {
399 wmessage(_("recreating missing icon '%s'"), tmp);
400 path = wIconStore(wapp->app_icon->icon);
401 if (path) {
402 wfree(path);
404 image = wDefaultGetImage(scr, wapp->app_icon->wm_instance,
405 wapp->app_icon->wm_class);
406 if (image) {
407 wIconChangeImage(wapp->app_icon->icon, image);
408 wAppIconPaint(wapp->app_icon);
409 /* TODO:
410 * wIconChangeImage() should be rewriten to use retain/release
411 * The way it is now is too confusing about where the icon is
412 * finally released. -Dan */
413 /* --this is wrong at the moment-- RReleaseImage(image);*/
417 /* if the displayed icon was supplied by the client, save the icon */
418 if (!tmp)
419 extractClientIcon(wapp->app_icon);
422 wSoundPlay(WSOUND_APPSTART);
424 #ifdef DEBUG
425 printf("Created application for %x\n", (unsigned)main_window);
426 #endif
427 return wapp;
431 void
432 wApplicationDestroy(WApplication *wapp)
434 Window main_window;
435 WWindow *wwin;
436 WScreen *scr;
438 if (!wapp)
439 return;
441 wapp->refcount--;
442 if (wapp->refcount>0)
443 return;
446 scr = wapp->main_window_desc->screen_ptr;
447 main_window = wapp->main_window;
449 if (wapp == scr->wapp_list) {
450 if (wapp->next)
451 wapp->next->prev = NULL;
452 scr->wapp_list = wapp->next;
453 } else {
454 if (wapp->next)
455 wapp->next->prev = wapp->prev;
456 if (wapp->prev)
457 wapp->prev->next = wapp->next;
460 XDeleteContext(dpy, wapp->main_window, wAppWinContext);
461 wAppMenuDestroy(wapp->menu);
462 if (wapp->app_icon) {
463 if (wapp->app_icon->docked && !wapp->app_icon->attracted) {
464 wapp->app_icon->running = 0;
465 /* since we keep it, we don't care if it was attracted or not */
466 wapp->app_icon->attracted = 0;
467 wapp->app_icon->icon->shadowed = 0;
468 wapp->app_icon->main_window = None;
469 wapp->app_icon->pid = 0;
470 wapp->app_icon->icon->owner = NULL;
471 wapp->app_icon->icon->icon_win = None;
472 wapp->app_icon->icon->force_paint = 1;
473 wAppIconPaint(wapp->app_icon);
474 } else if (wapp->app_icon->docked) {
475 wapp->app_icon->running = 0;
476 wDockDetach(wapp->app_icon->dock, wapp->app_icon);
477 } else {
478 wAppIconDestroy(wapp->app_icon);
481 wwin = wWindowFor(wapp->main_window_desc->client_win);
483 wWindowDestroy(wapp->main_window_desc);
484 if (wwin) {
485 /* undelete client window context that was deleted in
486 * wWindowDestroy */
487 XSaveContext(dpy, wwin->client_win, wWinContext,
488 (XPointer)&wwin->client_descriptor);
490 wfree(wapp);
492 #ifdef DEBUG
493 printf("Destroyed application for %x\n", (unsigned)main_window);
494 #endif
495 if (wPreferences.auto_arrange_icons) {
496 wArrangeIcons(scr, True);
499 wSoundPlay(WSOUND_APPEXIT);