-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathChartInstrumentTree.cpp
116 lines (102 loc) · 4.09 KB
/
ChartInstrumentTree.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/************************************************************************
* Copyright(c) 2013, One Unified. All rights reserved. *
* email: [email protected] *
* *
* This file is provided as is WITHOUT ANY WARRANTY *
* without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* This software may not be used nor distributed without proper license *
* agreement. *
* *
* See the file LICENSE.txt for redistribution information. *
************************************************************************/
//#include "StdAfx.h"
#include <stdexcept>
#include "ChartInstrumentTree.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
IMPLEMENT_DYNAMIC(CChartInstrumentTree, CTreeCtrl)
CChartInstrumentTree::CChartInstrumentTree(void)
: CTreeCtrl()
{
}
CChartInstrumentTree::~CChartInstrumentTree(void) {
}
void CChartInstrumentTree::Add(const std::string &sStrategy, const std::string &sName, CChartDataView *pDataView) {
HTREEITEM itemStrategy;
HTREEITEM itemName;
// if this code chunk changes, copy into Remove method as well
bool bStrategyFound = false;
bool bNameFound = false;
CString s;
for ( HTREEITEM ix = GetNextItem( TVI_ROOT, TVGN_CHILD ); NULL != ix; ix = GetNextItem( ix, TVGN_NEXT ) ) {
s = GetItemText( ix );
if ( 0 == s.Compare( sStrategy.c_str() ) ) {
bStrategyFound = true;
itemStrategy = ix;
for ( HTREEITEM iy = GetNextItem( itemStrategy, TVGN_CHILD ); NULL != iy; iy = GetNextItem( iy, TVGN_NEXT ) ) {
s = GetItemText( iy );
if ( 0 == s.Compare( sName.c_str() ) ) {
bNameFound = true;
itemName = iy;
break;
}
}
break;
}
}
if ( bNameFound ) {
std::string e( "Name " + sName + " already exists in " + sStrategy );
throw std::invalid_argument( e );
}
if ( !bStrategyFound ) {
itemStrategy = InsertItem( sStrategy.c_str() );
bStrategyFound = true;
SetItemText( itemStrategy, sStrategy.c_str() );
SetItemData( itemStrategy, NULL );
}
itemName = InsertItem( sName.c_str(), itemStrategy );
SetItemData( itemName, reinterpret_cast<DWORD_PTR>( pDataView ) );
}
void CChartInstrumentTree::Remove(const std::string &sStrategy, const std::string &sName) {
HTREEITEM itemStrategy;
HTREEITEM itemName;
bool bStrategyFound = false;
bool bNameFound = false;
CString s;
for ( HTREEITEM ix = GetNextItem( TVI_ROOT, TVGN_CHILD ); NULL != ix; ix = GetNextItem( ix, TVGN_NEXT ) ) {
s = GetItemText( ix );
if ( 0 == s.Compare( sStrategy.c_str() ) ) {
bStrategyFound = true;
itemStrategy = ix;
for ( HTREEITEM iy = GetNextItem( itemStrategy, TVGN_CHILD ); NULL != iy; iy = GetNextItem( iy, TVGN_NEXT ) ) {
s = GetItemText( iy );
if ( 0 == s.Compare( sName.c_str() ) ) {
bNameFound = true;
itemName = iy;
break;
}
}
break;
}
}
if ( !bNameFound ) {
std::string e( "Name " + sName + " doesn't exist in " + sStrategy );
throw std::invalid_argument( e );
}
CChartDataView *p = reinterpret_cast<CChartDataView *>( GetItemData( itemName ) );
OnRemove( p );
DeleteItem( itemName );
}
BEGIN_MESSAGE_MAP(CChartInstrumentTree, CTreeCtrl)
END_MESSAGE_MAP()
void CChartInstrumentTree::ProcessSelectionChanged(LPNMTREEVIEWA pNMTreeView) {
CChartDataView *pDataView
= reinterpret_cast<CChartDataView *>( GetItemData( pNMTreeView->itemNew.hItem ) ) ;
//if ( NULL != pDataView ) OnClick( pDataView );
OnClick( pDataView ); // need to repaint a blank window when a data view disappears
}