linkdlg.h
来自「VC做的矢量画图程序!」· C头文件 代码 · 共 71 行
H
71 行
#if !defined(AFX_LINKDLG_H__D305C9D3_1B8B_11D3_B41D_1462AD000000__INCLUDED_)
#define AFX_LINKDLG_H__D305C9D3_1B8B_11D3_B41D_1462AD000000__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// LinkDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CLinkDlg dialog
class CDrawDoc;
class CLinkDataSet;
class CLinkDlg : public CDialog
{
// Construction
public:
BOOL IsExistLink(short lb,int id);
BOOL IsExistLink1(short lb,int id);
CLinkDlg(CWnd* pParent = NULL); // standard constructor
CLinkDlg(CDrawDoc* pDoc,CLinkDataSet* pSet,CString RecordID,CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CLinkDlg)
enum { IDD = IDD_LINK };
CLinkDataSet* m_pSet;
int m_type;
//}}AFX_DATA
protected:
int m_Current;
int m_RecordID;
CDrawDoc* m_pDoc;
CListBox *plist1,*plist2;
CComboBox *pcom1;
short m_GraphLB[200],m_GraphLB1[200]; //图形的
int m_GraphID[200],m_GraphID1[200];
short m_NumbLink,m_NumbLink1;
CString graph_Name[10];
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CLinkDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CLinkDlg)
virtual BOOL OnInitDialog();
afx_msg void OnLinkAdd();
afx_msg void OnSelchangeList2();
afx_msg void OnSelchangeList1();
afx_msg void OnLinkDelete();
afx_msg void OnLinkDelAll();
afx_msg void OnLinkAddAll();
virtual void OnOK();
virtual void OnCancel();
afx_msg void OnSetfocusList1();
afx_msg void OnSetfocusList2();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_LINKDLG_H__D305C9D3_1B8B_11D3_B41D_1462AD000000__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?