Merge pull request #108 from GiuseppeCesarano/main

Fix C++ examples
This commit is contained in:
Albert Shown 2023-05-25 16:08:00 -04:00 committed by GitHub
commit d0477a1f1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class MyClass {
void switch_to_second_page(webui::window::event* e) {
// Switch to `/second.html` in the same opened window.
e->window.show("second.html");
e->get_window().show("second.html");
}
// Example of a simple function (Not a method)

View File

@ -94,6 +94,10 @@ namespace webui {
if(callback_list[id] != nullptr)
callback_list[id](&e);
}
static webui::window& get_window(const size_t index){
return *window_list[index];
}
};
// Parse argument as integer.
@ -125,6 +129,10 @@ namespace webui {
void return_bool(bool b) {
webui_return_bool(this, b);
}
webui::window& get_window(){
return event::handler::get_window(window);
}
};
// Bind a specific html element click event with a function. Empty element means all events.

View File

@ -25,7 +25,7 @@ class MyClass {
void switch_to_second_page(webui::window::event* e) {
// Switch to `/second.html` in the same opened window.
e->window.show("second.html");
e->get_window().show("second.html");
}
// Example of a simple function (Not a method)

View File

@ -94,6 +94,10 @@ namespace webui {
if(callback_list[id] != nullptr)
callback_list[id](&e);
}
static webui::window& get_window(const size_t index){
return *window_list[index];
}
};
// Parse argument as integer.
@ -125,6 +129,10 @@ namespace webui {
void return_bool(bool b) {
webui_return_bool(this, b);
}
webui::window& get_window(){
return event::handler::get_window(window);
}
};
// Bind a specific html element click event with a function. Empty element means all events.

View File

@ -94,6 +94,10 @@ namespace webui {
if(callback_list[id] != nullptr)
callback_list[id](&e);
}
static webui::window& get_window(const size_t index){
return *window_list[index];
}
};
// Parse argument as integer.
@ -125,6 +129,10 @@ namespace webui {
void return_bool(bool b) {
webui_return_bool(this, b);
}
webui::window& get_window(){
return event::handler::get_window(window);
}
};
// Bind a specific html element click event with a function. Empty element means all events.