Add click handling

This commit is contained in:
Raphael Robatsch 2021-10-22 17:26:05 +02:00
commit 3f09b57ed0
3 changed files with 70 additions and 1 deletions

View file

@ -15,6 +15,7 @@
struct Tag {
QString name;
bool active;
int x;
};
class Bar {
@ -45,5 +46,6 @@ class Bar {
public:
explicit Bar(const wl_output *output);
void setStatus(const QString &status);
void click(int x, int y);
~Bar();
};