mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 23:03:56 -07:00
23 lines
401 B
C++
23 lines
401 B
C++
#include "../Common/Sidebar.h"
|
|
|
|
struct ObjectSidebarImpl;
|
|
class ObjectSidebar : public Sidebar
|
|
{
|
|
public:
|
|
ObjectSidebar(wxWindow* sidebarContainer, wxWindow* bottomBarContainer);
|
|
~ObjectSidebar();
|
|
void SetObjectFilter(int type);
|
|
|
|
protected:
|
|
void OnFirstDisplay();
|
|
|
|
private:
|
|
ObjectSidebarImpl* p;
|
|
};
|
|
|
|
class ObjectBottomBar : public wxPanel
|
|
{
|
|
public:
|
|
ObjectBottomBar(wxWindow* parent);
|
|
private:
|
|
};
|