48 lines
1.0 KiB
C++
48 lines
1.0 KiB
C++
// mysizeba.h : header file
|
|
//
|
|
// Docktest demo of Dockable Views functionality
|
|
// CMyListBoxBar window
|
|
|
|
#include "OXSizeCtrlBar.h"
|
|
|
|
class CMyListBoxBar : public COXSizeControlBar
|
|
{
|
|
// Construction
|
|
public:
|
|
BOOL Create(CWnd * pParentWnd, const CString& sTitle = _T("ListBox"),
|
|
const UINT nID=ID_LISTBOXBAR);
|
|
DECLARE_DYNAMIC(CMyListBoxBar);
|
|
|
|
CMyListBoxBar();
|
|
|
|
// Attributes
|
|
public:
|
|
CListBox m_ListBox;
|
|
CBitmapButton m_Button;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMyListBoxBar)
|
|
protected:
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
//}}AFX_VIRTUAL
|
|
protected:
|
|
virtual void OnSizedOrDocked(int cx, int cy, BOOL bFloating, int flags);
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CMyListBoxBar();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CMyListBoxBar)
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void PopupMessage();
|
|
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|