www.pudn.com > cad3d.zip > MainFrameSplitter.h


/***************************************************************************
                          MainFrameSplitter.h  -  description
                             -------------------
    begin                : Sat Apr 13 2002
    copyright            : (C) 2002 by Martin Marinov
    email                : martin_marinov@hotmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef __MainFrameSplitter_h__
#define __MainFrameSplitter_h__

#include 

typedef wxWindow CSplitterPaneWnd;

class CMainFrameSplitter : public wxSplitterWindow
{
protected:
	CSplitterPaneWnd* 		m_pLeftPane;
	CSplitterPaneWnd* 		m_pRightPane;

public:
	CMainFrameSplitter(wxWindow* pParent);
	virtual ~CMainFrameSplitter();
	
	wxWindow*				GetLeftWindowPtr();
	wxWindow*				GetRightWindowPtr();
};

#endif//__MainFrameSplitter_h__