23 lines
401 B
C++
23 lines
401 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "bar/bar.hpp"
|
|
#include "glibmm/refptr.h"
|
|
#include "gtkmm/application.h"
|
|
#include "services/hyprland.hpp"
|
|
#include "services/tray.hpp"
|
|
|
|
class App {
|
|
public:
|
|
App();
|
|
|
|
int run();
|
|
private:
|
|
Glib::RefPtr<Gtk::Application> app;
|
|
std::vector<Bar*> bars;
|
|
HyprlandService hyprlandService;
|
|
TrayService trayService;
|
|
|
|
void setupServices();
|
|
}; |