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
|
// SelectionEditorDlg.h : header file
//
#pragma once
#include "afxwin.h"
// CSelectionEditorDlg dialog
class CSelectionEditorDlg : public CDialog
{
// Construction
public:
CSelectionEditorDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_SELECTIONEDITOR_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 OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CListBox keys;
CButton editButton;
CButton newButton;
afx_msg void OnDelButton();
afx_msg void OnNewButton();
afx_msg void OnEditButton();
CEdit value;
afx_msg void OnLbnSelchangeList2();
};
|