This commit is contained in:
2013-07-17 03:29:34 +00:00
parent d77f19cb16
commit 328618ed56
7 changed files with 193 additions and 57 deletions

View File

@@ -2,7 +2,8 @@
//
#pragma once
#include "DataMgr.h"
#include "afxwin.h"
// CCPRobotDlg 대화 상자
class CCPRobotDlg : public CDialog
@@ -14,22 +15,35 @@ public:
// 대화 상자 데이터입니다.
enum { IDD = IDD_CPROBOT_DIALOG };
afx_msg void OnBnClickedButtonRefreshBalance();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnDestroy();
afx_msg void OnBnClickedButtonStartDeal();
afx_msg void OnBnClickedButtonSearch();
afx_msg void OnBnClickedRadioBid();
afx_msg void OnBnClickedRadioAsk();
afx_msg void OnEnChangeEditOrderingprice();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
virtual BOOL DestroyWindow();
// 구현입니다.
protected:
HICON m_hIcon;
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButtonRefreshBalance();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnDestroy();
HICON m_hIcon;
private:
void UpdateDataCustom(const BOOL bWndToVariable);
CListBox m_ResultList;
CDataMgr* m_pDataMgr;
ICpOptionCodePtr m_pOpCode;
IDibPtr m_pOpMst;
};