somebar/src/bar_widget.hpp
2021-10-20 21:09:19 +02:00

18 lines
303 B
C++

// somebar - dwl bar
// See LICENSE file for copyright and license details.
#pragma once
#include <QBoxLayout>
#include <QLabel>
#include <QWidget>
class BarWidget {
QWidget _root;
QBoxLayout _box;
QLabel _label;
public:
explicit BarWidget();
~BarWidget();
QWidget* root();
};