Position the view, starting from untransformed position */
| 487 | |
| 488 | /* Position the view, starting from untransformed position */ |
| 489 | void arrange_view(SwitcherView& sv, int position) |
| 490 | { |
| 491 | arrange_center_view(sv); |
| 492 | |
| 493 | if (position == SWITCHER_POSITION_CENTER) |
| 494 | { |
| 495 | /* view already centered */ |
| 496 | } else |
| 497 | { |
| 498 | move(sv, position - SWITCHER_POSITION_CENTER); |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | // returns a list of mapped views |
| 503 | std::vector<wayfire_toplevel_view> get_workspace_views() const |
nothing calls this directly
no outgoing calls
no test coverage detected