mirror of
https://github.com/gryf/wmaker.git
synced 2026-04-05 14:53:34 +02:00
This patch is adding vim-like window marking, like in i3. A window can be dynamically assigned a mark label. Then a marked window can be pulled or jumped to. Or the current focused window can be swapped with a marked window. The mark label appears in the Window List in between the window title and the workspace name. Those new options in WindowMaker conf file are used to control the actions: MarkSetKey, MarkUnsetKey, MarkBringKey, MarkJumpKey and MarkSwapKey. Those actions are set to None by default.
597 lines
14 KiB
C
597 lines
14 KiB
C
/* session.c - session state handling and R6 style session management
|
|
*
|
|
* Copyright (c) 1998-2003 Dan Pascu
|
|
* Copyright (c) 1998-2003 Alfredo Kojima
|
|
*
|
|
* Window Maker window manager
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* If defined(XSMP_ENABLED) and session manager is running then
|
|
* do normal stuff
|
|
* else
|
|
* do pre-R6 session management stuff (save window state and relaunch)
|
|
*
|
|
* When doing a checkpoint:
|
|
*
|
|
* = Without XSMP
|
|
* Open "Stop"/status Dialog
|
|
* Send SAVE_YOURSELF to clients and wait for reply
|
|
* Save restart info
|
|
* Save state of clients
|
|
*
|
|
* = With XSMP
|
|
* Send checkpoint request to sm
|
|
*
|
|
* When exiting:
|
|
* -------------
|
|
*
|
|
* = Without XSMP
|
|
*
|
|
* Open "Exit Now"/status Dialog
|
|
* Send SAVE_YOURSELF to clients and wait for reply
|
|
* Save restart info
|
|
* Save state of clients
|
|
* Send DELETE to all clients
|
|
* When no more clients are left or user hit "Exit Now", exit
|
|
*
|
|
* = With XSMP
|
|
*
|
|
* Send Shutdown request to session manager
|
|
* if SaveYourself message received, save state of clients
|
|
* if the Die message is received, exit.
|
|
*/
|
|
|
|
#include "wconfig.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
|
|
#include "WindowMaker.h"
|
|
#include "screen.h"
|
|
#include "window.h"
|
|
#include "client.h"
|
|
#include "session.h"
|
|
#include "framewin.h"
|
|
#include "workspace.h"
|
|
#include "main.h"
|
|
#include "properties.h"
|
|
#include "application.h"
|
|
#include "appicon.h"
|
|
#include "dock.h"
|
|
#include "misc.h"
|
|
|
|
#include <WINGs/WUtil.h>
|
|
|
|
|
|
static WMPropList *sApplications = NULL;
|
|
static WMPropList *sCommand;
|
|
static WMPropList *sName;
|
|
static WMPropList *sHost;
|
|
static WMPropList *sWorkspace;
|
|
static WMPropList *sShaded;
|
|
static WMPropList *sMiniaturized;
|
|
static WMPropList *sMaximized;
|
|
static WMPropList *sHidden;
|
|
static WMPropList *sGeometry;
|
|
static WMPropList *sShortcutMask;
|
|
static WMPropList *sMarkKey;
|
|
|
|
static WMPropList *sDock;
|
|
static WMPropList *sYes, *sNo;
|
|
|
|
static void make_keys(void)
|
|
{
|
|
if (sApplications != NULL)
|
|
return;
|
|
|
|
sApplications = WMCreatePLString("Applications");
|
|
sCommand = WMCreatePLString("Command");
|
|
sName = WMCreatePLString("Name");
|
|
sHost = WMCreatePLString("Host");
|
|
sWorkspace = WMCreatePLString("Workspace");
|
|
sShaded = WMCreatePLString("Shaded");
|
|
sMiniaturized = WMCreatePLString("Miniaturized");
|
|
sMaximized = WMCreatePLString("Maximized");
|
|
sHidden = WMCreatePLString("Hidden");
|
|
sGeometry = WMCreatePLString("Geometry");
|
|
sDock = WMCreatePLString("Dock");
|
|
sShortcutMask = WMCreatePLString("ShortcutMask");
|
|
sMarkKey = WMCreatePLString("MarkKey");
|
|
|
|
sYes = WMCreatePLString("Yes");
|
|
sNo = WMCreatePLString("No");
|
|
}
|
|
|
|
static unsigned getInt(WMPropList * value)
|
|
{
|
|
char *val;
|
|
unsigned n;
|
|
|
|
if (!WMIsPLString(value))
|
|
return 0;
|
|
val = WMGetFromPLString(value);
|
|
if (!val)
|
|
return 0;
|
|
if (sscanf(val, "%u", &n) != 1)
|
|
return 0;
|
|
|
|
return n;
|
|
}
|
|
|
|
static unsigned getHex(WMPropList * value)
|
|
{
|
|
char *val;
|
|
unsigned n;
|
|
|
|
if (!WMIsPLString(value))
|
|
return 0;
|
|
val = WMGetFromPLString(value);
|
|
if (!val)
|
|
return 0;
|
|
if (sscanf(val, "0x%04X", &n) != 1)
|
|
return 0;
|
|
|
|
return n;
|
|
}
|
|
|
|
static WMPropList *makeWindowState(WWindow * wwin, WApplication * wapp)
|
|
{
|
|
WScreen *scr = wwin->screen_ptr;
|
|
Window win;
|
|
int i;
|
|
unsigned mask;
|
|
char *class, *instance, *command = NULL, buffer[512];
|
|
WMPropList *win_state, *cmd, *name, *workspace;
|
|
WMPropList *shaded, *miniaturized, *maximized, *hidden, *geometry;
|
|
WMPropList *dock, *shortcut;
|
|
WMPropList *mark_key_pl = NULL;
|
|
|
|
if (wwin->orig_main_window != None && wwin->orig_main_window != wwin->client_win)
|
|
win = wwin->orig_main_window;
|
|
else
|
|
win = wwin->client_win;
|
|
|
|
command = GetCommandForWindow(win);
|
|
if (!command) {
|
|
if (wapp->app_icon && wapp->app_icon->command) {
|
|
command = wmalloc(strlen(wapp->app_icon->command) + 1);
|
|
strcpy(command, wapp->app_icon->command);
|
|
} else
|
|
return NULL;
|
|
}
|
|
|
|
if (PropGetWMClass(win, &class, &instance)) {
|
|
if (class && instance) {
|
|
if (class[0] == '\0' && wwin->wm_class && wwin->wm_class[0] != '\0')
|
|
class = strdup(wwin->wm_class);
|
|
snprintf(buffer, sizeof(buffer), "%s%s%s", instance, class[0] ? "." : "", class);
|
|
}
|
|
else if (instance)
|
|
snprintf(buffer, sizeof(buffer), "%s", instance);
|
|
else if (class)
|
|
snprintf(buffer, sizeof(buffer), ".%s", class);
|
|
else
|
|
snprintf(buffer, sizeof(buffer), ".");
|
|
|
|
name = WMCreatePLString(buffer);
|
|
cmd = WMCreatePLString(command);
|
|
workspace = WMCreatePLString(scr->workspaces[wwin->frame->workspace]->name);
|
|
|
|
shaded = wwin->flags.shaded ? sYes : sNo;
|
|
miniaturized = wwin->flags.miniaturized ? sYes : sNo;
|
|
snprintf(buffer, sizeof(buffer), "0x%04X", wwin->flags.maximized);
|
|
maximized = WMCreatePLString(buffer);
|
|
hidden = wwin->flags.hidden ? sYes : sNo;
|
|
snprintf(buffer, sizeof(buffer), "%ix%i+%i+%i",
|
|
wwin->client.width, wwin->client.height, wwin->frame_x, wwin->frame_y);
|
|
geometry = WMCreatePLString(buffer);
|
|
|
|
for (mask = 0, i = 0; i < MAX_WINDOW_SHORTCUTS; i++) {
|
|
if (scr->shortcutWindows[i] != NULL &&
|
|
WMGetFirstInArray(scr->shortcutWindows[i], wwin) != WANotFound)
|
|
mask |= 1 << i;
|
|
}
|
|
|
|
snprintf(buffer, sizeof(buffer), "%u", mask);
|
|
shortcut = WMCreatePLString(buffer);
|
|
|
|
if (wwin->mark_key_label)
|
|
mark_key_pl = WMCreatePLString(wwin->mark_key_label);
|
|
|
|
win_state = WMCreatePLDictionary(sName, name,
|
|
sCommand, cmd,
|
|
sWorkspace, workspace,
|
|
sShaded, shaded,
|
|
sMiniaturized, miniaturized,
|
|
sMaximized, maximized,
|
|
sHidden, hidden,
|
|
sShortcutMask, shortcut, sGeometry, geometry, NULL);
|
|
|
|
if (mark_key_pl) {
|
|
WMPutInPLDictionary(win_state, sMarkKey, mark_key_pl);
|
|
WMReleasePropList(mark_key_pl);
|
|
}
|
|
|
|
WMReleasePropList(name);
|
|
WMReleasePropList(cmd);
|
|
WMReleasePropList(workspace);
|
|
WMReleasePropList(maximized);
|
|
WMReleasePropList(geometry);
|
|
WMReleasePropList(shortcut);
|
|
if (wapp && wapp->app_icon && wapp->app_icon->dock) {
|
|
int i;
|
|
char *name = NULL;
|
|
if (wapp->app_icon->dock == scr->dock)
|
|
name = "Dock";
|
|
|
|
/* Try the clips */
|
|
if (name == NULL) {
|
|
for (i = 0; i < scr->workspace_count; i++)
|
|
if (scr->workspaces[i]->clip == wapp->app_icon->dock)
|
|
break;
|
|
if (i < scr->workspace_count)
|
|
name = scr->workspaces[i]->name;
|
|
}
|
|
/* Try the drawers */
|
|
if (name == NULL) {
|
|
WDrawerChain *dc;
|
|
for (dc = scr->drawers; dc != NULL; dc = dc->next) {
|
|
if (dc->adrawer == wapp->app_icon->dock)
|
|
break;
|
|
}
|
|
assert(dc != NULL);
|
|
name = dc->adrawer->icon_array[0]->wm_instance;
|
|
}
|
|
dock = WMCreatePLString(name);
|
|
WMPutInPLDictionary(win_state, sDock, dock);
|
|
WMReleasePropList(dock);
|
|
}
|
|
} else {
|
|
win_state = NULL;
|
|
}
|
|
|
|
if (instance)
|
|
free(instance);
|
|
if (class)
|
|
free(class);
|
|
if (command)
|
|
wfree(command);
|
|
|
|
return win_state;
|
|
}
|
|
|
|
void wSessionSaveState(WScreen * scr)
|
|
{
|
|
WWindow *wwin = scr->focused_window;
|
|
WMPropList *win_info, *wks;
|
|
WMPropList *list = NULL;
|
|
WMArray *wapp_list = NULL;
|
|
|
|
make_keys();
|
|
|
|
if (!scr->session_state) {
|
|
scr->session_state = WMCreatePLDictionary(NULL, NULL);
|
|
if (!scr->session_state)
|
|
return;
|
|
}
|
|
|
|
list = WMCreatePLArray(NULL);
|
|
|
|
wapp_list = WMCreateArray(16);
|
|
|
|
while (wwin) {
|
|
WApplication *wapp = wApplicationOf(wwin->main_window);
|
|
Window appId = wwin->orig_main_window;
|
|
|
|
if ((wwin->transient_for == None || wwin->transient_for == wwin->screen_ptr->root_win)
|
|
&& (WMGetFirstInArray(wapp_list, (void *)appId) == WANotFound
|
|
|| WFLAGP(wwin, shared_appicon))
|
|
&& !WFLAGP(wwin, dont_save_session)) {
|
|
/* A entry for this application was not yet saved. Save one. */
|
|
win_info = makeWindowState(wwin, wapp);
|
|
if (win_info != NULL) {
|
|
WMAddToPLArray(list, win_info);
|
|
WMReleasePropList(win_info);
|
|
/* If we were successful in saving the info for this window
|
|
* add the application the window belongs to, to the
|
|
* application list, so no multiple entries for the same
|
|
* application are saved.
|
|
*/
|
|
WMAddToArray(wapp_list, (void *)appId);
|
|
}
|
|
}
|
|
wwin = wwin->prev;
|
|
}
|
|
WMRemoveFromPLDictionary(scr->session_state, sApplications);
|
|
WMPutInPLDictionary(scr->session_state, sApplications, list);
|
|
WMReleasePropList(list);
|
|
|
|
wks = WMCreatePLString(scr->workspaces[scr->current_workspace]->name);
|
|
WMPutInPLDictionary(scr->session_state, sWorkspace, wks);
|
|
WMReleasePropList(wks);
|
|
|
|
WMFreeArray(wapp_list);
|
|
}
|
|
|
|
void wSessionClearState(WScreen * scr)
|
|
{
|
|
make_keys();
|
|
|
|
if (!scr->session_state)
|
|
return;
|
|
|
|
WMRemoveFromPLDictionary(scr->session_state, sApplications);
|
|
WMRemoveFromPLDictionary(scr->session_state, sWorkspace);
|
|
}
|
|
|
|
static pid_t execCommand(WScreen *scr, char *command)
|
|
{
|
|
pid_t pid;
|
|
char **argv;
|
|
int argc;
|
|
|
|
wtokensplit(command, &argv, &argc);
|
|
|
|
if (!argc) {
|
|
wfree(argv);
|
|
return 0;
|
|
}
|
|
|
|
pid = fork();
|
|
if (pid == 0) {
|
|
char **args;
|
|
int i;
|
|
|
|
SetupEnvironment(scr);
|
|
|
|
args = malloc(sizeof(char *) * (argc + 1));
|
|
if (!args)
|
|
exit(111);
|
|
for (i = 0; i < argc; i++) {
|
|
args[i] = argv[i];
|
|
}
|
|
args[argc] = NULL;
|
|
execvp(argv[0], args);
|
|
exit(111);
|
|
}
|
|
wtokenfree(argv, argc);
|
|
return pid;
|
|
}
|
|
|
|
static WSavedState *getWindowState(WScreen * scr, WMPropList * win_state)
|
|
{
|
|
WSavedState *state = wmalloc(sizeof(WSavedState));
|
|
WMPropList *value;
|
|
char *tmp;
|
|
unsigned mask;
|
|
int i;
|
|
|
|
state->workspace = -1;
|
|
value = WMGetFromPLDictionary(win_state, sWorkspace);
|
|
if (value && WMIsPLString(value)) {
|
|
tmp = WMGetFromPLString(value);
|
|
if (sscanf(tmp, "%i", &state->workspace) != 1) {
|
|
state->workspace = -1;
|
|
for (i = 0; i < scr->workspace_count; i++) {
|
|
if (strcmp(scr->workspaces[i]->name, tmp) == 0) {
|
|
state->workspace = i;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
state->workspace--;
|
|
}
|
|
}
|
|
|
|
value = WMGetFromPLDictionary(win_state, sShaded);
|
|
if (value != NULL)
|
|
state->shaded = WMPLGetBool(value);
|
|
|
|
value = WMGetFromPLDictionary(win_state, sMiniaturized);
|
|
if (value != NULL)
|
|
state->miniaturized = WMPLGetBool(value);
|
|
|
|
value = WMGetFromPLDictionary(win_state, sMaximized);
|
|
if (value != NULL) {
|
|
state->maximized = getHex(value);
|
|
}
|
|
|
|
value = WMGetFromPLDictionary(win_state, sHidden);
|
|
if (value != NULL)
|
|
state->hidden = WMPLGetBool(value);
|
|
|
|
value = WMGetFromPLDictionary(win_state, sShortcutMask);
|
|
if (value != NULL) {
|
|
mask = getInt(value);
|
|
state->window_shortcuts = mask;
|
|
}
|
|
|
|
value = WMGetFromPLDictionary(win_state, sMarkKey);
|
|
if (value != NULL && WMIsPLString(value)) {
|
|
char *s = WMGetFromPLString(value);
|
|
if (s && *s)
|
|
state->mark_key = wstrdup(s);
|
|
}
|
|
|
|
value = WMGetFromPLDictionary(win_state, sGeometry);
|
|
if (value && WMIsPLString(value)) {
|
|
if (!(sscanf(WMGetFromPLString(value), "%ix%i+%i+%i",
|
|
&state->w, &state->h, &state->x, &state->y) == 4 && (state->w > 0 && state->h > 0))) {
|
|
state->w = 0;
|
|
state->h = 0;
|
|
}
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
void wSessionRestoreState(WScreen *scr)
|
|
{
|
|
WSavedState *state;
|
|
char *instance, *class, *command;
|
|
WMPropList *win_info, *apps, *cmd, *value;
|
|
pid_t pid;
|
|
int i, count;
|
|
WDock *dock;
|
|
WAppIcon *btn = NULL;
|
|
int j, n, found;
|
|
char *tmp;
|
|
|
|
make_keys();
|
|
|
|
if (!scr->session_state)
|
|
return;
|
|
|
|
WMPLSetCaseSensitive(True);
|
|
|
|
apps = WMGetFromPLDictionary(scr->session_state, sApplications);
|
|
if (!apps)
|
|
return;
|
|
|
|
count = WMGetPropListItemCount(apps);
|
|
if (count == 0)
|
|
return;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
win_info = WMGetFromPLArray(apps, i);
|
|
|
|
cmd = WMGetFromPLDictionary(win_info, sCommand);
|
|
if (!cmd || !WMIsPLString(cmd) || !(command = WMGetFromPLString(cmd))) {
|
|
continue;
|
|
}
|
|
|
|
value = WMGetFromPLDictionary(win_info, sName);
|
|
if (!value)
|
|
continue;
|
|
|
|
ParseWindowName(value, &instance, &class, "session");
|
|
if (!instance && !class)
|
|
continue;
|
|
|
|
state = getWindowState(scr, win_info);
|
|
|
|
dock = NULL;
|
|
value = WMGetFromPLDictionary(win_info, sDock);
|
|
if (value && WMIsPLString(value) && (tmp = WMGetFromPLString(value)) != NULL) {
|
|
if (sscanf(tmp, "%i", &n) != 1) {
|
|
if (!strcasecmp(tmp, "DOCK"))
|
|
dock = scr->dock;
|
|
|
|
/* Try the clips */
|
|
if (dock == NULL) {
|
|
for (j = 0; j < scr->workspace_count; j++) {
|
|
if (strcmp(scr->workspaces[j]->name, tmp) == 0) {
|
|
dock = scr->workspaces[j]->clip;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (dock == NULL) // Try the drawers
|
|
{
|
|
WDrawerChain *dc;
|
|
for (dc = scr->drawers; dc != NULL; dc = dc->next)
|
|
{
|
|
if (strcmp(dc->adrawer->icon_array[0]->wm_instance, tmp) == 0)
|
|
{
|
|
dock = dc->adrawer;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if (n == 0) {
|
|
dock = scr->dock;
|
|
} else if (n > 0 && n <= scr->workspace_count) {
|
|
dock = scr->workspaces[n - 1]->clip;
|
|
}
|
|
}
|
|
}
|
|
|
|
found = 0;
|
|
if (dock != NULL) {
|
|
for (j = 0; j < dock->max_icons; j++) {
|
|
btn = dock->icon_array[j];
|
|
if (btn && WMStrEqual(instance, btn->wm_instance) &&
|
|
WMStrEqual(class, btn->wm_class) &&
|
|
WMStrEqual(command, btn->command) &&
|
|
!btn->launching) {
|
|
found = 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (found) {
|
|
wDockLaunchWithState(btn, state);
|
|
} else if ((pid = execCommand(scr, command)) > 0) {
|
|
wWindowAddSavedState(instance, class, command, pid, state);
|
|
} else {
|
|
if (state->mark_key)
|
|
wfree(state->mark_key);
|
|
wfree(state);
|
|
}
|
|
|
|
if (instance)
|
|
wfree(instance);
|
|
if (class)
|
|
wfree(class);
|
|
}
|
|
/* clean up */
|
|
WMPLSetCaseSensitive(False);
|
|
}
|
|
|
|
void wSessionRestoreLastWorkspace(WScreen * scr)
|
|
{
|
|
WMPropList *wks;
|
|
int w;
|
|
char *value;
|
|
|
|
make_keys();
|
|
|
|
if (!scr->session_state)
|
|
return;
|
|
|
|
WMPLSetCaseSensitive(True);
|
|
|
|
wks = WMGetFromPLDictionary(scr->session_state, sWorkspace);
|
|
if (!wks || !WMIsPLString(wks))
|
|
return;
|
|
|
|
value = WMGetFromPLString(wks);
|
|
|
|
if (!value)
|
|
return;
|
|
|
|
/* clean up */
|
|
WMPLSetCaseSensitive(False);
|
|
|
|
/* Get the workspace number for the workspace name */
|
|
w = wGetWorkspaceNumber(scr, value);
|
|
|
|
if (w != scr->current_workspace && w < scr->workspace_count)
|
|
wWorkspaceChange(scr, w);
|
|
}
|