1
0
mirror of https://github.com/azure-rtos/guix.git synced 2025-01-28 07:03:11 +08:00
guix/guix_studio/MacroRecordDlg.h

34 lines
711 B
C
Raw Permalink Normal View History

#pragma once
#include "afxwin.h"
#include <string>
class MacroRecordDlg : public express_dialog
{
public:
MacroRecordDlg(CWnd *pParent = NULL);
~MacroRecordDlg(void);
public:
CString &Getmacro_name(){ return mmacro_name;};
CString &Getmacro_path(){ return mmacro_path;};
// Dialog Data
enum { IDD = IDD_MACRO_RECORD_DLG};
DECLARE_MESSAGE_MAP()
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnOK();
private:
CString mmacro_name;
CString mmacro_path;
public:
afx_msg void OnBnClickedBrowsePath();
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
afx_msg void OnCancel();
virtual BOOL OnInitDialog();
};