DragonNest/Third/XTToolkitPro/Samples/Controls/SplitterWindow/MainFrm.h
2024-12-19 09:48:26 +08:00

123 lines
3.3 KiB
C++

// MainFrm.h : interface of the CMainFrame class
//
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
// (c)1998-2008 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
// CONSENT OF CODEJOCK SOFTWARE.
//
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
// SINGLE COMPUTER.
//
// CONTACT INFORMATION:
// support@codejock.com
// http://www.codejock.com
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAINFRM_H__A105F07A_6E79_4360_9389_0BFC230BAC68__INCLUDED_)
#define AFX_MAINFRM_H__A105F07A_6E79_4360_9389_0BFC230BAC68__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CView1;
class CView2;
class CView3;
class CView4;
#define CMainFrameBase CXTPFrameWnd
class CMainFrame : public CMainFrameBase
{
protected: // create from serialization only
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// Attributes
public:
// Operations
public:
BOOL m_bRowHidden;
BOOL m_bColHidden;
BOOL m_bSwapped;
BOOL m_bReplaced;
BOOL m_bFullDrag;
BOOL m_bDotTrack;
BOOL m_bNoSizing;
BOOL m_bFlatSplit;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMainFrame)
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // control bar embedded members
void SetTheme(int iTheme);
CXTPStatusBar m_wndStatusBar;
CXTSplitterWnd m_wndSplitter;
CXTRegistryManager m_regMgr;
int m_iTheme;
CView1* m_pView1;
CView2* m_pView2;
CView3* m_pView3;
CView4* m_pView4;
// Generated message map functions
protected:
//{{AFX_MSG(CMainFrame)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSwapViews();
afx_msg void OnReplaceView();
afx_msg void OnUpdateReplaceView(CCmdUI* pCmdUI);
afx_msg void OnUpdateSwapViews(CCmdUI* pCmdUI);
afx_msg void OnHideFirstRow();
afx_msg void OnUpdateHideFirstRow(CCmdUI* pCmdUI);
afx_msg void OnHideFirstCol();
afx_msg void OnUpdateHideFirstCol(CCmdUI* pCmdUI);
afx_msg void OnSplitNofulldrag();
afx_msg void OnUpdateSplitNofulldrag(CCmdUI* pCmdUI);
afx_msg void OnSplitDottracker();
afx_msg void OnUpdateSplitDottracker(CCmdUI* pCmdUI);
afx_msg void OnSplitNosize();
afx_msg void OnUpdateSplitNosize(CCmdUI* pCmdUI);
afx_msg void OnSplitFlatsplitter();
afx_msg void OnUpdateSplitFlatsplitter(CCmdUI* pCmdUI);
afx_msg void OnViewThemeOfficeXP();
afx_msg void OnUpdateViewThemeOfficeXP(CCmdUI* pCmdUI);
afx_msg void OnClose();
//}}AFX_MSG
afx_msg void OnCustomize();
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MAINFRM_H__A105F07A_6E79_4360_9389_0BFC230BAC68__INCLUDED_)