File: wmhints.c

package info (click to toggle)
garlic 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,133
file content (49 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				wmhints.c

Purpose:
	Set window manager hints: icon information, the initial state of
	the window etc.

Input:
	Pointer to GUIS structure.

Output:
	(1) Some data stored to GUIS structure.

Return value:
	No return value.

Notes:
	(1) The function XSetWMHints is not called here  (as it was done
	    in versions 1.x and 1.0). This function is obsolete (X11R3).
	

========includes:============================================================*/

#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======set window manager hints:============================================*/

void SetWMHints_ (GUIS *guiSP)
{
guiSP->wm_hintsS.flags         = InputHint | StateHint | IconWindowHint;
guiSP->wm_hintsS.input         = True;
guiSP->wm_hintsS.initial_state = NormalState;
guiSP->wm_hintsS.icon_window   = guiSP->icon_winS.ID;
}

/*===========================================================================*/