AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
examples/ui/contacts/src/view/common.cpp
Note
This Source File belongs to AUI Contacts 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 "common.h"
#include <AUI/Util/UIBuildingHelpers.h>
using namespace ass;
using namespace declarative;
_<AView> common_views::divider() {
    return _new<AView>() with_style { FixedSize { {}, 1_px }, BackgroundSolid { AColor::GRAY } };
}
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
#define with_style
Allows to define a style to the view right in place.
Definition kAUI.h:287
Represents solid (single color) background.
Definition BackgroundSolid.h:26
Controls the fixed size of AView.
Definition FixedSize.h:26