-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathhyprland.hpp
More file actions
54 lines (46 loc) · 1.87 KB
/
hyprland.hpp
File metadata and controls
54 lines (46 loc) · 1.87 KB
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
// Display images inside a terminal
// Copyright (C) 2023 JustKidding
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#ifndef HYPRLAND_SOCKET_H
#define HYPRLAND_SOCKET_H
#include "../config.hpp"
#include <nlohmann/json.hpp>
#include <spdlog/spdlog.h>
class HyprlandSocket : public WaylandConfig
{
public:
explicit HyprlandSocket(std::string_view signature);
~HyprlandSocket() override = default;
auto get_window_info() -> struct WaylandWindowGeometry override;
auto get_focused_output_name() -> std::string override;
void initial_setup(std::string_view appid) override;
void move_window(std::string_view appid, int xcoord, int ycoord) override;
private:
void disable_focus(std::string_view appid);
void enable_floating(std::string_view appid);
void remove_borders(std::string_view appid);
void remove_rounding(std::string_view appid);
void change_workspace(std::string_view appid, int workspaceid);
void request(std::string_view payload);
auto request_result(std::string_view payload) -> nlohmann::json;
auto get_active_window() -> nlohmann::json;
void set_active_monitor();
std::shared_ptr<spdlog::logger> logger;
std::string socket_path;
std::string address;
std::string output_name;
float output_scale = 1.0F;
};
#endif