home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / ISDKC122.ZIP / MAINFRM.H (.txt) < prev    next >
C/C++ Source or Header  |  1996-05-17  |  3KB  |  85 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CHtmlFrame
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Implementation
  18. public:
  19.     virtual ~CMainFrame();
  20. #ifdef _DEBUG
  21.     virtual void AssertValid() const;
  22.     virtual void Dump(CDumpContext& dc) const;
  23. #endif 
  24.     HINSTANCE LoadHttpLibrary();     
  25.  
  26. protected:  // control bar embedded members
  27. public:
  28.     CStatusBar  m_wndStatusBar;
  29.     CToolBar    m_wndToolBar;
  30.     BOOL        m_bShowTitleBar;  
  31.     BOOL        m_bShowTransferStatus;
  32.     BOOL        m_bFormSubmitEvent;
  33.     BOOL        m_bXfrStatusEvent;
  34.     int            m_bXfrStartEndEvent;
  35.     BOOL        m_bMouseMoveEvent;
  36.     BOOL        m_bInternetEnable;
  37.     HWND        m_htmlWnd;
  38.  
  39. // Generated message map functions
  40. protected:
  41.     //{{AFX_MSG(CMainFrame)
  42.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code!  
  45.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);  
  46.     afx_msg BOOL OnQueryNewPalette();
  47.     afx_msg void OnCreateHTMLWindow();
  48.     afx_msg void OnShowHTMLWindow();
  49.     afx_msg void OnGoHome();
  50.     afx_msg void OnUpdateGoHome(CCmdUI *pCmdUI); 
  51.     afx_msg void OnGoPrevious();
  52.     afx_msg void OnUpdateGoPrevious(CCmdUI *pCmdUI); 
  53.     afx_msg void OnGoNext();
  54.     afx_msg void OnUpdateGoNext(CCmdUI *pCmdUI); 
  55.     afx_msg void OnReload();
  56.     afx_msg void OnStop();
  57.     afx_msg void OnUpdateStop(CCmdUI *pCmdUI); 
  58.     afx_msg void OnGotoSite();
  59.     afx_msg void OnUpdateGotoSite(CCmdUI *pCmdUI); 
  60.     afx_msg void OnGetCurrentAddress();
  61.     afx_msg void OnGetCurrentTitle();
  62.     afx_msg void OnUpdateTitleBar();
  63.     afx_msg void OnReadInitFile();  
  64.     afx_msg void OnSetCacheDir();  
  65.     afx_msg void OnGetCacheDir();  
  66.     afx_msg void OnEmptyCache();  
  67.     afx_msg void OnPrintHTMLDocument();  
  68.     afx_msg void OnInternetEnable();
  69.     afx_msg void OnUpdateInternetEnable(CCmdUI *pCmdUI); 
  70.     afx_msg void OnFormSubmitEvent();
  71.     afx_msg void OnUpdateFormSubmitEvent(CCmdUI *pCmdUI); 
  72.     afx_msg void OnXfrStatusEvent();
  73.     afx_msg void OnUpdateXfrStatusEvent(CCmdUI *pCmdUI); 
  74.     afx_msg void OnMouseMoveEvent();
  75.     afx_msg void OnUpdateMouseMoveEvent(CCmdUI *pCmdUI); 
  76.     afx_msg void OnXfrStartEndEvent();
  77.     afx_msg void OnUpdateXfrStartEndEvent(CCmdUI *pCmdUI); 
  78.     afx_msg void OnISDKHelp();
  79.     afx_msg LONG OnEventHandle(WPARAM id, LPARAM lparam);
  80.     //}}AFX_MSG
  81.     DECLARE_MESSAGE_MAP()
  82. };
  83.  
  84. /////////////////////////////////////////////////////////////////////////////
  85.