[client] rework the configuration overlay to allow for tabs

This commit is contained in:
Geoffrey McRae
2021-08-12 09:04:45 +10:00
parent fe6339fc77
commit 6387bf2d2e
11 changed files with 159 additions and 69 deletions

View File

@@ -35,7 +35,10 @@ void overlayGraph_unregister();
void overlayGraph_iterate(void (*callback)(GraphHandle handle, const char * name,
bool * enabled, void * udata), void * udata);
void overlayConfig_register(const char * title, void (*callback)(void * udata),
void * udata);
void overlayConfig_register(const char * title,
void (*callback)(void * udata, int * id), void * udata);
void overlayConfig_registerTab(const char * title,
void (*callback)(void * udata, int * id), void * udata);
#endif