mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-03 21:51:55 -07:00
update wlroots dep
This commit is contained in:
@@ -718,7 +718,7 @@ void CCompositor::focusSurface(wlr_surface* pSurface, CWindow* pWindowOwner) {
|
|||||||
.old_surface = m_pLastFocus,
|
.old_surface = m_pLastFocus,
|
||||||
.new_surface = pSurface,
|
.new_surface = pSurface,
|
||||||
};
|
};
|
||||||
wlr_signal_emit_safe(&m_sSeat.seat->keyboard_state.events.focus_change, &event);
|
wl_signal_emit_mutable(&m_sSeat.seat->keyboard_state.events.focus_change, &event);
|
||||||
|
|
||||||
if (pWindowOwner)
|
if (pWindowOwner)
|
||||||
Debug::log(LOG, "Set keyboard focus to surface %x, with window name: %s", pSurface, pWindowOwner->m_szTitle.c_str());
|
Debug::log(LOG, "Set keyboard focus to surface %x, with window name: %s", pSurface, pWindowOwner->m_szTitle.c_str());
|
||||||
|
@@ -75,35 +75,6 @@ void handleNoop(struct wl_listener *listener, void *data) {
|
|||||||
// Do nothing
|
// Do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
void wlr_signal_emit_safe(struct wl_signal *signal, void *data) {
|
|
||||||
struct wl_listener cursor;
|
|
||||||
struct wl_listener end;
|
|
||||||
|
|
||||||
/* Add two special markers: one cursor and one end marker. This way, we know
|
|
||||||
* that we've already called listeners on the left of the cursor and that we
|
|
||||||
* don't want to call listeners on the right of the end marker. The 'it'
|
|
||||||
* function can remove any element it wants from the list without troubles.
|
|
||||||
* wl_list_for_each_safe tries to be safe but it fails: it works fine
|
|
||||||
* if the current item is removed, but not if the next one is. */
|
|
||||||
wl_list_insert(&signal->listener_list, &cursor.link);
|
|
||||||
cursor.notify = handleNoop;
|
|
||||||
wl_list_insert(signal->listener_list.prev, &end.link);
|
|
||||||
end.notify = handleNoop;
|
|
||||||
|
|
||||||
while (cursor.link.next != &end.link) {
|
|
||||||
struct wl_list *pos = cursor.link.next;
|
|
||||||
struct wl_listener *l = wl_container_of(pos, l, link);
|
|
||||||
|
|
||||||
wl_list_remove(&cursor.link);
|
|
||||||
wl_list_insert(pos, &cursor.link);
|
|
||||||
|
|
||||||
l->notify(l, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
wl_list_remove(&cursor.link);
|
|
||||||
wl_list_remove(&end.link);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string getFormat(const char *fmt, ...) {
|
std::string getFormat(const char *fmt, ...) {
|
||||||
char* outputStr = nullptr;
|
char* outputStr = nullptr;
|
||||||
|
|
||||||
|
@@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
std::string absolutePath(const std::string&, const std::string&);
|
std::string absolutePath(const std::string&, const std::string&);
|
||||||
void addWLSignal(wl_signal*, wl_listener*, void* pOwner, std::string ownerString);
|
void addWLSignal(wl_signal*, wl_listener*, void* pOwner, std::string ownerString);
|
||||||
void wlr_signal_emit_safe(struct wl_signal *signal, void *data);
|
|
||||||
std::string getFormat(const char *fmt, ...); // Basically Debug::log to a string
|
std::string getFormat(const char *fmt, ...); // Basically Debug::log to a string
|
||||||
std::string escapeJSONStrings(const std::string& str);
|
std::string escapeJSONStrings(const std::string& str);
|
||||||
void scaleBox(wlr_box*, float);
|
void scaleBox(wlr_box*, float);
|
||||||
|
@@ -112,7 +112,7 @@ static void workspace_handle_remove(struct wl_client *client,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_signal_emit_safe(&workspace->events.remove_request, NULL);
|
wl_signal_emit_mutable(&workspace->events.remove_request, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void workspace_handle_deactivate(struct wl_client *client,
|
static void workspace_handle_deactivate(struct wl_client *client,
|
||||||
@@ -312,7 +312,7 @@ void wlr_ext_workspace_handle_v1_destroy(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_signal_emit_safe(&workspace->events.destroy, workspace);
|
wl_signal_emit_mutable(&workspace->events.destroy, workspace);
|
||||||
|
|
||||||
workspace_manager_update_idle_source(workspace->group->manager);
|
workspace_manager_update_idle_source(workspace->group->manager);
|
||||||
|
|
||||||
@@ -338,7 +338,7 @@ static void workspace_group_handle_handle_create_workspace(struct wl_client *cli
|
|||||||
struct wlr_ext_workspace_group_handle_v1_create_workspace_event event;
|
struct wlr_ext_workspace_group_handle_v1_create_workspace_event event;
|
||||||
event.workspace_group = group;
|
event.workspace_group = group;
|
||||||
event.name = arg;
|
event.name = arg;
|
||||||
wlr_signal_emit_safe(&group->events.create_workspace_request, &event);
|
wl_signal_emit_mutable(&group->events.create_workspace_request, &event);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void workspace_group_handle_handle_destroy(struct wl_client *client,
|
static void workspace_group_handle_handle_destroy(struct wl_client *client,
|
||||||
@@ -513,7 +513,7 @@ void wlr_ext_workspace_group_handle_v1_destroy(
|
|||||||
wlr_ext_workspace_handle_v1_destroy(workspace);
|
wlr_ext_workspace_handle_v1_destroy(workspace);
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_signal_emit_safe(&group->events.destroy, group);
|
wl_signal_emit_mutable(&group->events.destroy, group);
|
||||||
workspace_manager_update_idle_source(group->manager);
|
workspace_manager_update_idle_source(group->manager);
|
||||||
|
|
||||||
struct wlr_ext_workspace_group_handle_v1_output *output, *tmp2;
|
struct wlr_ext_workspace_group_handle_v1_output *output, *tmp2;
|
||||||
@@ -556,7 +556,7 @@ static void workspace_manager_commit(struct wl_client *client,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_signal_emit_safe(&manager->events.commit, manager);
|
wl_signal_emit_mutable(&manager->events.commit, manager);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void workspace_manager_stop(struct wl_client *client,
|
static void workspace_manager_stop(struct wl_client *client,
|
||||||
@@ -602,7 +602,7 @@ static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
|||||||
struct wlr_ext_workspace_manager_v1 *manager =
|
struct wlr_ext_workspace_manager_v1 *manager =
|
||||||
wl_container_of(listener, manager, display_destroy);
|
wl_container_of(listener, manager, display_destroy);
|
||||||
|
|
||||||
wlr_signal_emit_safe(&manager->events.destroy, manager);
|
wl_signal_emit_mutable(&manager->events.destroy, manager);
|
||||||
wl_list_remove(&manager->display_destroy.link);
|
wl_list_remove(&manager->display_destroy.link);
|
||||||
wl_global_destroy(manager->global);
|
wl_global_destroy(manager->global);
|
||||||
|
|
||||||
|
Submodule subprojects/wlroots updated: 3baf2a6bcf...7c575922c0
Reference in New Issue
Block a user