home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / MRCE / DOCKTEST.ZIP / MYSIZEBA.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-11  |  993 b   |  43 lines

  1. // mysizeba.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMyListBoxBar window
  6.  
  7. class CMyListBoxBar : public CMRCSizeControlBar
  8. {
  9. // Construction
  10. public:
  11.     DECLARE_DYNAMIC(CMyListBoxBar);
  12.  
  13.     CMyListBoxBar();
  14.  
  15. // Attributes
  16. public:
  17.     CListBox                  m_ListBox;
  18.     CMRCBitmapButton          m_Button;
  19.  
  20. // Operations
  21. public:
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CMyListBoxBar)
  26.     //}}AFX_VIRTUAL
  27.     protected:
  28.         virtual void OnSizedOrDocked(int cx, int cy, BOOL bFloating, int flags);
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CMyListBoxBar();
  33.  
  34.     // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMyListBoxBar)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.     afx_msg void PopupMessage();
  39.     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.