AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
ASpinnerV2.h
    1/*
    2 * AUI Framework - Declarative UI toolkit for modern C++20
    3 * Copyright (C) 2020-2025 Alex2772 and Contributors
    4 *
    5 * SPDX-License-Identifier: MPL-2.0
    6 *
    7 * This Source Code Form is subject to the terms of the Mozilla Public
    8 * License, v. 2.0. If a copy of the MPL was not distributed with this
    9 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
   10 */
   11
   12#pragma once
   13
   14
   15#include "AView.h"
   16#include "AUI/Common/ATimer.h"
   17
   34class API_AUI_VIEWS ASpinnerV2: public AView {
   35public:
   36    ASpinnerV2();
   37    ~ASpinnerV2() override = default;
   38    void render(ARenderContext ctx) override;
   39
   40    struct Configuration {
   41        std::chrono::milliseconds period = std::chrono::seconds(1);
   42        size_t steps = 1;
   43    };
   44
   45
   46    void setConfiguration(Configuration configuration);
   47
   48private:
   49    _<ATimer> mTimer;
   50    Configuration mConfiguration;
   51};
   52
   53template<>
   54struct API_AUI_VIEWS ass::prop::Property<ASpinnerV2::Configuration>: ass::prop::IPropertyBase {
   55public:
   56    Property(const ASpinnerV2::Configuration& configuration) : mConfiguration(configuration) {}
   57    ~Property() override = default;
   58
   59    void applyFor(AView *view) override;
   60private:
   61    ASpinnerV2::Configuration mConfiguration;
   62};
void render(ARenderContext ctx) override
Draws this AView. Noone should call this function except rendering routine.
Base class of all UI objects.
Definition AView.h:78
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
Render context passed to AView::render.
Definition ARenderContext.h:43
Definition ASpinnerV2.h:40
Base class for all properties.
Definition IPropertyBase.h:50
Definition IPropertyBase.h:63