You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
988 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "GlobalMember.h"
// CShowFJDataDlg 对话框
class CShowFJDataDlg : public CDialogEx
{
DECLARE_DYNAMIC(CShowFJDataDlg)
public:
CShowFJDataDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~CShowFJDataDlg();
// 对话框数据
enum { IDD = IDD_DLG_SHOW_FJ_DATA };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
private:
//扩展、收缩载荷控制面板(默认为收缩)
bool m_shrink; //是否收缩标记值
int m_DlgWidth; //对话框高度
int m_DlgWidth_Shrink; //收缩后的对话框高度
// 对话框半透明设置变量
BOOL m_bTransParent; // TRUE为半透明初始设置为FALSE
// 计算焦距比例的变量值初始比例为1:1
double m_PixelProportion_EO;
double m_PixelProportion_IR;
public:
// 显示复接数据
//void ShowFJData(const struTranslateProtocal_FJ &frame);
// 显示96复接数据
void ShowCH96FJData(const Data96TXD &frame);
// 一般模式/专家模式切换
virtual BOOL OnInitDialog();
virtual BOOL PreTranslateMessage(MSG* pMsg);
};