[hackers] [sent] [PATCH] Draw a progress bar on non-image slides

From: David Phillips <david_AT_sighup.nz>
Date: Fri, 5 Jan 2018 12:58:18 +1300

Similar to the slide numbers patch, it may be useful for an audience
to know how much more of a presentation they have to endure. A naïve
approach to this is to introduce a progress bar to the bottom of the
slides which indicate the presenter's progress based on slide count.

This progress bar is not drawn on image slides, since it may clutter
and/or interfere with the figure on the slide.
---
 config.def.h | 3 +++
 sent.c       | 6 ++++++
 2 files changed, 9 insertions(+)
diff --git a/config.def.h b/config.def.h
index 60eb376..25d89e0 100644
--- a/config.def.h
+++ b/config.def.h
_AT_@ -19,6 +19,9 @@ static const float linespacing = 1.4;
 static const float usablewidth = 0.75;
 static const float usableheight = 0.75;
 
+/* height of the presentation progress bar */
+static const int progressheight = 5;
+
 static Mousekey mshortcuts[] = {
 	/* button         function        argument */
 	{ Button1,        advance,        {.i = +1} },
diff --git a/sent.c b/sent.c
index c50a572..046466e 100644
--- a/sent.c
+++ b/sent.c
_AT_@ -533,6 +533,12 @@ xdraw()
 			         0,
 			         slides[idx].lines[i],
 			         0);
+		if (idx != 0 && progressheight != 0) {
+			drw_rect(d,
+			         0, xw.h - progressheight,
+			         (xw.w * idx)/(slidecount - 1), progressheight,
+			         1, 0);
+		}
 		drw_map(d, xw.win, 0, 0, xw.w, xw.h);
 	} else {
 		if (!(im->state & SCALED))
-- 
2.15.1
Received on Fri Jan 05 2018 - 00:58:18 CET

This archive was generated by hypermail 2.3.0 : Fri Jan 05 2018 - 01:00:26 CET