mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(ui): implement CSimpleFrame::LoadXML_Attributes
This commit is contained in:
parent
b76a9fed82
commit
88f2cb7e5f
9 changed files with 123 additions and 7 deletions
|
|
@ -7,6 +7,7 @@
|
|||
#include "ui/Types.hpp"
|
||||
#include <cstdint>
|
||||
#include <storm/List.hpp>
|
||||
#include <storm/Hash.hpp>
|
||||
|
||||
class CBackdropGenerator;
|
||||
class CCharEvent;
|
||||
|
|
@ -16,6 +17,11 @@ class CSimpleTitleRegion;
|
|||
class CSimpleTop;
|
||||
struct lua_State;
|
||||
|
||||
class FRAMEATTR : public TSHashObject<FRAMEATTR, HASHKEY_STRI> {
|
||||
public:
|
||||
int32_t luaRef;
|
||||
};
|
||||
|
||||
class CSimpleFrame : public CScriptRegion {
|
||||
public:
|
||||
// Static members
|
||||
|
|
@ -79,6 +85,7 @@ class CSimpleFrame : public CScriptRegion {
|
|||
TSLink<CSimpleFrame> m_framesLink;
|
||||
TSLink<CSimpleFrame> m_destroyedLink;
|
||||
TSLink<CSimpleFrame> m_strataLink;
|
||||
TSHashTable<FRAMEATTR, HASHKEY_STRI> m_attributes;
|
||||
|
||||
// Virtual member functions
|
||||
virtual ~CSimpleFrame();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue