Raspberry Pi Weighting Control System
This project serves as a simple weighting control system, that was realized as a Bachelor Thesis
gui_direct.h
Go to the documentation of this file.
1 #ifndef GUI_DIRECT_H
2 #define GUI_DIRECT_H
3 
4 #include "gui_element.h"
5 #include "app_workspace.h"
6 
12 class gui_direct : public gui_element {
13  private:
14  void (*func)();
15 
16  public:
22  gui_direct(void (*func)());
23 
25  void render_element();
26 };
27 
28 #endif
This is a special element, that doesn't wrap any ImGui function. This is used to render ImGui directl...
Definition: gui_direct.h:12
void render_element()
Definition: gui_direct.cpp:9
gui_direct(void(*func)())
Construct a new gui direct object.
Definition: gui_direct.cpp:5
Paren class for other gui elements.
Definition: gui_element.h:8