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:
53
Server/AdminTool/AdminToolClient/MiningCampDlg.cpp
Normal file
53
Server/AdminTool/AdminToolClient/MiningCampDlg.cpp
Normal file
@@ -0,0 +1,53 @@
|
||||
// MiningCampDlg.cpp : 구현 파일입니다.
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "AdminToolClient.h"
|
||||
#include "MiningCampDlg.h"
|
||||
#include ".\miningcampdlg.h"
|
||||
|
||||
#include "GlobalFunctions.h"
|
||||
|
||||
#include "PacketManager.h"
|
||||
#include "WindowMgr.h"
|
||||
|
||||
|
||||
IMPLEMENT_DYNAMIC(CMiningCampDlg, CDialog)
|
||||
CMiningCampDlg::CMiningCampDlg(CWnd* pParent /*=NULL*/)
|
||||
: CDialog(CMiningCampDlg::IDD, pParent)
|
||||
{
|
||||
INSERT_WINDOW(IDD_MININGCAMPDLG, static_cast<CWnd*>(this));
|
||||
}
|
||||
|
||||
CMiningCampDlg::~CMiningCampDlg()
|
||||
{
|
||||
ERASE_WINDOW(IDD_MININGCAMPDLG);
|
||||
}
|
||||
|
||||
void CMiningCampDlg::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CDialog::DoDataExchange(pDX);
|
||||
DDX_Control(pDX, IDC_MININGCAMP_LIST, m_ctrlMiningCampList);
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CMiningCampDlg, CDialog)
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
|
||||
// CMiningCampDlg 메시지 처리기입니다.
|
||||
|
||||
BOOL CMiningCampDlg::OnInitDialog()
|
||||
{
|
||||
CDialog::OnInitDialog();
|
||||
|
||||
m_ctrlMiningCampList.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_FLATSB);
|
||||
|
||||
m_ctrlMiningCampList.InsertColumn(0, GetLocalString("ADDED_STRING_167"), LVCFMT_LEFT, 65);
|
||||
m_ctrlMiningCampList.InsertColumn(1, GetLocalString("ADDED_STRING_185"), LVCFMT_LEFT, 65);
|
||||
m_ctrlMiningCampList.InsertColumn(2, GetLocalString("ADDED_STRING_186"), LVCFMT_LEFT, 65);
|
||||
m_ctrlMiningCampList.InsertColumn(3, GetLocalString("ADDED_STRING_187"), LVCFMT_LEFT, 65);
|
||||
SetWindowText(GetLocalString("ADDED_STRING_157"));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
Reference in New Issue
Block a user