X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=client%2Fwindow_management.py;h=4d6a403281bbd9bb1a412a222d1060c94de64440;hb=3d97621524e3ecbdbd0b6b85c54b6d0a44b3f665;hp=b1f68c24f44b5fa805bbeba32928f58f04850a96;hpb=f38972bd85d96914384b1071569eae9669738971;p=plomrogue diff --git a/client/window_management.py b/client/window_management.py index b1f68c2..4d6a403 100644 --- a/client/window_management.py +++ b/client/window_management.py @@ -1,3 +1,8 @@ +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + import curses import types @@ -13,13 +18,14 @@ screen_size = [0,0] class Window: - def __init__(self, title, draw_function, size): + def __init__(self, title, draw_function, size, draw_scroll_hints): self.title = title self.draw = types.MethodType(draw_function, self) self.size = size + self.draw_scroll_hints = draw_scroll_hints -def set_window_geometries(): +def set_windows(): def size_window(config): size = [0, 0] @@ -90,9 +96,12 @@ def set_window_geometries(): curses.endwin() stdscr = curses.initscr() screen_size = stdscr.getmaxyx() + global windows + windows = [] for config in windows_config: size = size_window(config["config"]) - window = Window(config["title"], config["func"], size) + window = Window(config["title"], config["func"], size, + config["scroll_hints"]) windows.append(window) place_window(window) redraw_windows = True @@ -204,7 +213,8 @@ def draw_screen(): for win in windows: offset, winmap_size, winmap = win.draw() draw_winmap() - draw_scroll_hints() + if win.draw_scroll_hints: + draw_scroll_hints() stdscr.erase() draw_window_border_lines()