mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-09 00:15:48 -07:00
18 lines
330 B
C++
18 lines
330 B
C++
class SnapSplitterWindow;
|
|
|
|
class SectionLayout
|
|
{
|
|
public:
|
|
SectionLayout();
|
|
~SectionLayout();
|
|
|
|
void SetWindow(wxWindow* window);
|
|
wxWindow* GetCanvasParent();
|
|
void SetCanvas(wxWindow*);
|
|
void Build();
|
|
|
|
private:
|
|
wxWindow* m_Canvas;
|
|
SnapSplitterWindow* m_HorizSplitter;
|
|
SnapSplitterWindow* m_VertSplitter;
|
|
};
|