~ctwm/ctwm/trunk

520.1.2 by Matthew Fuller
Bust functions related to iconifying/deiconifying windows out of
1
/*
2
 * Window de/iconification routines
3
 */
4
#ifndef _CTWM_WIN_ICONIFY_H
5
#define _CTWM_WIN_ICONIFY_H
6
7
8
/* De/Iconifying */
9
void Iconify(TwmWindow *tmp_win, int def_x, int def_y);
10
void DeIconify(TwmWindow *tmp_win);
11
12
/* Lower-level utils, but the squeeze code uses them too */
13
void ReMapTransients(TwmWindow *tmp_win);
14
void UnmapTransients(TwmWindow *tmp_win, bool iconify, long eventMask);
15
16
17
#endif /* _CTWM_WIN_ICONIFY_H */