summaryrefslogtreecommitdiffstats
path: root/src/eulogium.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-06-16 06:43:20 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-06-16 06:43:20 (GMT)
commite65343f50ce20060c5209d052a36a614fc4026d2 (patch)
treef2b8f22087328195be43390c317d40fd477c5677 /src/eulogium.h
parent00a7149100b41db93f4a10e91ae8fd88c988fc11 (diff)
downloadeulogium-e65343f50ce20060c5209d052a36a614fc4026d2.zip
eulogium-e65343f50ce20060c5209d052a36a614fc4026d2.tar.gz
eulogium-e65343f50ce20060c5209d052a36a614fc4026d2.tar.bz2
[griffin.hmi] use new and updated menu-widget using buttons, checkboxes and radio buttons
Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'src/eulogium.h')
-rw-r--r--src/eulogium.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/eulogium.h b/src/eulogium.h
index 186258e..f46d22f 100644
--- a/src/eulogium.h
+++ b/src/eulogium.h
@@ -7,6 +7,8 @@
#include <Eldbus.h>
#include <stdint.h>
+#include "eulogium_item_list.h"
+
enum screen_type {
NONE,
FUNC,
@@ -114,7 +116,8 @@ struct button_def {
struct menu_entry_def {
const char *icon;
const char *label;
- Eina_Bool end;
+ struct list_item item;
+ Eina_Bool *end; /* remove me */
const char *footer; /* Primary footer */
const char *footer_alt; /* Alternating footer */
Ecore_Timer *toggle_timer;