forked from mirrors/0ad
397a350e45
Territories: Fixed memory leaks. Atlas: New section-toolbar. Fixed colour of brush grid. Moved open/save into File menu. Added 3D-ish lighting control. Added 'busy' notifications. This was SVN commit r4079.
17 lines
311 B
C++
17 lines
311 B
C++
#include "../Common/Sidebar.h"
|
|
|
|
struct ObjectSidebarImpl;
|
|
class ObjectSidebar : public Sidebar
|
|
{
|
|
public:
|
|
ObjectSidebar(wxWindow* sidebarContainer, wxWindow* bottomBarContainer);
|
|
~ObjectSidebar();
|
|
void SetObjectFilter(int type);
|
|
|
|
protected:
|
|
virtual void OnFirstDisplay();
|
|
|
|
private:
|
|
ObjectSidebarImpl* p;
|
|
};
|