about summary refs log tree commit diff stats
path: root/browse-slack/environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-11 14:30:48 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-11 14:30:48 -0700
commit9d09939e76a6bc820fecf3374639990e30c59e79 (patch)
tree4a29537ff5a5cc4fbfe6c87504e7b8c67831d0a2 /browse-slack/environment.mu
parentb84e35cfb9b85e4921f7aed93a0273730bb87ad5 (diff)
downloadmu-9d09939e76a6bc820fecf3374639990e30c59e79.tar.gz
slack: space for a menu bar
Diffstat (limited to 'browse-slack/environment.mu')
-rw-r--r--browse-slack/environment.mu17
1 files changed, 17 insertions, 0 deletions
diff --git a/browse-slack/environment.mu b/browse-slack/environment.mu
index bdf62282..84284763 100644
--- a/browse-slack/environment.mu
+++ b/browse-slack/environment.mu
@@ -14,17 +14,21 @@ type environment {
 #   author-name-padding-ver   # in characters
 #   post-right-coord          # in characters
 #   channel-offset-x          # in characters
+#   menu-space-ver            # in characters
 
 fn render-environment screen: (addr screen), env: (addr environment), users: (addr array user), channels: (addr array channel), items: (addr array item) {
   clear-screen screen
   render-search-input screen, env
   render-item-list screen, env, items, users
+  render-menu screen
 }
 
 fn render-item-list screen: (addr screen), env: (addr environment), _items: (addr array item), users: (addr array user) {
   var tmp-width/eax: int <- copy 0
   var tmp-height/ecx: int <- copy 0
   tmp-width, tmp-height <- screen-size screen
+  var screen-width: int
+  copy-to screen-width, tmp-width
   var screen-height: int
   copy-to screen-height, tmp-height
   #
@@ -44,6 +48,9 @@ fn render-item-list screen: (addr screen), env: (addr environment), _items: (add
     i <- increment
     loop
   }
+  var top/eax: int <- copy screen-height
+  top <- subtract 2/menu-space-ver
+  clear-rect screen, 0 top, screen-width screen-height, 0/bg
 }
 
 fn render-search-input screen: (addr screen), env: (addr environment) {
@@ -52,6 +59,16 @@ fn render-search-input screen: (addr screen), env: (addr environment) {
   draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, "________________________________", 0xf/fg 0/bg
 }
 
+fn render-menu screen: (addr screen) {
+  var width/eax: int <- copy 0
+  var y/ecx: int <- copy 0
+  width, y <- screen-size screen
+  y <- decrement
+  set-cursor-position screen, 2/x, y
+  draw-text-rightward-from-cursor screen, " / ", width, 0/fg 0xf/bg
+  draw-text-rightward-from-cursor screen, " search  ", width, 0xf/fg, 0/bg
+}
+
 fn render-item screen: (addr screen), _item: (addr item), _users: (addr array user), y: int, screen-height: int -> _/ecx: int {
   var item/esi: (addr item) <- copy _item
   var users/edi: (addr array user) <- copy _users