Waybar/include/client.hpp

42 lines
1.2 KiB
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <unistd.h>
#include <wordexp.h>
2018-08-08 21:54:58 +00:00
#include <fmt/format.h>
#include <gdk/gdk.h>
#include <wayland-client.h>
#include <gdk/gdkwayland.h>
#include "bar.hpp"
namespace waybar {
2018-08-16 12:29:41 +00:00
class Client {
public:
Client(int argc, char *argv[]);
int main(int argc, char *argv[]);
2018-08-08 21:54:58 +00:00
Glib::RefPtr<Gtk::Application> gtk_app;
2018-08-16 12:29:41 +00:00
std::string css_file;
std::string config_file;
2018-08-08 21:54:58 +00:00
Glib::RefPtr<Gdk::Display> gdk_display;
2018-08-16 12:29:41 +00:00
struct wl_display *wl_display = nullptr;
2018-08-14 23:53:43 +00:00
struct wl_registry *registry = nullptr;
2018-08-16 12:29:41 +00:00
struct zwlr_layer_shell_v1 *layer_shell = nullptr;
struct zxdg_output_manager_v1 *xdg_output_manager = nullptr;
2018-08-14 23:53:43 +00:00
struct wl_seat *seat = nullptr;
2019-02-17 14:27:54 +00:00
struct zwp_idle_inhibit_manager_v1 *idle_inhibit_manager = nullptr;
std::vector<std::unique_ptr<Bar>> bars;
2018-08-08 21:54:58 +00:00
private:
2018-12-18 16:30:54 +00:00
void setupConfigs(const std::string& config, const std::string& style);
void bindInterfaces();
2018-11-24 10:04:56 +00:00
const std::string getValidPath(std::vector<std::string> paths);
2018-08-16 12:29:41 +00:00
static void handleGlobal(void *data, struct wl_registry *registry,
uint32_t name, const char *interface, uint32_t version);
static void handleGlobalRemove(void *data,
struct wl_registry *registry, uint32_t name);
2018-08-16 12:29:41 +00:00
};
2018-08-08 21:54:58 +00:00
}