From d6231bab89d634da5564491196b7c478db038505 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sat, 4 Mar 2006 18:16:49 +0000 Subject: Initial import. --- ScreenManager.h | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 ScreenManager.h (limited to 'ScreenManager.h') diff --git a/ScreenManager.h b/ScreenManager.h new file mode 100644 index 00000000..b89d8023 --- /dev/null +++ b/ScreenManager.h @@ -0,0 +1,58 @@ +/* Do not edit this file. It was automatically genarated. */ + +#ifndef HEADER_ScreenManager +#define HEADER_ScreenManager +/* +htop +(C) 2004-2006 Hisham H. Muhammad +Released under the GNU GPL, see the COPYING file +in the source distribution for its full text. +*/ + +#include "ListBox.h" +#include "Object.h" +#include "TypedVector.h" +#include "FunctionBar.h" + +#include "debug.h" +#include + +#include + + +typedef enum Orientation_ { + VERTICAL, + HORIZONTAL +} Orientation; + +typedef struct ScreenManager_ { + int x1; + int y1; + int x2; + int y2; + Orientation orientation; + TypedVector* items; + int itemCount; + FunctionBar* fuBar; + TypedVector* fuBars; + bool owner; +} ScreenManager; + + +ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, bool owner); + +void ScreenManager_delete(ScreenManager* this); + +inline int ScreenManager_size(ScreenManager* this); + +void ScreenManager_add(ScreenManager* this, ListBox* item, FunctionBar* fuBar, int size); + +ListBox* ScreenManager_remove(ScreenManager* this, int index); + +void ScreenManager_setFunctionBar(ScreenManager* this, FunctionBar* fuBar); + +void ScreenManager_resize(ScreenManager* this, int x1, int y1, int x2, int y2); + +void ScreenManager_run(ScreenManager* this, ListBox** lastFocus, int* lastKey); + +#endif -- cgit v1.2.3