home · contact · privacy
Pass height=0 to init_win() to make window as wide as the terminal screen. Also did...
authorChristian Heller <c.heller@plomlompom.de>
Thu, 29 Aug 2013 21:28:56 +0000 (23:28 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 29 Aug 2013 21:28:56 +0000 (23:28 +0200)
src/main.c
src/windows.c
src/windows.h

index 06f53ab39d14945c11d04a4bf89ce9aad8da683d..50a14a9062ebf59b44bac99c915dbaa955326383 100644 (file)
@@ -200,25 +200,25 @@ int main(int argc, char *argv[])
     init_keybindings(&world);
     set_cleanup_flag(CLEANUP_KEYBINDINGS);
     struct WinMeta win_meta;
-    char * err_winmem = "Trouble with init_win:meta() or draw_all_wins() in "
+    char * err_winmem = "Trouble with init_win_meta() or draw_all_wins() in "
                         "main().";
     exit_err(init_win_meta(screen, &win_meta), &world, err_winmem);
     world.wins.meta = &win_meta;
     struct Win win_keys = init_win(&win_meta, "Keys",
                                      0, 29, &world, draw_keys_win);
-    world.wins.keys = &win_keys;
     struct Win win_info = init_win(&win_meta, "Info",
                                    3, 20, &world, draw_info_win);
-    world.wins.info = &win_info;
     uint16_t height_logwin = win_meta.padframe.size.y
                              - (2 + win_info.frame.size.y);
     struct Win win_log = init_win(&win_meta, "Log",
                                   height_logwin, 20, &world, draw_log_win);
-    world.wins.log = &win_log;
     uint16_t width_mapwin = win_meta.padframe.size.x - win_keys.frame.size.x
                             - win_log.frame.size.x - 2;
     struct Win win_map = init_win(&win_meta, "Map",
                                   0, width_mapwin, &world, draw_map_win);
+    world.wins.keys = &win_keys;
+    world.wins.log = &win_log;
+    world.wins.info = &win_info;
     world.wins.map = &win_map;
     sorted_wintoggle(&world);
 
index 6257d4bf39b75107f3129d443d3bcc0dde84f657..48d17f0589c310fd99cb2c832a3f55b711ece916 100644 (file)
@@ -405,7 +405,7 @@ extern struct Win init_win(struct WinMeta * wmeta, char * title,
     }
     else
     {
-        w.frame.size.x = 1;
+        w.frame.size.x = wmeta->padframe.size.x;
     }
     if (height > 0 && height <= wmeta->padframe.size.y - 1)
     {
index a8783fe2563ea1497afe7994378f723e8f18ac53..8cb5ec1267f4fd37da004cc5e78f3074b57172d1 100644 (file)
@@ -103,10 +103,9 @@ extern uint8_t init_win_meta(WINDOW * screen, struct WinMeta * wmeta);
  * and appointing "func"() to interpret and draw the content stored at "data"
  * if the window is visible.
  *
- * A value for "width" <1 will trigger a fallback to width=1. A "height" < 1 or
- * larger than the maximum window height possible within the virtual screen will
- * trigger a fallback to the maximum height possible (i.e. pass a "height" of 0
- * to initialize the window to its largest possible height).
+ * Pass 0 for "width" to make the window as wide as the terminal screen. Pass
+ * for "height" 0 or a value larger than the maximum window height possible
+ * within the virtual screen to attain that maximum window height.
  *
  * Other members of the Win struct are initialized to 0. The window will stay
  * invisible until appended to the chain of visible windows via append_win().