home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / WORDPAD.PAK / IPFRAME.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  2.0 KB  |  74 lines

  1. // ipframe.h : interface of the CInPlaceFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CWordPadResizeBar : public COleResizeBar
  14. {
  15. public: 
  16.     void SetMinSize(CSize size) {m_tracker.m_sizeMin = size;}
  17. };
  18.  
  19. class CInPlaceFrame : public COleIPFrameWnd
  20. {
  21.     DECLARE_DYNCREATE(CInPlaceFrame)
  22. public:
  23.     CInPlaceFrame();
  24.  
  25. // Attributes
  26. public:
  27.     CToolBar m_wndToolBar;
  28.     CFormatBar m_wndFormatBar;
  29.     CRulerBar m_wndRulerBar;
  30.     CWordPadResizeBar m_wndResizeBar;
  31.     COleDropTarget m_dropTarget;
  32.  
  33. // Operations
  34. public:
  35.     virtual void RecalcLayout(BOOL bNotify = TRUE);
  36.     virtual void CalcWindowRect(LPRECT lpClientRect, 
  37.         UINT nAdjustType = adjustBorder);
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CInPlaceFrame)
  42.     public:
  43.     virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc);
  44.     virtual void RepositionFrame(LPCRECT lpPosRect, LPCRECT lpClipRect);
  45.     //}}AFX_VIRTUAL
  46.  
  47. // Implementation
  48. public:
  49. #ifdef _DEBUG
  50.     virtual void AssertValid() const;
  51.     virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53.  
  54. protected:
  55.     BOOL CreateToolBar(CWnd* pWndFrame);
  56.     BOOL CreateFormatBar(CWnd* pWndFrame);
  57.     BOOL CreateRulerBar(CWnd* pWndFrame);
  58.  
  59. // Generated message map functions
  60. protected:
  61.     //{{AFX_MSG(CInPlaceFrame)
  62.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  63.     afx_msg void OnDestroy();
  64.     afx_msg void OnHelpFinder();
  65.     afx_msg void OnCharColor();
  66.     afx_msg void OnPenToggle();
  67.     //}}AFX_MSG
  68.     LRESULT OnResizeChild(WPARAM wParam, LPARAM lParam);
  69.     afx_msg LONG OnBarState(UINT wParam, LONG lParam);
  70.     DECLARE_MESSAGE_MAP()
  71. };
  72.  
  73. /////////////////////////////////////////////////////////////////////////////
  74.