Mercurial > pidgin.yaz
changeset 11006:5d3b0a920d83
[gaim-migrate @ 12866]
sf patch #1206146, from Ted Percival
"Fix smooth scrolling assertions"
(Start Gaim with the debug window enabled if you don't believe me)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 14 Jun 2005 00:45:48 +0000 |
parents | bb7fd9359f9e |
children | d1a77ae75f23 |
files | COPYRIGHT src/gtkimhtml.c |
diffstat | 2 files changed, 22 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/COPYRIGHT Tue Jun 14 00:24:27 2005 +0000 +++ b/COPYRIGHT Tue Jun 14 00:45:48 2005 +0000 @@ -143,6 +143,7 @@ Matt Pandina Ricardo Fernandez Pascual Havoc Pennington +Ted Percival Eduardo PĂ©rez Ari Pollak Robey Pointer
--- a/src/gtkimhtml.c Tue Jun 14 00:24:27 2005 +0000 +++ b/src/gtkimhtml.c Tue Jun 14 00:45:48 2005 +0000 @@ -2241,37 +2241,39 @@ } } -#define MAX_SCROLL_TIME 0.4 - +#define MAX_SCROLL_TIME 0.4 /* seconds */ +#define SCROLL_DELAY 33 /* milliseconds */ + +/* + * Smoothly scroll a GtkIMHtml. + * + * @return TRUE if the window needs to be scrolled further, FALSE if we're at the bottom. + */ static gboolean scroll_cb(gpointer data) { GtkIMHtml *imhtml = data; GtkAdjustment *adj = GTK_TEXT_VIEW(imhtml)->vadjustment; - gdouble val = adj->upper - adj->page_size; - gdouble t; - - t = g_timer_elapsed(imhtml->scroll_time, NULL); - - if (adj->value >= val || t >= MAX_SCROLL_TIME) { - gaim_debug_info("gtkimhtml", "scroll_cb: out of time\n"); - gtk_adjustment_set_value(adj, val); - } else { - gtk_adjustment_set_value(adj, - adj->value + (((val - adj->value) * t ) / MAX_SCROLL_TIME)); - } - - if (adj->value >= val) { + gdouble max_val = adj->upper - adj->page_size; + + g_return_val_if_fail(imhtml->scroll_time != NULL, FALSE); + + if (g_timer_elapsed(imhtml->scroll_time, NULL) > MAX_SCROLL_TIME) { + /* time's up. jump to the end and kill the timer */ + gtk_adjustment_set_value(adj, max_val); g_timer_destroy(imhtml->scroll_time); imhtml->scroll_time = NULL; return FALSE; - } else - return TRUE; + } + + /* scroll by 1/3rd the remaining distance */ + gtk_adjustment_set_value(adj, gtk_adjustment_get_value(adj) + ((max_val - gtk_adjustment_get_value(adj)) / 3)); + return TRUE; } static gboolean scroll_idle_cb(gpointer data) { GtkIMHtml *imhtml = data; - imhtml->scroll_src = g_timeout_add(33, scroll_cb, imhtml); + imhtml->scroll_src = g_timeout_add(SCROLL_DELAY, scroll_cb, imhtml); return FALSE; }