diff options
Diffstat (limited to 'src/interface-curses.h')
-rw-r--r-- | src/interface-curses.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interface-curses.h b/src/interface-curses.h index ed228ee..6116cae 100644 --- a/src/interface-curses.h +++ b/src/interface-curses.h @@ -118,6 +118,12 @@ typedef class InterfaceCurses : public Interface<InterfaceCurses, ViewCurses> { WINDOW *window; /**! window showing part of pad */ WINDOW *pad; /**! full-height entry list */ + struct Entry { + PopupEntryType type; + bool highlight; + gchar name[]; + }; + GSList *list; /**! list of popup entries */ gint longest; /**! size of longest entry */ gint length; /**! total number of popup entries */ |