acl/app/jencode/JencodeDlg.h

56 lines
1.3 KiB
C
Raw Normal View History

2014-11-19 00:25:21 +08:00
// JencodeDlg.h : ͷ<>ļ<EFBFBD>
//
#pragma once
#include <time.h>
// CJencodeDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
class CJencodeDlg : public CDialog
{
// <20><><EFBFBD><EFBFBD>
public:
CJencodeDlg(CWnd* pParent = NULL); // <20><>׼<EFBFBD><D7BC><EFBFBD><EFBFBD><ECBAAF>
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
enum { IDD = IDD_JENCODE_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
// ʵ<><CAB5>
protected:
HICON m_hIcon;
CStatusBarCtrl m_wndStatus;
// <20><><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD>Ϣӳ<CFA2><EFBFBD><E4BAAF>
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButton2();
afx_msg void OnBnClickedButton3();
afx_msg LRESULT OnTransOver(WPARAM uID, LPARAM lEvent);
afx_msg LRESULT OnTransOver2(WPARAM uID, LPARAM lEvent);
private:
time_t m_nBegin;
BOOL CheckPath(void);
void ButtonsEnable(void);
void ButtonsDisable(void);
CString m_sPath, m_dPath;
public:
afx_msg void OnBnClickedAclTrans();
afx_msg void OnBnClickedAclRestore();
afx_msg void OnBnClickedIdxSelect();
afx_msg void OnBnClickedTransIdx();
private:
CString m_sIdxPath, m_fsPath;
public:
afx_msg void OnBnClickedDelBom();
afx_msg void OnBnClickedButtonGb2utf();
afx_msg void OnBnClickedButtonUtf2gb();
afx_msg void OnBnClickedButtonGb2uni();
2014-11-19 00:25:21 +08:00
};