tb_select: allow changing the axis of a TBSelectList

This commit is contained in:
Crypto City 2022-07-09 08:12:04 +00:00
parent d1a5e5f88f
commit bbf4eb0dda

View File

@ -90,6 +90,8 @@ public:
void SetPage(int page);
int GetPage() const { return m_page; }
int GetNumPages() const { return m_num_pages; }
void SetAxis(AXIS axis) { m_layout.SetAxis(axis); }
AXIS GetAxis() const { return m_layout.GetAxis(); }
virtual void OnInflate(const INFLATE_INFO &info);
virtual void OnSkinChanged();