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>
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
// 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;
|
|
}
|