17 lines
258 B
C++
17 lines
258 B
C++
#pragma once
|
|
|
|
#include <gtk4-layer-shell/gtk4-layer-shell.h>
|
|
#include <gtkmm.h>
|
|
#include <gtkmm/label.h>
|
|
|
|
|
|
class Spacer : public Gtk::Label
|
|
{
|
|
public:
|
|
Spacer()
|
|
{
|
|
set_hexpand(true);
|
|
set_text("|");
|
|
set_name("spacer");
|
|
}
|
|
}; |