mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-10 12:41:44 +00:00
48 lines
1,023 B
C
48 lines
1,023 B
C
|
|
||
|
// TegraRcmGUIDlg.h : header file
|
||
|
//
|
||
|
#pragma once
|
||
|
#include "res/BitmapPicture.h"
|
||
|
|
||
|
// CTegraRcmGUIDlg dialog
|
||
|
class CTegraRcmGUIDlg : public CDialog
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CTegraRcmGUIDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
CBitmapPicture RCM_BITMAP0;
|
||
|
CBitmapPicture RCM_BITMAP1;
|
||
|
CBitmapPicture RCM_BITMAP2;
|
||
|
CBitmapPicture RCM_BITMAP3;
|
||
|
|
||
|
|
||
|
// Dialog Data
|
||
|
#ifdef AFX_DESIGN_TIME
|
||
|
enum { IDD = IDD_TEGRARCMGUI_DIALOG };
|
||
|
#endif
|
||
|
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
HICON m_hIcon;
|
||
|
// Generated message map functions
|
||
|
virtual BOOL OnInitDialog();
|
||
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
||
|
afx_msg void OnIdle();
|
||
|
afx_msg void OnShowWindow();
|
||
|
afx_msg void OnPaint();
|
||
|
afx_msg HCURSOR OnQueryDragIcon();
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
public:
|
||
|
void StartTimer();
|
||
|
void StopTimer();
|
||
|
void OnTimer(UINT nIDEvent);
|
||
|
int STATUS;
|
||
|
afx_msg void OnEnChangePath();
|
||
|
afx_msg void OnBnClickedButton();
|
||
|
afx_msg void OnBnClickedShofel2();
|
||
|
};
|