1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/* * Copyright 1992 Claude Lecommandeur. */ #ifndef _CTWM_WINDOWBOX_H #define _CTWM_WINDOWBOX_H name_list **addWindowBox(char *boxname, char *geometry); void createWindowBoxes(void); WindowBox *findWindowBox(TwmWindow *twmwin); void ConstrainedToWinBox(TwmWindow *twmwin, int x, int y, int *nx, int *ny); void fittocontent(TwmWindow *twmwin); #endif /* _CTWM_WINDOWBOX_H */ |