www.pudn.com > MINSortDict.zip > MINSortDictDlg.h


//************************************************************************* 
// You are free to use/modify this code but leave this header intact. 
// This class is public domain so you are free to use it any of 
// your applications (Freeware,Shareware,Commercial). All I ask is 
// that you let me know so that if you have a real winner I can 
// brag to my buddies that some of my code is in your app. I also 
// wouldn't mind if you sent me a copy of your application since I 
// like to play with new stuff. 
// Author	: DingZhiGang 
// Email	: minidxer@gmail.com 
// HomePage : http://minidx.com 
// Help     : http://minidx.com/forum/ 
//************************************************************************* 
 
#pragma once 
#include "afxwin.h" 
 
 
// CMINSortDictDlg dialog 
class CMINSortDictDlg : public CDialog 
{ 
// Construction 
public: 
	CMINSortDictDlg(CWnd* pParent = NULL);	// standard constructor 
 
// Dialog Data 
	enum { IDD = IDD_MINSORTDICT_DIALOG }; 
 
	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 OnPaint(); 
	afx_msg HCURSOR OnQueryDragIcon(); 
	DECLARE_MESSAGE_MAP() 
public: 
	// input dict file 
	CEdit m_edit_input; 
	// dict output file 
	CEdit m_edit_output; 
	CButton m_btn_input_br; 
	CButton m_btn_output_br; 
	CButton m_btn_run_input; 
	CButton m_btn_init; 
 
	// input dict file 
	CString m_str_input; 
	// output dict file 
	CString m_str_output; 
 
	afx_msg void OnBnClickedButtonBrowseInput(); 
	afx_msg void OnBnClickedButtonBrowseOutput(); 
	afx_msg void OnBnClickedButtonInput(); 
	afx_msg void OnBnClickedButtonOutput(); 
	afx_msg void OnBnClickedButtonInit(); 
};