Files
Client/Server/AdminTool/AdminToolClient/CharRestoreDlg.h
LGram16 dd97ddec92 Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code:
- Client: Game client source (moved to Client/Client/)
- Server: Game server source
- GameTools: Development tools
- CryptoSource: Encryption utilities
- database: Database scripts
- Script: Game scripts
- rylCoder_16.02.2008_src: Legacy coder tools
- GMFont, Game: Additional resources

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 20:17:20 +09:00

44 lines
958 B
C++

#pragma once
#include "afxcmn.h"
#include "afxwin.h"
/*!
\class CCharRestoreDlg
캐릭터 복구 다이얼로그
*/
class CCharRestoreDlg : public CDialog
{
DECLARE_DYNAMIC(CCharRestoreDlg)
public:
CCharRestoreDlg(CWnd* pParent = NULL); // 표준 생성자입니다.
virtual ~CCharRestoreDlg();
// 대화 상자 데이터입니다.
enum { IDD = IDD_CHARRESTOREDLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
DECLARE_MESSAGE_MAP()
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual BOOL OnInitDialog();
virtual void OnCancel();
virtual void OnOK();
private:
CComboBox m_ctrlSearchConditionCb;
CComboBox m_ctrlSearchServerCb;
CListCtrl m_ctrlDelHistoryList;
void OnSearchSend();
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnBnClickedCharRestoreSearch();
afx_msg void OnRestoreTime();
afx_msg void OnRestoreChar();
};