~ctwm/ctwm/trunk

523.1.11 by Matthew Fuller
Inagurate win_ops.c by moving the focus functions from util.c into it.
1
/*
2
 * Window operations
3
 */
4
#ifndef _CTWM_WIN_OPS_H
5
#define _CTWM_WIN_OPS_H
6
7
8
void SetFocusVisualAttributes(TwmWindow *tmp_win, bool focus);
9
void SetFocus(TwmWindow *tmp_win, Time tim);
523.1.22 by Matthew Fuller
FocusOnRoot() is a little off what I'd really consider a "window op",
10
void FocusOnRoot(void);
523.1.15 by Matthew Fuller
Move squeezing bits into win_ops from menus.c. This lets us reap
11
void AutoSqueeze(TwmWindow *tmp_win);
12
void Squeeze(TwmWindow *tmp_win);
523.1.25 by Matthew Fuller
Move MoveOutline() over to win_ops.
13
void MoveOutline(Window root, int x, int y, int width, int height,
14
                 int bw, int th);
523.1.11 by Matthew Fuller
Inagurate win_ops.c by moving the focus functions from util.c into it.
15
16
17
#endif /* _CTWM_WIN_OPS_H */