#pragma once
|
#include <wx/wx.h>
|
#include <list>
|
enum MsgTypeEnum {
|
MSG_TYPE_ERROR,
|
MSG_TYPE_WARNING,
|
MSG_TYPE_INFO
|
};
|
|
struct TradeQueue {
|
wxString num;
|
int type;
|
};
|
|
|
// ίÍÐÐÅÏ¢
|
struct DelegateInfo {
|
int index;
|
wxString id;
|
wxString code;
|
wxString codeName;
|
|
wxString buy1_money;
|
int big_num_count;
|
wxString big_num_money;
|
int not_deal_big_num_count_pre;// û³É½»Ç°´óµ¥
|
int not_deal_total_big_count_after;// û³É½»ºó´óµ¥
|
wxString not_deal_big_num_money_pre;// û³É½»Ç°´óµ¥
|
wxString not_deal_big_num_money_after;// û³É½»ºó´óµ¥
|
int left_count; // ×ܹ²Ê£Óà±ÊÊý
|
wxString left_money;// ×ܹ²Ê£Óà½ð¶î
|
float volume_rate;// Á¿±È
|
bool pay_attention;// ÊÇ·ñÐèҪעÒâ
|
float trade_progress_percent;//³É½»½ø¶È±ÈÀý
|
float limit_up_price;//ÕÇÍ£¼Û
|
bool is_near_big_order; // ÊÇ·ñ¿¿½ü´óµ¥
|
wxString block;// °å¿é
|
wxString limit_up_time; //
|
std::list<TradeQueue> tradeQueueList;
|
wxString zyltgb;
|
int mode;// ϵ¥Ä£Ê½£¬ 3-ɨÈëϵ¥
|
wxString l_down_cancel_rate;// Lϳ·µ¥±ÈÀý
|
wxString expire_rate;
|
};
|