intcmdtab.h
来自「嵌入式系统设计与开发实例详解--基于ARM的应用(采用ARM7TDMI内核的、三」· C头文件 代码 · 共 83 行
H
83 行
/*----------------------------------------------------------------------------
* Copyright (c) 2001 by National Semiconductor Corporation
* National Semiconductor Corporation
* 2900 Semiconductor Drive
* Santa Clara, California 95051
*
* All rights reserved
*
*<<<-------------------------------------------------------------------------
* File Contents:
* intCmdTab.h
*
* Project: USB Demo Application
* Author : Yan Nosovitsky
* Date : Dec 2001
*----------------------------------------------------------------------->>>*/
#if !defined(AFX_INTCMDTAB_H__B09013F9_F2A3_45D9_AFDD_95D8301BEB30__INCLUDED_)
#define AFX_INTCMDTAB_H__B09013F9_F2A3_45D9_AFDD_95D8301BEB30__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// intCmdTab.h : header file
//
#include "IntFunc.h"
/////////////////////////////////////////////////////////////////////////////
// intCmdTab dialog
class intCmdTab : public CDialog
{
// Construction
public:
intCmdTab(CWnd* pParent = NULL); // standard constructor
void UpdatePipes();
void processStoped();
IntFunc *intFunc;
// Dialog Data
//{{AFX_DATA(intCmdTab)
enum { IDD = IDD_INT_TAB };
CStatic m_arrivedInt;
CProgressCtrl m_progresBar;
CStatic m_interval;
CSliderCtrl m_intervalSlider;
CEdit m_intNum;
CListBox m_pipesList;
CButton m_buttonDet;
CButton m_buttonGo;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(intCmdTab)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(intCmdTab)
afx_msg void OnSelchangeIntPipesList();
afx_msg void OnGoButton();
afx_msg void OnDetailsButton();
afx_msg void OnCancel() {}
afx_msg void OnOK() {}
afx_msg void OnCustomdrawIntervalSlider(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
int selPipe;
bool isUnderTest;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_INTCMDTAB_H__B09013F9_F2A3_45D9_AFDD_95D8301BEB30__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?