www.pudn.com > cad3d.zip > SplitterPane.h
/***************************************************************************
SplitterPane.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 __SplitterPane_h__
#define __SplitterPane_h__
#include
class CSplitterPane : public wxWindow
{
public:
CSplitterPane(wxWindow* pParent);
virtual ~CSplitterPane();
//events handling
void OnSize(wxSizeEvent& rEvent);
void OnEraseBackground(wxEraseEvent& rEvent);
void OnPaint(wxPaintEvent& rEvent);
private:
DECLARE_EVENT_TABLE()
DECLARE_CLASS(CSplitterPane)
};
#endif//__SplitterPane_h__