Home | History | Annotate | Download | only in include

Lines Matching defs:bool

147 /* X/Open and SVr4 specify that curses implements 'bool'.  However, C++ may also
151 * A further complication is that <stdbool.h> may declare 'bool' to be a
153 * C++. If we have <stdbool.h>, make 'bool' a macro, so users may #undef it.
169 /* use the C++ compiler's bool type */
170 #define NCURSES_BOOL bool
176 /* use whatever the C compiler decides bool really is */
177 #define NCURSES_BOOL bool
179 /* there is no predefined bool - use our own */
180 #undef bool
181 #define bool NCURSES_BOOL
380 bool _notimeout; /* no time out on function-key entry? */
381 bool _clear; /* consider all data in the window invalid? */
382 bool _leaveok; /* OK to not reset cursor on exit? */
383 bool _scroll; /* OK to scroll this window? */
384 bool _idlok; /* OK to use insert/delete line? */
385 bool _idcok; /* OK to use insert/delete char? */
386 bool _immed; /* window in immed mode? (not yet used) */
387 bool _sync; /* window in sync mode? */
388 bool _use_keypad; /* process function keys into KEY_ symbols? */
537 extern NCURSES_EXPORT(bool) can_change_color (void); /* implemented */
541 extern NCURSES_EXPORT(int) clearok (WINDOW *,bool); /* implemented */
573 extern NCURSES_EXPORT(bool) has_colors (void); /* implemented */
574 extern NCURSES_EXPORT(bool) has_ic (void); /* implemented */
575 extern NCURSES_EXPORT(bool) has_il (void); /* implemented */
577 extern NCURSES_EXPORT(void) idcok (WINDOW *, bool); /* implemented */
578 extern NCURSES_EXPORT(int) idlok (WINDOW *, bool); /* implemented */
579 extern NCURSES_EXPORT(void) immedok (WINDOW *, bool); /* implemented */
593 extern NCURSES_EXPORT(int) intrflush (WINDOW *,bool); /* implemented */
594 extern NCURSES_EXPORT(bool) isendwin (void); /* implemented */
595 extern NCURSES_EXPORT(bool) is_linetouched (WINDOW *,int); /* implemented */
596 extern NCURSES_EXPORT(bool) is_wintouched (WINDOW *); /* implemented */
598 extern NCURSES_EXPORT(int) keypad (WINDOW *,bool); /* implemented */
600 extern NCURSES_EXPORT(int) leaveok (WINDOW *,bool); /* implemented */
602 extern NCURSES_EXPORT(int) meta (WINDOW *,bool); /* implemented */
661 extern NCURSES_EXPORT(int) nodelay (WINDOW *,bool); /* implemented */
666 extern NCURSES_EXPORT(int) notimeout (WINDOW *,bool); /* implemented */
692 extern NCURSES_EXPORT(int) scrollok (WINDOW *,bool); /* implemented */
718 extern NCURSES_EXPORT(int) syncok (WINDOW *, bool); /* implemented */
727 extern NCURSES_EXPORT(void) use_env (bool); /* implemented */
835 extern NCURSES_EXPORT(bool) is_term_resized (int, int);
841 extern NCURSES_EXPORT(int) keyok (int, bool);
845 extern NCURSES_EXPORT(int) use_extended_names (bool);
857 extern NCURSES_EXPORT(bool) is_cleared (const WINDOW *); /* generated */
858 extern NCURSES_EXPORT(bool) is_idcok (const WINDOW *); /* generated */
859 extern NCURSES_EXPORT(bool) is_idlok (const WINDOW *); /* generated */
860 extern NCURSES_EXPORT(bool) is_immedok (const WINDOW *); /* generated */
861 extern NCURSES_EXPORT(bool) is_keypad (const WINDOW *); /* generated */
862 extern NCURSES_EXPORT(bool) is_leaveok (const WINDOW *); /* generated */
863 extern NCURSES_EXPORT(bool) is_nodelay (const WINDOW *); /* generated */
864 extern NCURSES_EXPORT(bool) is_notimeout (const WINDOW *); /* generated */
865 extern NCURSES_EXPORT(bool) is_scrollok (const WINDOW *); /* generated */
866 extern NCURSES_EXPORT(bool) is_syncok (const WINDOW *); /* generated */
1419 extern NCURSES_EXPORT(bool) wenclose (const WINDOW *, int, int);
1421 extern NCURSES_EXPORT(bool) wmouse_trafo (const WINDOW*, int*, int*, bool);
1422 extern NCURSES_EXPORT(bool) mouse_trafo (int*, int*, bool); /* generated */