~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to win_iconify.h

  • Committer: Matthew Fuller
  • Date: 2016-09-03 04:29:20 UTC
  • mto: This revision was merged to the branch mainline in revision 521.
  • Revision ID: fullermd@over-yonder.net-20160903042920-4m0rvevk8z1dejcs
Bust functions related to iconifying/deiconifying windows out of
menus.c (the obvious place) and into their own file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */