forked from jpt13653903/FreePCB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DlgIvex.h
43 lines (35 loc) · 946 Bytes
/
DlgIvex.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// ivexDlg.h : header file
//
#pragma once
#include "afxwin.h"
// CivexDlg dialog
class CivexDlg : public CDialog
{
// Construction
public:
CivexDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_IVEX_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:
CString in_pathname;
CString out_pathname;
afx_msg void OnBnClickedButtonInfile();
afx_msg void OnBnClickedButtonOutfile();
afx_msg void OnEnChangeEditInfile();
afx_msg void OnEnChangeEditOutfile();
CEdit m_edit_infile;
CEdit m_edit_outfile;
CEdit m_edit_messages;
afx_msg void OnBnClickedConvert();
};