14 lines
291 B
C++
14 lines
291 B
C++
#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;
|
|
}; |