343 lines
7.9 KiB
C++
343 lines
7.9 KiB
C++
|
|
// 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 "Pager.h"
|
||
|
|
#include "MainFrm.h"
|
||
|
|
#include "MenuListBoxView.h"
|
||
|
|
#include "PagerView.h"
|
||
|
|
|
||
|
|
#ifdef _DEBUG
|
||
|
|
#define new DEBUG_NEW
|
||
|
|
#undef THIS_FILE
|
||
|
|
static char THIS_FILE[] = __FILE__;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef AFX_ID_VIEW_MINIMUM
|
||
|
|
#define AFX_ID_VIEW_MINIMUM ID_VIEW_SMALLICON
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef AFX_ID_VIEW_MAXIMUM
|
||
|
|
#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_SWITCH_THEME, OnViewSwitchTheme)
|
||
|
|
ON_UPDATE_COMMAND_UI(ID_VIEW_SWITCH_THEME, OnUpdateViewSwitchTheme)
|
||
|
|
//}}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()
|
||
|
|
{
|
||
|
|
// 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;
|
||
|
|
|
||
|
|
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(CMenuListBoxView), CSize(100, 100), pContext) ||
|
||
|
|
!m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CPagerView), CSize(100, 100), pContext))
|
||
|
|
{
|
||
|
|
m_wndSplitter.DestroyWindow();
|
||
|
|
return FALSE;
|
||
|
|
}
|
||
|
|
|
||
|
|
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));
|
||
|
|
|
||
|
|
|
||
|
|
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
|
||
|
|
|
||
|
|
CPagerView* CMainFrame::GetRightPane()
|
||
|
|
{
|
||
|
|
CWnd* pWnd = m_wndSplitter.GetPane(0, 1);
|
||
|
|
CPagerView* pView = DYNAMIC_DOWNCAST(CPagerView, pWnd);
|
||
|
|
return pView;
|
||
|
|
}
|
||
|
|
|
||
|
|
void CMainFrame::OnUpdateViewStyles(CCmdUI* pCmdUI)
|
||
|
|
{
|
||
|
|
// TODO: customize or extend this code to handle choices on the
|
||
|
|
// View menu.
|
||
|
|
|
||
|
|
CPagerView* 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.
|
||
|
|
CPagerView* pView = GetRightPane();
|
||
|
|
|
||
|
|
// if the right-hand pane has been created and is a CPagerView,
|
||
|
|
// 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::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::OnViewSwitchTheme()
|
||
|
|
{
|
||
|
|
switch (m_iTheme)
|
||
|
|
{
|
||
|
|
case xtThemeDefault: m_iTheme = xtThemeOfficeXP; break;
|
||
|
|
case xtThemeOfficeXP: m_iTheme = xtThemeOffice2003; break;
|
||
|
|
case xtThemeOffice2003: m_iTheme = xtThemeDefault; break;
|
||
|
|
}
|
||
|
|
|
||
|
|
SetTheme(m_iTheme);
|
||
|
|
}
|
||
|
|
|
||
|
|
void CMainFrame::OnUpdateViewSwitchTheme(CCmdUI* pCmdUI)
|
||
|
|
{
|
||
|
|
pCmdUI->Enable();
|
||
|
|
}
|
||
|
|
|
||
|
|
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;
|
||
|
|
|
||
|
|
// instantiate 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();
|
||
|
|
}
|