mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 00:15:08 +00:00
16 lines
369 B
C++
16 lines
369 B
C++
#pragma once
|
|
|
|
#include "WindowIdentifier.h"
|
|
#include <LibGUI/GButton.h>
|
|
|
|
class TaskbarButton final : public GButton {
|
|
C_OBJECT(TaskbarButton)
|
|
public:
|
|
TaskbarButton(const WindowIdentifier&, GWidget* parent);
|
|
virtual ~TaskbarButton() override;
|
|
|
|
private:
|
|
virtual void context_menu_event(GContextMenuEvent&) override;
|
|
|
|
WindowIdentifier m_identifier;
|
|
};
|