summaryrefslogtreecommitdiffstats
path: root/src/eulogium.h
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-29 11:29:35 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-29 11:29:35 (GMT)
commit4f43249cd3e9d8ed3784203b829e7ab54e2f1152 (patch)
tree5cf33b8355b816bf08985c11a0368a436e2a5da7 /src/eulogium.h
parentc3658d4365f7d2412cf967ba51786d86550b5c2a (diff)
downloadeulogium-4f43249cd3e9d8ed3784203b829e7ab54e2f1152.zip
eulogium-4f43249cd3e9d8ed3784203b829e7ab54e2f1152.tar.gz
eulogium-4f43249cd3e9d8ed3784203b829e7ab54e2f1152.tar.bz2
Move global GUI objects for the progress window into the main storage. Potentially this needs to be its own progress_data struct
Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'src/eulogium.h')
-rw-r--r--src/eulogium.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eulogium.h b/src/eulogium.h
index 80c3e17..36e2f08 100644
--- a/src/eulogium.h
+++ b/src/eulogium.h
@@ -23,8 +23,6 @@ enum file_type {
};
struct print_data {
- Evas_Object *progress;
- Evas_Object *status;
uint_fast32_t time;
char *file;
char *name;
@@ -48,6 +46,8 @@ struct dbus_data {
struct eulogium_data {
Evas_Object *navi;
+ Evas_Object *status;
+ Evas_Object *progress;
struct print_data print;
struct dbus_data dbus;
void *data;