AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
examples/app/minesweeper/src/CellView.h
Note
This Source File belongs to Minesweeper Game 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/.
*/
#pragma once
#include "FieldCell.h"
#include "AUI/View/AView.h"
class CellView : public AView {
public:
    CellView(FieldCell& cell);
    void render(ARenderContext context) override;
    [[nodiscard]]
    FieldCell fieldCell() const { return mCell; }
private:
    FieldCell& mCell;
    FieldCell mCellValueCopy;
};
Base class of all UI objects.
Definition AView.h:78
virtual void render(ARenderContext ctx)
Draws this AView. Noone should call this function except rendering routine.
Render context passed to AView::render.
Definition ARenderContext.h:43