-
-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated sway-hide work to the latest master #1241
Changes from 17 commits
013bfb9
0840184
0e32cff
4ecb22b
4ec1718
551973a
2253f3e
f1cd85f
af0b182
d427a5b
3b15645
979a478
92fb316
e2590fc
13fbf81
1c7133c
564e231
2e28531
208351c
24a8e85
11337dc
00ca332
0aecb78
6c3b7e4
c11aecd
73de008
09da1f0
8549996
55ff12a
e276e61
c502e25
cf2312f
48f1a8f
d9de7c4
0cee530
3e21eb8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#pragma once | ||
|
||
#include <fmt/format.h> | ||
#include <tuple> | ||
#include <mutex> | ||
#include "ALabel.hpp" | ||
#include "bar.hpp" | ||
#include "client.hpp" | ||
#include "modules/sway/ipc/client.hpp" | ||
#include "util/json.hpp" | ||
#include "util/sleeper_thread.hpp" | ||
|
||
namespace waybar::modules::sway { | ||
|
||
class Hide : public ALabel, public sigc::trackable { | ||
public: | ||
Hide(const std::string&, const waybar::Bar&, const Json::Value&); | ||
~Hide() = default; | ||
auto update() -> void; | ||
|
||
private: | ||
void onEvent(const struct Ipc::ipc_response&); | ||
void worker(); | ||
|
||
std::string current_mode_; | ||
bool visible_by_modifier_; | ||
const Bar& bar_; | ||
std::string window_; | ||
int windowId_; | ||
util::JsonParser parser_; | ||
|
||
util::SleeperThread thread_; | ||
std::mutex mutex_; | ||
Ipc ipc_; | ||
}; | ||
|
||
} // namespace waybar::modules::sway |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,23 +529,6 @@ void waybar::Bar::onMap(GdkEventAny*) { | |
surface = gdk_wayland_window_get_wl_surface(gdk_window); | ||
} | ||
|
||
void waybar::Bar::setVisible(bool value) { | ||
visible = value; | ||
if (!visible) { | ||
window.get_style_context()->add_class("hidden"); | ||
window.set_opacity(0); | ||
surface_impl_->setLayer(bar_layer::BOTTOM); | ||
} else { | ||
window.get_style_context()->remove_class("hidden"); | ||
window.set_opacity(1); | ||
surface_impl_->setLayer(layer_); | ||
} | ||
surface_impl_->setExclusiveZone(exclusive && visible); | ||
surface_impl_->commit(); | ||
} | ||
|
||
void waybar::Bar::toggle() { setVisible(!visible); } | ||
|
||
// Converting string to button code rn as to avoid doing it later | ||
void waybar::Bar::setupAltFormatKeyForModule(const std::string& module_name) { | ||
if (config.isMember(module_name)) { | ||
|
@@ -607,6 +590,26 @@ void waybar::Bar::handleSignal(int signal) { | |
} | ||
} | ||
|
||
auto waybar::Bar::setVisible(bool nvis) -> void { | ||
visible = nvis; | ||
if (!visible) { | ||
window.get_style_context()->add_class("hidden"); | ||
surface_impl_->setLayer(bar_layer::BOTTOM); | ||
} else { | ||
window.get_style_context()->remove_class("hidden"); | ||
surface_impl_->setLayer(bar_layer::TOP); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This overrides the layer set in the config file. void waybar::Bar::setLayer(bar_layer layer) {
layer_ = layer;
surface_impl_->setLayer(layer_);
} and call the method from the same location where you are disabling exclusive zone. |
||
} | ||
wl_surface_commit(surface); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extraneous |
||
} | ||
|
||
auto waybar::Bar::removeExclusiveZone() const -> void { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd suggest to do it like this: void waybar::Bar::setExclusive(bool value) {
exclusive = value;
surface_impl_->setExclusiveZone(exclusive && visible);
} |
||
surface_impl_->setExclusiveZone(false); | ||
} | ||
|
||
auto waybar::Bar::toggle() -> void { | ||
return setVisible(!visible); | ||
} | ||
|
||
void waybar::Bar::getModules(const Factory& factory, const std::string& pos) { | ||
if (config[pos].isArray()) { | ||
for (const auto& name : config[pos]) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#include "modules/sway/hide.hpp" | ||
#include <spdlog/spdlog.h> | ||
#include "client.hpp" | ||
#include "wlr-layer-shell-unstable-v1-client-protocol.h" | ||
|
||
namespace waybar::modules::sway { | ||
|
||
Hide::Hide(const std::string& id, const Bar& bar, const Json::Value& config) | ||
: ALabel(config, "hide", id, "{}", 0, true), bar_(bar), windowId_(-1) { | ||
ipc_.subscribe(R"(["bar_state_update","barconfig_update"])"); | ||
ipc_.signal_event.connect(sigc::mem_fun(*this, &Hide::onEvent)); | ||
// Do not reserve space for the bar anymore | ||
bar.removeExclusiveZone(); | ||
// Launch worker | ||
worker(); | ||
} | ||
|
||
void Hide::onEvent(const struct Ipc::ipc_response& res) { | ||
auto payload = parser_.parse(res.payload); | ||
std::lock_guard<std::mutex> lock(mutex_); | ||
if (payload.isMember("mode")) { | ||
// barconfig_update: get mode | ||
auto mode = payload["mode"].asString(); | ||
if (mode == "hide") { | ||
// Hide the bars when configuring the "hide" bar | ||
for (auto& bar : waybar::Client::inst()->bars) { | ||
bar->setVisible(false); | ||
} | ||
} | ||
emirror-de marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} else if (payload.isMember("visible_by_modifier")) { | ||
// bar_state_update: get visible_by_modifier | ||
visible_by_modifier_ = payload["visible_by_modifier"].asBool(); | ||
spdlog::info("WayBar Shown: {}", visible_by_modifier_); | ||
emirror-de marked this conversation as resolved.
Show resolved
Hide resolved
|
||
for (auto& bar : waybar::Client::inst()->bars) { | ||
bar->setVisible(visible_by_modifier_); | ||
} | ||
} | ||
} | ||
|
||
void Hide::worker() { | ||
thread_ = [this] { | ||
try { | ||
ipc_.handleEvent(); | ||
} catch (const std::exception& e) { | ||
spdlog::error("Hide: {}", e.what()); | ||
} | ||
}; | ||
} | ||
|
||
auto Hide::update() -> void { | ||
} | ||
} // namespace waybar::modules::sway |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know I'm nitpicking, but why was that change necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No that's totally justified. I took the wrong definition while resolving the merge conflicts. I will correct this.