File: hide_control.c

package info (click to toggle)
garlic 1.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,134
file content (54 lines) | stat: -rw-r--r-- 1,305 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
50
51
52
53
54
/* Copyright (C) 2000 Damir Zucic */

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

				hide_control.c

Purpose:
	Hide control and resize output window.

Input:
	(1) Pointer to GUIS structure.

Output:
	(1) Control window hidden.

Return value:
	No return value.

========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"

/*======hide control and resize output window:===============================*/

void HideControlWindow_ (GUIS *guiSP)
{
int		border_width = 1;

/* Hide the control window: */
XUnmapWindow (guiSP->displaySP, guiSP->control_winS.ID);

/* Move the output window to the new position: */
guiSP->output_winS.y0 = guiSP->control_winS.y0;
XMoveWindow (guiSP->displaySP, guiSP->output_winS.ID,
	     guiSP->output_winS.x0, guiSP->output_winS.y0);

/* Resize the output window: */
guiSP->output_winS.height = guiSP->main_winS.height - 2 * border_width - 2;
XResizeWindow (guiSP->displaySP, guiSP->output_winS.ID,
	       guiSP->output_winS.width, guiSP->output_winS.height);

}

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