connectdialog.h
来自「fortran并行计算包」· C头文件 代码 · 共 42 行
H
42 行
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */#pragma once#include "afxwin.h"// CConnectDialog dialogclass CConnectDialog : public CDialog{ DECLARE_DYNAMIC(CConnectDialog)public: CConnectDialog(CWnd* pParent = NULL); // standard constructor virtual ~CConnectDialog();// Dialog Data enum { IDD = IDD_CONNECT_DIALOG }; enum CONNECT_TYPE { MPI_CONNECT, TCP_CONNECT };protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support DECLARE_MESSAGE_MAP()public: int m_nPort; CString m_pszHost; CString m_pszMPIPort; afx_msg void OnBnClickedMpiRadio(); afx_msg void OnBnClickedTcpRadio(); CButton m_MPI_Radio; CButton m_TCP_Radio; CONNECT_TYPE m_type; CEdit m_mpi_port_edit; CEdit m_host_edit; CEdit m_port_edit; virtual BOOL OnInitDialog();};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?