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:
2025-11-29 20:17:20 +09:00
parent 5d3cd64a25
commit dd97ddec92
11602 changed files with 1446576 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
#pragma once
#include <GridCtrl_src/GridCtrl.h>
#include "afxcmn.h"
#include "afxwin.h"
// CCharItemStorePage <20><>ȭ <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
#define CHAR_STORE_ITEM WM_USER + 2
namespace Item{
class CItem;
};
class CModifyCharacter;
/*!
\class CCharItemStorePage
ij<><C4B3><EFBFBD><EFBFBD> â<><C3A2> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
*/
class CCharItemStorePage : public CPropertyPage
{
DECLARE_DYNAMIC(CCharItemStorePage)
public:
CCharItemStorePage();
virtual ~CCharItemStorePage();
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
enum { IDD = IDD_CHARITEMSTOREPAGE };
enum SORT_TYPE{ SERIAL, NAME, TYPE, COORDINATE, QUANTITY };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
DECLARE_MESSAGE_MAP()
virtual BOOL OnInitDialog();
virtual void PostNcDestroy();
private:
bool m_bSortListAsc;
int m_iSortListItem;
CModifyCharacter* m_lpStorePageInfo;
unsigned int m_dwDocKey;
CGridCtrl m_ctrlItemStoreGrid;
CTabCtrl m_ctrlItemStoreTab;
CListCtrl m_ctrlItemStoreItemList;
CString m_strStorePass;
CComboBox m_ctrlTabNumCb;
unsigned long m_dwStoreGold;
BOOL IsEnableItemDrop(CPoint selGridCoordinates, CPoint selItemSize);
void SortListWndItem(CListCtrl *pListCtrl, const int iCol);
void StoreGridSet(Item::CItem* StoreItem);
afx_msg void OnTcnSelchangeItemstoretab(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnStoreGridClick(NMHDR *pNotifyStruct, LRESULT* pResult);
afx_msg void OnStoreitemUpdate();
afx_msg void OnStoreitemRemove();
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnNMDblclkItemstorelist(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnBnClickedStoreResetBtn();
afx_msg void OnBnClickedStorePassEdit();
afx_msg void OnStoreCopy();
afx_msg void OnBnClickedStoregoldUpdate();
afx_msg void OnLvnColumnclickItemstorelist(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnBnClickedStorepageStoreclipBtn();
public:
bool SetStorePageData(unsigned int dwDocKey, CModifyCharacter* lpModifyCharacter);
void SetStorePage(CModifyCharacter* lpModifyCharacter);
afx_msg void OnBnClickedTabeditBtn();
};