AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
examples/ui/views/src/ExampleWindow.h
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/.
*/
#pragma once
#include <AUI/Platform/AWindow.h>
#include "AUI/Thread/AAsyncHolder.h"
class API_AUI_AUDIO IAudioPlayer;
class ExampleWindow: public AWindow {
public:
    ExampleWindow();
    void onDragDrop(const ADragNDrop::DropEvent& event) override;
    bool onDragEnter(const ADragNDrop::EnterEvent& event) override;
private:
    ADeque<_<AWindow>> mWindows;
    AAsyncHolder mAsync;
    _<IAudioPlayer> mWavAudio;
    _<IAudioPlayer> mOggAudio;
};
Holds a set of futures keeping them valid.
Definition AAsyncHolder.h:31
A std::deque with AUI extensions.
Definition ADeque.h:27
virtual bool onDragEnter(const ADragNDrop::EnterEvent &event)
Called when the user holds a drag-n-drop object over the window.
Represents a window in the underlying windowing system.
Definition AWindow.h:45
Interface for audio playback.
Definition IAudioPlayer.h:15
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
Definition ADragNDrop.h:67
Definition ADragNDrop.h:62