From 266ab52b3a741a58fb17c48b0f7939d7c5d266de Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:00:19 +0200 Subject: Imported Upstream version 0.6 --- TraceScreen.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 TraceScreen.h (limited to 'TraceScreen.h') diff --git a/TraceScreen.h b/TraceScreen.h new file mode 100644 index 0000000..e26737c --- /dev/null +++ b/TraceScreen.h @@ -0,0 +1,37 @@ +/* +htop - TraceScreen.h +(C) 2005 Hisham H. Muhammad +Released under the GNU GPL, see the COPYING file +in the source distribution for its full text. +*/ +#ifndef HEADER_TraceScreen +#define HEADER_TraceScreen + +#define _GNU_SOURCE +#include +#include +#include +#include +#include + +#include "ProcessList.h" +#include "ListBox.h" +#include "FunctionBar.h" + +typedef struct TraceScreen_ { + Process* process; + ListBox* display; + FunctionBar* bar; + bool tracing; +} TraceScreen; + +TraceScreen* TraceScreen_new(Process* process); + +void TraceScreen_delete(TraceScreen* this); + +void TraceScreen_draw(TraceScreen* this); + +void TraceScreen_run(TraceScreen* this); + +#endif + -- cgit v1.2.3