Start development on 386BSD 0.0
[unix-history] / .ref-BSD-4_3_Net_2 / usr / src / games / chess / Xchess / scrollText.h
CommitLineData
cb290b32
C
1/*
2 * Scrollable Text Window Header File
3 *
4 * David Harrison
5 * University of California, Berkeley
6 * 1986
7 *
8 * This file contains definitions for a scrollable text window
9 * with scroll bar support.
10 */
11
12int TxtGrab();
13 /* Take hold of a previously created window */
14
15#define TXT_NO_COLOR -1
16
17int TxtAddFont();
18 /* Loads a new font for use later */
19int TxtWinP();
20 /* Returns non-zero value if the window is text window */
21int TxtClear();
22 /* Clears text window and resets text buffer */
23
24int TxtWriteStr();
25 /* Writes a string to window with immediate update */
26int TxtJamStr();
27 /* Write a string without causing update to screen */
28
29int TxtRepaint();
30 /* Repaints entire scrollable text window */
31int TxtFilter();
32 /* Handles events related to text window */