-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathTreeItemInstrument.h
142 lines (109 loc) · 4.61 KB
/
TreeItemInstrument.h
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/************************************************************************
* Copyright(c) 2015, 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. *
************************************************************************/
// started December 13, 2015, 8:16 PM
#pragma once
#include <string>
#include <wx/string.h>
#include <TFTrading/TradingEnumerations.h>
#include "InstrumentActions.h"
#include "TreeItem.h"
class TreeItemInstrument: public TreeItemResources {
friend class boost::serialization::access;
public:
TreeItemInstrument( wxTreeItemId id, ou::tf::TreeItemResources& baseResources, Resources& resources );
virtual ~TreeItemInstrument( void );
virtual void ShowContextMenu( void );
virtual void HandleOnClick( void );
const std::string& GetUnderlying( void ) const { return m_sUnderlying; } // might be able to optimize away
void HandleMenuNewInstrument( wxCommandEvent& event );
// todo: invocable only if no instrument already exists
bool NewInstrumentViaDialog( ou::tf::Allowed::EInstrument selector, const wxString& wxsUnderlying = "" );
protected:
enum IdTreeItemType {
IdGroup = 301, IdInstrument
};
enum {
ID_Null = wxID_HIGHEST,
MINewInstrument, MINewOption, MINewFuturesOption,
MIOptionList,
MILiveChart, MIDailyChart, MISaveData, MIEmit,
MIDelete
};
void BuildContextMenu( wxMenu* pMenu );
void HandleMenuAddFuturesOption( wxCommandEvent& event );
void HandleMenuAddOption( wxCommandEvent& event );
void HandleLiveChart( wxCommandEvent& event );
void HandleDailyChart( wxCommandEvent& event );
void HandleMenuOptionList( wxCommandEvent& event );
//void HandleSaveData( wxCommandEvent& event );
void HandleDelete( wxCommandEvent& event );
void HandleEmit( wxCommandEvent& event );
private:
typedef InstrumentActions::pInstrumentActions_t pInstrumentActions_t;
pInstrumentActions_t m_pInstrumentActions;
ou::tf::Allowed::EInstrument m_InstrumentSelector;
std::string m_sUnderlying;
void InstrumentViaDialog( ou::tf::Allowed::EInstrument selector, const std::string& sPrompt );
// need to keep track of (load, save)
// * menu item text (as it can be changed)
// * instrument code(s)
template<typename Archive>
void save( Archive& ar, const unsigned int version ) const {
ar & boost::serialization::base_object<const TreeItemResources>(*this);
ar & m_InstrumentSelector;
ar & m_sUnderlying;
const mapMembers_t::size_type n = m_mapMembers.size();
ar << n;
for ( mapMembers_t::const_iterator iter = m_mapMembers.begin(); iter != m_mapMembers.end(); ++iter ) {
ar << ( iter->second.m_type );
switch ( iter->second.m_type ) {
case IdInstrument:
{
const TreeItemInstrument* p = dynamic_cast<TreeItemInstrument*>( iter->second.m_pTreeItemBase.get() );
ar & *p;
}
break;
}
}
}
template<typename Archive>
void load( Archive& ar, const unsigned int version ) {
ar & boost::serialization::base_object<TreeItemResources>(*this);
ar & m_InstrumentSelector;
ar & m_sUnderlying;
// this is going to cause problems if renamed, so prevent a rename, ... is rename even available?
m_pInstrumentActions->signalLoadInstrument( m_id, m_baseResources.signalGetItemText( m_id ), m_sUnderlying );
// call InstrumentActions::Startup here?
mapMembers_t::size_type n;
ar & n;
std::cout
<< m_baseResources.signalGetItemText( m_id ) << ","
<< m_sUnderlying << "," << n << ","
<< m_InstrumentSelector
<< std::endl;
for ( mapMembers_t::size_type ix = 0; ix < n; ++ix ) {
unsigned int type;
ar & type;
switch ( type ) {
case IdInstrument:
{
TreeItemInstrument* p = AddTreeItem<TreeItemInstrument,IdTreeItemType>( "Instrument", IdInstrument, m_resources );
ar & *p;
}
break;
}
}
}
BOOST_SERIALIZATION_SPLIT_MEMBER()
};