diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-21 19:44:38 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-21 19:44:38 +0000 |
commit | af101512330aa06212f39e1af3691f8da8158692 (patch) | |
tree | 236201fe89831c633a695dfd822f04edc6e567cb /gdb/tui/tuiWin.h | |
parent | 56347833653a3fa317f87261d50cfc05935b3c77 (diff) | |
download | gdb-af101512330aa06212f39e1af3691f8da8158692.zip gdb-af101512330aa06212f39e1af3691f8da8158692.tar.gz gdb-af101512330aa06212f39e1af3691f8da8158692.tar.bz2 |
* tuiGeneralWin.c (boxWin): Use the tui configuration variables.
* tuiWin.h: Declare the new variables.
* tuiWin.c (_initialize_tuiWin): Create TUI configuration variables.
(tui_update_variables): New function.
(translate): New function.
(tui_border_kind_enums, tui_border_mode_enums): New tables.
(tui_border_mode_translate): New table.
(tui_border_kind_translate_*): New tables.
(tui_active_border_mode): New variables.
(tui_border_*): New variables.
Diffstat (limited to 'gdb/tui/tuiWin.h')
-rw-r--r-- | gdb/tui/tuiWin.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/tui/tuiWin.h b/gdb/tui/tuiWin.h index 55a3bd1..ac21042 100644 --- a/gdb/tui/tuiWin.h +++ b/gdb/tui/tuiWin.h @@ -43,5 +43,16 @@ extern void tuiResizeAll (void); extern void tuiRefreshAll (void); extern void tuiSigwinchHandler (int); +extern chtype tui_border_ulcorner; +extern chtype tui_border_urcorner; +extern chtype tui_border_lrcorner; +extern chtype tui_border_llcorner; +extern chtype tui_border_vline; +extern chtype tui_border_hline; +extern int tui_border_attrs; +extern int tui_active_border_attrs; + +extern int tui_update_variables (); + #endif /*_TUI_WIN_H*/ |