Catchea
Topographic Data Browser
footer_widget.h
Go to the documentation of this file.
1 
7 #ifndef CATCHEA_FOOTER_WIDGET_H
8 #define CATCHEA_FOOTER_WIDGET_H
9 
10 #include <cstdlib>
11 
12 #include <imgui.h>
13 
14 struct App;
15 
16 struct FooterWidget {
17 
18  App *app;
19 
20 };
21 
28 
37 bool FooterWidget__init(FooterWidget* fw, App* app);
38 
46 void FooterWidget__render(FooterWidget* fw, const ImVec2& window_pos, const ImVec2& window_size);
47 
56 
63 
64 #endif //CATCHEA_FOOTER_WIDGET_H
void FooterWidget__render(FooterWidget *fw, const ImVec2 &window_pos, const ImVec2 &window_size)
Definition: footer_widget.cpp:24
FooterWidget * FooterWidget__create()
Definition: footer_widget.cpp:13
bool FooterWidget__terminate(FooterWidget *fw)
Definition: footer_widget.cpp:45
void FooterWidget__destroy(FooterWidget *fw)
Definition: footer_widget.cpp:49
Definition: app.h:26
Definition: footer_widget.h:16
bool FooterWidget__init(FooterWidget *fw, App *app)
Definition: footer_widget.cpp:20