FifeGUI 0.2.0
A C++ GUI library designed for games.
containerevent.hpp
1// SPDX-License-Identifier: LGPL-2.1-or-later OR BSD-3-Clause
2// SPDX-FileCopyrightText: 2004 - 2008 Olof Naessén and Per Larsson
3// SPDX-FileCopyrightText: 2013 - 2026 Fifengine contributors
4
5#ifndef INCLUDE_FIFECHAN_CONTAINEREVENT_HPP_
6#define INCLUDE_FIFECHAN_CONTAINEREVENT_HPP_
7
8#include "fifechan/event.hpp"
9#include "fifechan/platform.hpp"
10
11namespace fcn
12{
13 class Container;
14 class Widget;
15
30 class FIFEGUI_API ContainerEvent : public Event
31 {
32 public:
39 ContainerEvent(Widget* source, Container* container);
40
46 Container* getContainer() const;
47
48 protected:
53 };
54} // namespace fcn
55
56#endif // INCLUDE_FIFECHAN_CONTAINEREVENT_HPP_
Container * mContainer
Holds the container the event concerns.
Container * getContainer() const
Gets the container the event concerns.
ContainerEvent(Widget *source, Container *container)
Constructor.
A composite widget capable of holding and managing child widgets.
Definition container.hpp:32
Event(Widget *source)
Constructor.
Definition event.cpp:9
Abstract base class defining the common behavior, properties, and lifecycle of all GUI elements.
Definition widget.hpp:45