Make all required includes explicit

Information as seen by IWYU 0.12 + clang 9 on Linux
diff --git a/OpenFilesScreen.h b/OpenFilesScreen.h
index 04a8e39..0fbafe0 100644
--- a/OpenFilesScreen.h
+++ b/OpenFilesScreen.h
@@ -7,7 +7,11 @@
 in the source distribution for its full text.
 */
 
+#include <sys/types.h>
+
 #include "InfoScreen.h"
+#include "Object.h"
+#include "Process.h"
 
 typedef struct OpenFilesScreen_ {
    InfoScreen super;