summaryrefslogtreecommitdiff
path: root/src/fe-text/term.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-10-28 21:17:34 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-10-28 21:17:34 +0000
commit858ed4b1ef5869e2d2ba28d08c0b2397447618af (patch)
treef46709322ad27b98169579561e48d8ed8ac98457 /src/fe-text/term.h
parent3826079dbab92df9fcab1430b9eee90bc8a2eb32 (diff)
downloadirssi-858ed4b1ef5869e2d2ba28d08c0b2397447618af.zip
Some resize fixes. With terminfo + /SET indent_always OFF, doubleclicking
long words (URLs mostly) that get split into two lines, selects the word fully. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1929 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/term.h')
-rw-r--r--src/fe-text/term.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fe-text/term.h b/src/fe-text/term.h
index 5aa89e59..bda89462 100644
--- a/src/fe-text/term.h
+++ b/src/fe-text/term.h
@@ -32,6 +32,9 @@ void term_deinit(void);
/* Resize terminal - if width or height is negative,
the new size is unknown and should be figured out somehow */
void term_resize(int width, int height);
+void term_resize_final(int width, int height);
+/* Resize the terminal if needed */
+void term_resize_dirty(void);
/* Returns TRUE if terminal has colors */
int term_has_colors(void);
@@ -76,6 +79,4 @@ int term_getch(void);
void term_common_init(void);
void term_common_deinit(void);
-void term_force_resize(void);
-
#endif