From ff9409b1737627857eb47f64f536a3f66b6a09a4 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:01:07 +0200 Subject: Imported Upstream version 2.0.0 --- OpenFilesScreen.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenFilesScreen.h') diff --git a/OpenFilesScreen.h b/OpenFilesScreen.h index b3cdd97..8160cfe 100644 --- a/OpenFilesScreen.h +++ b/OpenFilesScreen.h @@ -9,9 +9,7 @@ Released under the GNU GPL, see the COPYING file in the source distribution for its full text. */ -#include "Process.h" -#include "Panel.h" -#include "FunctionBar.h" +#include "InfoScreen.h" typedef struct OpenFiles_Data_ { char* data[256]; @@ -29,17 +27,19 @@ typedef struct OpenFiles_FileData_ { } OpenFiles_FileData; typedef struct OpenFilesScreen_ { - Process* process; + InfoScreen super; pid_t pid; - Panel* display; - FunctionBar* bar; } OpenFilesScreen; +extern InfoScreenClass OpenFilesScreen_class; + OpenFilesScreen* OpenFilesScreen_new(Process* process); -void OpenFilesScreen_delete(OpenFilesScreen* this); +void OpenFilesScreen_delete(Object* this); + +void OpenFilesScreen_draw(InfoScreen* this); -void OpenFilesScreen_run(OpenFilesScreen* this); +void OpenFilesScreen_scan(InfoScreen* this); #endif -- cgit v1.2.3