/* * Copyright (C) 2020-2022 The opuntiaOS Project Authors. * + Contributed by Nikita Melekhin * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #pragma once #include "../MenuItemAnswer.h" #include namespace WinServer { class BaseWidget { public: BaseWidget() = default; virtual ~BaseWidget() = default; size_t height() { return 20; } virtual size_t width() { return 0; } virtual void draw(LG::Context& ctx) { } virtual MenuItemAnswer mouse_down(int x, int y) { return MenuItemAnswer::Empty; } virtual MenuItemAnswer mouse_up() { return MenuItemAnswer::Empty; } virtual void popup_rect(LG::Rect& r) { } }; } // namespace WinServer