blob: 1604bd3cd3d4e7df14c948395c20f9a860647dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _CONTEXT_H
#define _CONTEXT_H
typedef struct _vwm_t vwm_t;
typedef enum _vwm_context_t {
VWM_CONTEXT_DESKTOP = 0, /* focus the desktop context */
VWM_CONTEXT_SHELF, /* focus the shelf context */
VWM_CONTEXT_OTHER /* focus the other context relative to the current one */
} vwm_context_t;
int vwm_context_focus(vwm_t *vwm, vwm_context_t desired_context);
#endif
|