Minor coding style update

This commit is contained in:
Hassan DRAGA 2023-05-24 19:48:28 -04:00
parent 026714bbc8
commit 8d3924833c
2 changed files with 19 additions and 15 deletions

View File

@ -33,21 +33,26 @@ namespace webui {
class window {
private:
size_t webui_window {webui_new_window()};
size_t webui_window {
webui_new_window()
};
public:
// Event struct
struct event : public webui_event_t{
// Event Struct
struct event : public webui_event_t {
using webui_event_t::webui_event_t;
// Window object constructor that
// initializes the reference, This
// is to avoid creating copies.
event(webui::window& window_obj, webui_event_t c_e) : webui_event_t(c_e){
event(webui::window& window_obj, webui_event_t c_e) : webui_event_t(c_e) {
reinterpret_cast<webui_event_t*>(this)->window = window_obj.webui_window;
}
class handler{
class handler {
public:
using callback_t = void(*)(event*);
@ -61,11 +66,12 @@ namespace webui {
handler() = delete;
handler(const handler&) = delete;
handler(handler&&) = delete;
handler& operator=(const handler&) = delete;
handler& operator=(handler&&) = delete;
handler& operator = (const handler&) = delete;
handler& operator = (handler&&) = delete;
~handler() = delete;
static void add(size_t id, webui::window* win, callback_t func){
static void add(size_t id, webui::window* win, callback_t func) {
window_list[id] = win;
// Save callback
@ -91,7 +97,7 @@ namespace webui {
};
// Parse argument as integer.
long long int get_int() {
long long int get_int() {
return webui_get_int(this);
}
@ -106,17 +112,17 @@ namespace webui {
}
// Return the response to JavaScript as integer.
void return_int(long long int n) {
void return_int(long long int n) {
webui_return_int(this, n);
}
// Return the response to JavaScript as string.
void return_string(const std::string_view s) {
void return_string(const std::string_view s) {
webui_return_string(this, s.data());
}
// Return the response to JavaScript as boolean.
void return_bool(bool b) {
void return_bool(bool b) {
webui_return_bool(this, b);
}
};
@ -189,7 +195,7 @@ namespace webui {
}
// Close all opened windows. wait() will break.
inline void exit(){
inline void exit() {
webui_exit();
}

View File

@ -2624,8 +2624,6 @@ static bool _webui_browser_exist(_webui_window_t* win, size_t browser) {
VivaldiExist = true;
return true;
}
// Vivaldi on Arch Linux
else if(_webui_cmd_sync(win, "vivaldi-stable --version", false) == 0) {
sprintf(win->browser_path, "vivaldi-stable");