DragonNest/Client/EtUITool/StringSelect.h
2024-12-20 16:56:44 +08:00

35 lines
1.5 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "afxwin.h"
#include "afxcmn.h"
class CStringSelect : public CDialog
{
DECLARE_DYNAMIC(CStringSelect)
public:
CStringSelect(CWnd* pParent = NULL); // standard constructor
virtual ~CStringSelect();
protected:
int m_nSelectItem;
int m_nStringIndex;
CListCtrl m_ctrlListString;
CEdit m_ctrlEditFind;
public:
int GetStringIndex() { return m_nStringIndex; }
// Dialog Data
enum { IDD = IDD_STRING_SELECT };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
void SetScroll();
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedButtonFind();
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
};