aboutsummaryrefslogtreecommitdiffstats
path: root/ScreensPanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'ScreensPanel.h')
-rw-r--r--ScreensPanel.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/ScreensPanel.h b/ScreensPanel.h
index 88d85b5..0be0b82 100644
--- a/ScreensPanel.h
+++ b/ScreensPanel.h
@@ -10,7 +10,9 @@ in the source distribution for its full text.
#include <stdbool.h>
+#include "AvailableColumnsPanel.h"
#include "ColumnsPanel.h"
+#include "DynamicScreen.h"
#include "ListItem.h"
#include "Object.h"
#include "Panel.h"
@@ -27,15 +29,17 @@ typedef struct ScreensPanel_ {
ScreenManager* scr;
Settings* settings;
ColumnsPanel* columns;
+ AvailableColumnsPanel* availableColumns;
char buffer[SCREEN_NAME_LEN + 1];
char* saved;
int cursor;
bool moving;
- ListItem *renamingItem;
+ ListItem* renamingItem;
} ScreensPanel;
typedef struct ScreenListItem_ {
ListItem super;
+ DynamicScreen* ds;
ScreenSettings* ss;
} ScreenListItem;
@@ -44,8 +48,6 @@ extern ObjectClass ScreenListItem_class;
ScreenListItem* ScreenListItem_new(const char* value, ScreenSettings* ss);
-extern PanelClass ScreensPanel_class;
-
ScreensPanel* ScreensPanel_new(Settings* settings);
void ScreensPanel_update(Panel* super);

© 2014-2024 Faster IT GmbH | imprint | privacy policy