AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
examples/ui/views/src/DemoGraphView.cpp
Note
This Source File belongs to Views Example Example. Please follow the link for example explanation.
/*
* AUI Framework - Declarative UI toolkit for modern C++20
* Copyright (C) 2020-2025 Alex2772 and Contributors
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "DemoGraphView.h"
#include <AUI/ASS/ASS.h>
constexpr auto POINT_COUNT = 100.f;
DemoGraphView::DemoGraphView()
{
    setFixedSize({ 5_dp * POINT_COUNT, 100_dp }); // set fixed size
    mPoints.reserve(POINT_COUNT);
    for (std::size_t i = 0; i < POINT_COUNT; ++i) {
        // map a sinusoid to view
        mPoints << glm::vec2{ 5_dp * float(i), 100_dp * ((glm::sin(i / 10.f) + 1.f) / 2.f) };
    }
}
void DemoGraphView::render(ARenderContext ctx) {
    AView::render(ctx);
    ctx.render.lines(ASolidBrush{0xff0000_rgb }, mPoints, ABorderStyle::Dashed{}, 4_dp);
}
virtual void render(ARenderContext ctx)
Draws this AView. Noone should call this function except rendering routine.
virtual void lines(const ABrush &brush, AArrayView< glm::vec2 > points, const ABorderStyle &style, AMetric width)=0
Draws polyline (non-loop line strip).
Displays a series of short square-ended dashes or line segments.
Definition ABorderStyle.h:35
Render context passed to AView::render.
Definition ARenderContext.h:43
Definition ABrush.h:32