1#ifndef OE_GUI_COMPONENT_PROGRESS_H
2#define OE_GUI_COMPONENT_PROGRESS_H
4#include "../component.h"
12 Progress(
size_t* value,
const size_t& max = 100,
const bool& editable =
false, std::function<
void(
const size_t)> on_change = [](
size_t x){ (void)x; });
20 std::function<void(
const size_t)> _on_change;
Definition component.h:22
UI components.
Definition component.h:15