From b47bc667a254c1b1a8d6b5a635ca73f6c91c2e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 5 Oct 2020 15:14:54 +0200 Subject: Add key to pause process list updates --- ScreenManager.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ScreenManager.h') diff --git a/ScreenManager.h b/ScreenManager.h index 722fb7f2..ad312930 100644 --- a/ScreenManager.h +++ b/ScreenManager.h @@ -7,9 +7,10 @@ Released under the GNU GPLv2, see the COPYING file in the source distribution for its full text. */ +#include "Action.h" #include "Header.h" -#include "Settings.h" #include "Panel.h" +#include "Settings.h" #include "Vector.h" typedef enum Orientation_ { @@ -27,11 +28,12 @@ typedef struct ScreenManager_ { int panelCount; Header* header; const Settings* settings; + const State* state; bool owner; bool allowFocusChange; } ScreenManager; -ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, Header* header, const Settings* settings, bool owner); +ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, Header* header, const Settings* settings, const State* state, bool owner); void ScreenManager_delete(ScreenManager* this); -- cgit v1.2.3