mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
commit
d0477a1f1e
@ -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)
|
||||
|
@ -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.
|
||||
|
@ -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)
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user