Loading...
Searching...
No Matches
Rectangle.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith. All rights reserved.
2// Malena Framework — Proprietary Software. See LICENSE for terms.
3
4#ifndef MALENA_RECTANGLE_H
5#define MALENA_RECTANGLE_H
6
7#pragma once
8
13
14namespace ml
15{
47 class MALENA_API Rectangle : public Graphic<ml::RoundedRectangle>
48 {
49 public:
50 using Graphic::Graphic;
51#ifdef _WIN32
52 ~Rectangle() override;
53#endif
54 };
55
67 template<typename MANIFEST>
68 class RectangleWith : public Rectangle, public Customizable<MANIFEST> {};
69
70} // namespace ml
71
72#endif // MALENA_RECTANGLE_H
A framework-integrated rectangle with optional rounded corners.
Definition Rectangle.h:48
Rectangle with an attached manifest.
Definition Rectangle.h:68
#define MALENA_API
Definition Component.h:22