base function of indicators work again
This commit is contained in:
14
include/components/workspaceIndicator.hpp
Normal file
14
include/components/workspaceIndicator.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "gtkmm/box.h"
|
||||
#include "gtkmm/button.h"
|
||||
#include "gtkmm/overlay.h"
|
||||
|
||||
class WorkspaceIndicator : public Gtk::Box {
|
||||
public:
|
||||
WorkspaceIndicator(std::string label, sigc::slot<void()> onClick = {});
|
||||
|
||||
private:
|
||||
Gtk::Button button;
|
||||
};
|
||||
Reference in New Issue
Block a user