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>
This commit is contained in:
61
Server/AdminTool/AdminToolClient/TAdminEditDlg.h
Normal file
61
Server/AdminTool/AdminToolClient/TAdminEditDlg.h
Normal file
@@ -0,0 +1,61 @@
|
||||
#pragma once
|
||||
#include "afxwin.h"
|
||||
|
||||
|
||||
/*!
|
||||
\class CTAdminEditDlg
|
||||
<09><EFBFBD><EEBFB5> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̾<EFBFBD><CCBE>α<EFBFBD>
|
||||
*/
|
||||
class CTAdminEditDlg : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(CTAdminEditDlg)
|
||||
|
||||
public:
|
||||
CTAdminEditDlg(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
virtual ~CTAdminEditDlg();
|
||||
|
||||
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
enum { IDD = IDD_TADMINEDITDLG };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnDestroy();
|
||||
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
||||
|
||||
private:
|
||||
// Insert by Rigno ------------------------------------------
|
||||
int GetAdminListIndex();
|
||||
void GetSelectedID(TCHAR* szID, int Length);
|
||||
void GetSelectedLevel(TCHAR* szLv, int Length);
|
||||
void GetSelectedName(TCHAR* szName, int Length);
|
||||
void GetSelectedIP(TCHAR* szIP, int Length);
|
||||
|
||||
void FillSelectAdminInfo();
|
||||
CDialog* GetAdminMgrDlg();
|
||||
CListCtrl* GetAdminMgrList();
|
||||
//-----------------------------------------------------------
|
||||
|
||||
CComboBox m_ctrlTAdminLVCb;
|
||||
|
||||
BOOL m_bTAdminLVEditChk;
|
||||
BOOL m_bTAdminIPEditChk;
|
||||
BOOL m_bTAdminPassEditChk;
|
||||
|
||||
CEdit m_ctrlTAdminIPEdit;
|
||||
CEdit m_ctrlTAdminPassEditOld;
|
||||
CEdit m_ctrlTAdminPassEditNew;
|
||||
|
||||
CString m_strTAdminLVEdit;
|
||||
CString m_strTAdminIPEdit;
|
||||
CString m_strTAdminPassEditOld;
|
||||
CString m_strTAdminPassEditNew;
|
||||
|
||||
afx_msg void OnBnClickedTadminlveditchk();
|
||||
afx_msg void OnBnClickedTadminipeditchk();
|
||||
afx_msg void OnBnClickedTadminpasseditchk();
|
||||
afx_msg void OnBnClickedTAdminEdit();
|
||||
};
|
||||
Reference in New Issue
Block a user