raven/src/main.cpp

32 lines
850 B
C++
Raw Normal View History

#include "Label.hpp"
2022-03-08 02:25:22 +02:00
#include "Window.hpp"
#include "Widget.hpp"
2022-03-09 20:16:05 +02:00
#include "Button.hpp"
#include "Box.hpp"
#include "Label.hpp"
int main() {
Raven::Window window {};
2022-03-18 02:49:16 +02:00
Raven::Widget main_widget {};
2022-03-09 20:16:05 +02:00
Raven::Button button {"click me!"};
Raven::Label label {"you have not yet clicked the button..."};
window.spawn_window();
2022-03-09 20:16:05 +02:00
button.set_current_geometry(Raven::Box(10, 10, 100, 30));
label.set_current_geometry(Raven::Box(10, 45, 100, 20));
main_widget.set_background_fill_color(window.get_top_level_styles()->get_background_color());
main_widget.set_do_background_fill(true);
2022-03-18 02:49:16 +02:00
window.set_main_widget(&main_widget);
button.on_click = [&label]() {
label.set_text("you clicked it!!!!!");
2022-03-20 03:05:21 +02:00
};
2022-03-18 02:49:16 +02:00
main_widget.add_child(&button);
main_widget.add_child(&label);
window.run(true);
return 0;
2022-03-08 02:25:22 +02:00
}