OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WINDOW
(Results
1 - 25
of
125
) sorted by relevancy
1
2
3
4
5
/src/games/cribbage/
cribcur.h
34
# define PLAY_Y 15 /* size of player's hand
window
*/
36
# define TABLE_Y 21 /* size of table
window
*/
38
# define COMP_Y 15 /* size of computer's hand
window
*/
52
extern
WINDOW
*Compwin; /* computer's hand
window
*/
53
extern
WINDOW
*Msgwin; /* message
window
*/
54
extern
WINDOW
*Playwin; /* player's hand
window
*/
55
extern
WINDOW
*Tablewin; /* table window *
[
all
...]
extern.c
69
WINDOW
*Compwin; /* computer's hand
window
*/
70
WINDOW
*Msgwin; /* messages for the player */
71
WINDOW
*Playwin; /* player's hand
window
*/
72
WINDOW
*Tablewin; /* table
window
*/
/src/usr.bin/systat/
extern.h
47
extern
WINDOW
*wnd;
76
void closebufcache(
WINDOW
*);
77
void closedf(
WINDOW
*);
78
void closeicmp(
WINDOW
*);
79
void closeifstat(
WINDOW
*);
80
void closeiostat(
WINDOW
*);
81
void closeip(
WINDOW
*);
82
void closevmstat(
WINDOW
*);
83
void closesyscall(
WINDOW
*);
84
void closembufs(
WINDOW
*);
[
all
...]
systat.h
42
WINDOW
*(*c_open)(void); /* open display */
43
void (*c_close)(
WINDOW
*); /* close display */
/src/lib/libcurses/
curses.h
212
* A
window
is an array of __LINE structures pointed to by the 'lines' pointer.
239
typedef struct __window
WINDOW
;
407
extern
WINDOW
*curscr; /* Current screen. */
408
extern
WINDOW
*stdscr; /* Standard screen. */
583
int waddbytes(
WINDOW
*, const char *, int);
584
int waddstr(
WINDOW
*, const char *);
604
int mvwaddbytes(
WINDOW
*, int, int, const char *, int);
605
int mvwaddch(
WINDOW
*, int, int, chtype);
606
int mvwaddchnstr(
WINDOW
*, int, int, const chtype *, int);
607
int mvwaddchstr(
WINDOW
*, int, int, const chtype *)
[
all
...]
getyx.c
44
* Get the y position of the
window
relative to the parent
window
48
getpary(
WINDOW
*win)
62
* Get the x position of the
window
relative to the parent
window
66
getparx(
WINDOW
*win)
80
* Get current y position on
window
.
83
getcury(
WINDOW
*win)
94
* Get current x position on
window
.
97
getcurx(
WINDOW
*win
[
all
...]
leaveok.c
42
* Turn on and off leave cursor after refresh for the given
window
.
45
leaveok(
WINDOW
*win, bool bf)
59
* Return true if
window
is set for leaveok.
62
is_leaveok(const
WINDOW
*win)
deleteln.c
62
wdeleteln(
WINDOW
*win)
insertln.c
61
* Do an insert-line on the
window
, leaving (cury, curx) unchanged.
64
winsertln(
WINDOW
*win)
nodelay.c
40
* given
window
.
43
nodelay(
WINDOW
*win, bool bf)
box.c
45
* Draw a box around the given
window
with "vert" as the vertical
49
box(
WINDOW
*win, chtype vert, chtype hor)
55
box_set(
WINDOW
*win, const cchar_t *verch, const cchar_t *horch)
overlay.c
51
overlay(const
WINDOW
*win1,
WINDOW
*win2)
overwrite.c
52
overwrite(const
WINDOW
*win1,
WINDOW
*win2)
echo_wchar.c
60
wecho_wchar(
WINDOW
*win, const cchar_t *wch)
76
pecho_wchar(
WINDOW
*pad, const cchar_t *wch)
echochar.c
58
wechochar(
WINDOW
*win, const chtype ch)
74
pechochar(
WINDOW
*pad, const chtype ch)
id_subwins.c
49
__id_subwins(
WINDOW
*orig)
51
WINDOW
*win;
keypad.c
40
* given
window
.
43
keypad(
WINDOW
*win, bool bf)
64
* Return true if
window
is set for keypad.
67
is_keypad(const
WINDOW
*win)
standout.c
72
* Enter standout mode in
window
win.
75
wstandout(
WINDOW
*win)
95
* Exit standout mode in
window
win.
98
wstandend(
WINDOW
*win)
underscore.c
72
wunderscore(
WINDOW
*win)
92
wunderend(
WINDOW
*win)
curses_private.h
60
* A
window
is an array of __LINE structures pointed to by the 'lines' pointer.
100
struct __window { /*
Window
structure. */
102
int begy, begx; /*
Window
home. */
109
__LDATA *wspace; /*
window
space (for cleanup) */
113
#define __FULLWIN 0x00000004 /*
Window
is a screen. */
115
#define __SCROLLWIN 0x00000010 /* Last char will scroll
window
. */
122
#define __ISPAD 0x00080000 /* "
window
" is a pad */
123
#define __ISDERWIN 0x00100000 /* "
window
" is derived from parent */
134
SCREEN *screen; /* Screen for this
window
*/
138
int dery, derx; /* derived
window
coordinate
[
all
...]
/src/lib/libpanel/
window.c
1
/* $NetBSD:
window
.c,v 1.3 2015/11/02 02:45:25 kamil Exp $ */
29
__RCSID("$NetBSD:
window
.c,v 1.3 2015/11/02 02:45:25 kamil Exp $");
34
WINDOW
*
panel.h
37
PANEL *new_panel(
WINDOW
*);
40
int replace_panel(PANEL *,
WINDOW
*);
41
WINDOW
*panel_window(PANEL *);
new.c
38
_new_panel(
WINDOW
*w)
55
new_panel(
WINDOW
*w)
/src/usr.bin/aiomixer/
app.h
47
WINDOW
*widgetpad;
54
WINDOW
*widgetpad;
71
WINDOW
*header;
72
WINDOW
*classbar;
/src/usr.bin/talk/
talk.h
50
WINDOW
*x_win;
62
extern
WINDOW
*line_win;
82
int readwin(
WINDOW
*, int, int);
Completed in 31 milliseconds
1
2
3
4
5
Indexes created Sun Oct 19 02:09:48 GMT 2025