1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
#include <wayfire/per-output-plugin.hpp>
#include <wayfire/view.hpp>
#include <wayfire/workarea.hpp>
#include <wayfire/matcher.hpp>
#include <wayfire/workspace-set.hpp>
#include <wayfire/output.hpp>
#include <wayfire/signal-definitions.hpp>
#include <wayfire/txn/transaction-manager.hpp>
#include "deco-subsurface.hpp"
#include "wayfire/core.hpp"
#include "wayfire/plugin.hpp"
#include "wayfire/signal-provider.hpp"
#include "wayfire/toplevel-view.hpp"
#include "wayfire/toplevel.hpp"
class wayfire_decoration : public wf::plugin_interface_t
{
wf::view_matcher_t ignore_views{"decoration/ignore_views"};
wf::view_matcher_t forced_views{"decoration/forced_views"};
wf::signal::connection_t<wf::txn::new_transaction_signal> on_new_tx =
[=] (wf::txn::new_transaction_signal *ev)
{
// For each transaction, we need to consider what happens with participating views
for (const auto& obj : ev->tx->get_objects())
{
if (auto toplevel = std::dynamic_pointer_cast<wf::toplevel_t>(obj))
{
// First check whether the toplevel already has decoration
// In that case, we should just set the correct margins
if (auto deco = toplevel->get_data<wf::simple_decorator_t>())
{
toplevel->pending().margins = deco->get_margins(toplevel->pending());
continue;
}
// Second case: the view is already mapped, or the transaction does not map it.
// The view is not being decorated, so nothing to do here.
if (toplevel->current().mapped || !toplevel->pending().mapped)
{
continue;
}
// Third case: the transaction will map the toplevel.
auto view = wf::find_view_for_toplevel(toplevel);
wf::dassert(view != nullptr, "Mapping a toplevel means there must be a corresponding view!");
if (should_decorate_view(view))
{
adjust_new_decorations(view);
}
}
}
};
wf::signal::connection_t<wf::view_decoration_state_updated_signal> on_decoration_state_changed =
[=] (wf::view_decoration_state_updated_signal *ev)
{
update_view_decoration(ev->view);
};
// allows criteria containing maximized or floating check
wf::signal::connection_t<wf::view_tiled_signal> on_view_tiled =
[=] (wf::view_tiled_signal *ev)
{
update_view_decoration(ev->view);
};
public:
void init() override
{
wf::get_core().connect(&on_decoration_state_changed);
wf::get_core().tx_manager->connect(&on_new_tx);
wf::get_core().connect(&on_view_tiled);
for (auto& view : wf::get_core().get_all_views())
{
update_view_decoration(view);
}
}
void fini() override
{
for (auto view : wf::get_core().get_all_views())
{
if (auto toplevel = wf::toplevel_cast(view))
{
remove_decoration(toplevel);
wf::get_core().tx_manager->schedule_object(toplevel->toplevel());
}
}
}
/**
* Uses view_matcher_t to match whether the given view needs to be
* ignored for decoration
*
* @param view The view to match
* @return Whether the given view should be decorated?
*/
bool ignore_decoration_of_view(wayfire_view view)
{
return ignore_views.matches(view);
}
/**
* Uses view_matcher_t to match whether to force decorations onto the
* given view
*
* @param view The view to match
* @return Whether the given view should be decorated?
*/
bool force_decoration_of_view(wayfire_view view)
{
return forced_views.matches(view);
}
bool should_decorate_view(wayfire_toplevel_view view)
{
return !ignore_decoration_of_view(view) &&
(force_decoration_of_view(view) || view->should_be_decorated());
}
void adjust_new_decorations(wayfire_toplevel_view view)
{
auto toplevel = view->toplevel();
toplevel->store_data(std::make_unique<wf::simple_decorator_t>(view));
auto deco = toplevel->get_data<wf::simple_decorator_t>();
auto& pending = toplevel->pending();
pending.margins = deco->get_margins(pending);
if (!pending.fullscreen && !pending.tiled_edges)
{
pending.geometry = wf::expand_geometry_by_margins(pending.geometry, pending.margins);
if (view->get_output())
{
pending.geometry = wf::clamp(pending.geometry, view->get_output()->workarea->get_workarea());
}
}
}
void remove_decoration(wayfire_toplevel_view view)
{
view->toplevel()->erase_data<wf::simple_decorator_t>();
auto& pending = view->toplevel()->pending();
if (!pending.fullscreen && !pending.tiled_edges)
{
pending.geometry = wf::shrink_geometry_by_margins(pending.geometry, pending.margins);
}
pending.margins = {0, 0, 0, 0};
}
bool is_toplevel_decorated(const std::shared_ptr<wf::toplevel_t>& toplevel)
{
return toplevel->has_data<wf::simple_decorator_t>();
}
void update_view_decoration(wayfire_view view)
{
if (auto toplevel = wf::toplevel_cast(view))
{
const bool wants_decoration = should_decorate_view(toplevel);
if (wants_decoration != is_toplevel_decorated(toplevel->toplevel()))
{
if (wants_decoration)
{
adjust_new_decorations(toplevel);
} else
{
remove_decoration(toplevel);
}
wf::get_core().tx_manager->schedule_object(toplevel->toplevel());
}
}
}
};
DECLARE_WAYFIRE_PLUGIN(wayfire_decoration);
|