初步修复
This commit is contained in:
parent
8fc4357cc6
commit
e4714f3f0e
46705 changed files with 12004901 additions and 0 deletions
372
Third/XTToolkitPro/Samples/Controls/SearchOptions/MainFrm.cpp
Normal file
372
Third/XTToolkitPro/Samples/Controls/SearchOptions/MainFrm.cpp
Normal file
|
|
@ -0,0 +1,372 @@
|
|||
// MainFrm.cpp : implementation 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
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "SearchOptions.h"
|
||||
|
||||
#include "MainFrm.h"
|
||||
#include "SearchOptionsPane.h"
|
||||
#include "SearchOptionsView.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
#undef THIS_FILE
|
||||
static char THIS_FILE[] = __FILE__;
|
||||
#endif
|
||||
|
||||
#ifndef AFX_ID_VIEW_MINIMUM // VC5
|
||||
#define AFX_ID_VIEW_MINIMUM ID_VIEW_SMALLICON
|
||||
#define AFX_ID_VIEW_MAXIMUM ID_VIEW_BYNAME
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CMainFrame
|
||||
|
||||
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
|
||||
|
||||
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
|
||||
//{{AFX_MSG_MAP(CMainFrame)
|
||||
ON_WM_CREATE()
|
||||
ON_COMMAND(ID_VIEW_THEME_OFFICEXP, OnViewThemeOfficeXP)
|
||||
ON_UPDATE_COMMAND_UI(ID_VIEW_THEME_OFFICEXP, OnUpdateViewThemeOfficeXP)
|
||||
ON_COMMAND(ID_TOGGLE_SEARCH, OnToggleSearch)
|
||||
ON_UPDATE_COMMAND_UI(ID_TOGGLE_SEARCH, OnUpdateToggleSearch)
|
||||
//}}AFX_MSG_MAP
|
||||
ON_WM_CLOSE()
|
||||
ON_COMMAND(XTP_ID_CUSTOMIZE, OnCustomize)
|
||||
|
||||
ON_UPDATE_COMMAND_UI_RANGE(AFX_ID_VIEW_MINIMUM, AFX_ID_VIEW_MAXIMUM, OnUpdateViewStyles)
|
||||
ON_COMMAND_RANGE(AFX_ID_VIEW_MINIMUM, AFX_ID_VIEW_MAXIMUM, OnViewStyle)
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
static UINT indicators[] =
|
||||
{
|
||||
ID_SEPARATOR, // status line indicator
|
||||
ID_INDICATOR_CAPS,
|
||||
ID_INDICATOR_NUM,
|
||||
ID_INDICATOR_SCRL,
|
||||
};
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CMainFrame construction/destruction
|
||||
|
||||
CMainFrame::CMainFrame()
|
||||
{
|
||||
// TODO: add member initialization code here
|
||||
m_pSearchOptionsPane = NULL;
|
||||
m_pSearchOptionsView = NULL;
|
||||
m_bSearchHidden = false;
|
||||
|
||||
// initialize themes.
|
||||
m_iTheme = m_regMgr.GetProfileInt(
|
||||
_T("Settings"), _T("Theme"), xtThemeOfficeXP);
|
||||
}
|
||||
|
||||
CMainFrame::~CMainFrame()
|
||||
{
|
||||
m_regMgr.WriteProfileInt(
|
||||
_T("Settings"), _T("Theme"), m_iTheme);
|
||||
}
|
||||
|
||||
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
||||
{
|
||||
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
|
||||
return -1;
|
||||
|
||||
if (!m_wndStatusBar.Create(this) ||
|
||||
!m_wndStatusBar.SetIndicators(indicators,
|
||||
sizeof(indicators)/sizeof(UINT)))
|
||||
{
|
||||
TRACE0("Failed to create status bar\n");
|
||||
return -1; // fail to create
|
||||
}
|
||||
|
||||
if (!InitCommandBars())
|
||||
return -1;
|
||||
|
||||
XTPPaintManager()->SetTheme((XTPPaintTheme)m_iTheme);
|
||||
|
||||
CXTPCommandBars* pCommandBars = GetCommandBars();
|
||||
|
||||
pCommandBars->SetMenu(_T("Menu Bar"), IDR_MAINFRAME);
|
||||
|
||||
|
||||
CXTPToolBar* pCommandBar = (CXTPToolBar*)pCommandBars->Add(_T("Standard"), xtpBarTop);
|
||||
if (!pCommandBar ||
|
||||
!pCommandBar->LoadToolBar(IDR_MAINFRAME))
|
||||
{
|
||||
TRACE0("Failed to create toolbar\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Load the previous state for command bars.
|
||||
LoadCommandBars(_T("CommandBars"));
|
||||
SetTheme(m_iTheme);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT /*lpcs*/,
|
||||
CCreateContext* pContext)
|
||||
{
|
||||
// create splitter window
|
||||
if (!m_wndSplitter.CreateStatic(this, 1, 2))
|
||||
return FALSE;
|
||||
|
||||
if (!m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CSearchOptionsPane), CSize(270, 100), pContext) ||
|
||||
!m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CSearchOptionsView), CSize(100, 100), pContext))
|
||||
{
|
||||
m_wndSplitter.DestroyWindow();
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
m_wndSplitter.ShowTopBorder(false, 3);
|
||||
m_wndSplitter.SetSplitterStyle(XT_SPLIT_NOSIZE);
|
||||
|
||||
m_pSearchOptionsPane = (CSearchOptionsPane*)m_wndSplitter.GetPane(0,0);
|
||||
ASSERT_VALID(m_pSearchOptionsPane);
|
||||
|
||||
m_pSearchOptionsView = (CSearchOptionsView*)m_wndSplitter.GetPane(0,1);
|
||||
ASSERT_VALID(m_pSearchOptionsView);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
|
||||
{
|
||||
if( !CFrameWnd::PreCreateWindow(cs) )
|
||||
return FALSE;
|
||||
|
||||
cs.lpszClass = _T("XTPMainFrame");
|
||||
CXTPDrawHelpers::RegisterWndClass(AfxGetInstanceHandle(), cs.lpszClass,
|
||||
CS_DBLCLKS, AfxGetApp()->LoadIcon(IDR_MAINFRAME));
|
||||
|
||||
cs.style &= ~FWS_ADDTOTITLE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CMainFrame diagnostics
|
||||
|
||||
#ifdef _DEBUG
|
||||
void CMainFrame::AssertValid() const
|
||||
{
|
||||
CFrameWnd::AssertValid();
|
||||
}
|
||||
|
||||
void CMainFrame::Dump(CDumpContext& dc) const
|
||||
{
|
||||
CFrameWnd::Dump(dc);
|
||||
}
|
||||
|
||||
#endif //_DEBUG
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CMainFrame message handlers
|
||||
|
||||
CSearchOptionsView* CMainFrame::GetRightPane()
|
||||
{
|
||||
return m_pSearchOptionsView;
|
||||
}
|
||||
|
||||
void CMainFrame::OnUpdateViewStyles(CCmdUI* pCmdUI)
|
||||
{
|
||||
// TODO: customize or extend this code to handle choices on the
|
||||
// View menu.
|
||||
|
||||
CSearchOptionsView* pView = GetRightPane();
|
||||
|
||||
// if the right-hand pane hasn't been created or isn't a view,
|
||||
// disable commands in our range
|
||||
|
||||
if (pView == NULL)
|
||||
pCmdUI->Enable(FALSE);
|
||||
else
|
||||
{
|
||||
DWORD dwStyle = pView->GetStyle() & LVS_TYPEMASK;
|
||||
|
||||
// if the command is ID_VIEW_LINEUP, only enable command
|
||||
// when we're in LVS_ICON or LVS_SMALLICON mode
|
||||
|
||||
if (pCmdUI->m_nID == ID_VIEW_LINEUP)
|
||||
{
|
||||
if (dwStyle == LVS_ICON || dwStyle == LVS_SMALLICON)
|
||||
pCmdUI->Enable();
|
||||
else
|
||||
pCmdUI->Enable(FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
// otherwise, use dots to reflect the style of the view
|
||||
pCmdUI->Enable();
|
||||
BOOL bChecked = FALSE;
|
||||
|
||||
switch (pCmdUI->m_nID)
|
||||
{
|
||||
case ID_VIEW_DETAILS:
|
||||
bChecked = (dwStyle == LVS_REPORT);
|
||||
break;
|
||||
|
||||
case ID_VIEW_SMALLICON:
|
||||
bChecked = (dwStyle == LVS_SMALLICON);
|
||||
break;
|
||||
|
||||
case ID_VIEW_LARGEICON:
|
||||
bChecked = (dwStyle == LVS_ICON);
|
||||
break;
|
||||
|
||||
case ID_VIEW_LIST:
|
||||
bChecked = (dwStyle == LVS_LIST);
|
||||
break;
|
||||
|
||||
default:
|
||||
bChecked = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
pCmdUI->SetRadio(bChecked ? 1 : 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CMainFrame::OnViewStyle(UINT nCommandID)
|
||||
{
|
||||
// TODO: customize or extend this code to handle choices on the
|
||||
// View menu.
|
||||
CSearchOptionsView* pView = GetRightPane();
|
||||
|
||||
// if the right-hand pane has been created and is a CSearchOptionsView,
|
||||
// process the menu commands...
|
||||
if (pView != NULL)
|
||||
{
|
||||
DWORD dwStyle = (DWORD)-1;
|
||||
|
||||
switch (nCommandID)
|
||||
{
|
||||
case ID_VIEW_LINEUP:
|
||||
{
|
||||
// ask the list control to snap to grid
|
||||
CListCtrl& refListCtrl = pView->GetListCtrl();
|
||||
refListCtrl.Arrange(LVA_SNAPTOGRID);
|
||||
}
|
||||
break;
|
||||
|
||||
// other commands change the style on the list control
|
||||
case ID_VIEW_DETAILS:
|
||||
dwStyle = LVS_REPORT;
|
||||
break;
|
||||
|
||||
case ID_VIEW_SMALLICON:
|
||||
dwStyle = LVS_SMALLICON;
|
||||
break;
|
||||
|
||||
case ID_VIEW_LARGEICON:
|
||||
dwStyle = LVS_ICON;
|
||||
break;
|
||||
|
||||
case ID_VIEW_LIST:
|
||||
dwStyle = LVS_LIST;
|
||||
break;
|
||||
}
|
||||
|
||||
// change the style; window will repaint automatically
|
||||
if (dwStyle != -1)
|
||||
pView->ModifyStyle(LVS_TYPEMASK, dwStyle);
|
||||
}
|
||||
}
|
||||
|
||||
void CMainFrame::ToggleSearchPane()
|
||||
{
|
||||
if (m_bSearchHidden) {
|
||||
GetSplitterWnd().ShowColumn();
|
||||
}
|
||||
else {
|
||||
GetSplitterWnd().HideColumn(0);
|
||||
}
|
||||
|
||||
m_bSearchHidden = !m_bSearchHidden;
|
||||
}
|
||||
|
||||
void CMainFrame::OnToggleSearch()
|
||||
{
|
||||
ToggleSearchPane();
|
||||
}
|
||||
|
||||
void CMainFrame::OnUpdateToggleSearch(CCmdUI* pCmdUI)
|
||||
{
|
||||
pCmdUI->SetCheck(!m_bSearchHidden);
|
||||
}
|
||||
|
||||
void CMainFrame::SetTheme(int iTheme)
|
||||
{
|
||||
m_iTheme = iTheme;
|
||||
XTThemeManager()->SetTheme((XTThemeStyle)m_iTheme);
|
||||
XTPPaintManager()->SetTheme((XTPPaintTheme)m_iTheme);
|
||||
|
||||
RedrawWindow( NULL, NULL,
|
||||
RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE | RDW_ALLCHILDREN );
|
||||
|
||||
RecalcLayout();
|
||||
}
|
||||
|
||||
void CMainFrame::OnViewThemeOfficeXP()
|
||||
{
|
||||
SetTheme((m_iTheme == xtThemeOfficeXP)? xtThemeDefault: xtThemeOfficeXP);
|
||||
}
|
||||
|
||||
void CMainFrame::OnUpdateViewThemeOfficeXP(CCmdUI* pCmdUI)
|
||||
{
|
||||
pCmdUI->SetCheck(m_iTheme == xtThemeOfficeXP);
|
||||
}
|
||||
|
||||
void CMainFrame::OnClose()
|
||||
{
|
||||
// Save the current state for command bars.
|
||||
SaveCommandBars(_T("CommandBars"));
|
||||
CFrameWnd::OnClose();
|
||||
}
|
||||
|
||||
void CMainFrame::OnCustomize()
|
||||
{
|
||||
// get a pointer to the command bars object.
|
||||
CXTPCommandBars* pCommandBars = GetCommandBars();
|
||||
if (pCommandBars == NULL)
|
||||
return;
|
||||
|
||||
// instanciate the customize dialog
|
||||
CXTPCustomizeSheet dlg(pCommandBars);
|
||||
|
||||
// add the options page to the customize dialog.
|
||||
CXTPCustomizeOptionsPage pageOptions(&dlg);
|
||||
dlg.AddPage(&pageOptions);
|
||||
|
||||
// add the commands page to the customize dialog.
|
||||
CXTPCustomizeCommandsPage* pPageCommands = dlg.GetCommandsPage();
|
||||
pPageCommands->AddCategories(IDR_MAINFRAME);
|
||||
|
||||
// initialize the commands page page.
|
||||
pPageCommands->InsertAllCommandsCategory();
|
||||
pPageCommands->InsertBuiltInMenus(IDR_MAINFRAME);
|
||||
pPageCommands->InsertNewMenuCategory();
|
||||
|
||||
// display the customize dialog.
|
||||
dlg.DoModal();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue