mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
5a92c22d90
This shifts the responsibility of updating the actual size more towards IGUIObject, and enables only ever doing it when the value is actually needed. This allows us to remove the delay of size changed notifications, since the value is now already recalculated as infrequently as possible anyways. All of that ensures that the actual size (returned by GetActualSize) is always up-to-date e.g. when reading it from the parent, which was previously broken. Fixes #8200
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/* Copyright (C) 2026 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef INCLUDED_IPANEL
|
|
#define INCLUDED_IPANEL
|
|
|
|
#include "gui/ObjectBases/IGUIObject.h"
|
|
#include "maths/Rect.h"
|
|
|
|
class CGUI;
|
|
|
|
class IGUIPanel : public IGUIObject
|
|
{
|
|
public:
|
|
IGUIPanel(CGUI& pGUI);
|
|
virtual ~IGUIPanel();
|
|
|
|
virtual bool IsMouseOver() const;
|
|
|
|
virtual const std::vector<IGUIObject*>& GetVisibleChildren() const;
|
|
|
|
protected:
|
|
virtual void RecalculateActualSize() const;
|
|
mutable CRect m_CachedLayoutActualSize;
|
|
bool m_Drawing = false;
|
|
};
|
|
|
|
#endif // INCLUDED_IPANEL
|