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>
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
// ManageSetupDlg.h : 헤더 파일
|
|
//
|
|
|
|
#pragma once
|
|
#include "afxcmn.h"
|
|
#include "afxwin.h"
|
|
|
|
|
|
// CManageSetupDlg 대화 상자
|
|
class CManageSetupDlg : public CDialog
|
|
{
|
|
// 생성
|
|
public:
|
|
|
|
CManageSetupDlg(CWnd* pParent = NULL); // 표준 생성자
|
|
|
|
void GetMachineList(CComboBox& cbCombo);
|
|
void GetPathList(CComboBox& cbCombo);
|
|
void GetOptionList(CComboBox& cbCombo);
|
|
|
|
// 대화 상자 데이터
|
|
enum { IDD = IDD_MANAGECLIENTSETUPDLG };
|
|
|
|
protected:
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원
|
|
|
|
|
|
// 구현
|
|
protected:
|
|
|
|
HICON m_hIcon;
|
|
|
|
// 메시지 맵 함수를 생성했습니다.
|
|
virtual BOOL OnInitDialog();
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
virtual void OnOK();
|
|
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
afx_msg void OnBnClickedMachineaddBtn(); // 서버 정보 추가
|
|
afx_msg void OnBnClickedMachinemodifyBtn(); // 서버 이름 수정
|
|
afx_msg void OnBnClickedMachinedelBtn(); // 서버 정보 삭제
|
|
|
|
afx_msg void OnBnClickedAddexepathBtn(); // 실행 경로 추가
|
|
afx_msg void OnBnClickedModifyexepathBtn(); // 실행 경로 수정
|
|
afx_msg void OnBnClickedDelexepathBtn(); // 실행 경로 삭제
|
|
|
|
afx_msg void OnBnClickedAddoptionBtn(); // 옵션 추가
|
|
afx_msg void OnBnClickedModifyoptionBtn(); // 옵션 수정
|
|
afx_msg void OnBnClickedDeloptionBtn(); // 옵션 삭제
|
|
|
|
afx_msg void OnLvnItemchangedMachineList(NMHDR *pNMHDR, LRESULT *pResult);
|
|
afx_msg void OnLvnItemchangedExecutepathList(NMHDR *pNMHDR, LRESULT *pResult);
|
|
afx_msg void OnLvnItemchangedOptionList(NMHDR *pNMHDR, LRESULT *pResult);
|
|
|
|
afx_msg void OnFunctionsRuninfoedit();
|
|
afx_msg void OnFunctionsUsermanagement();
|
|
|
|
afx_msg void OnFunctionsManagesetupclient();
|
|
afx_msg void OnFunctionsExit();
|
|
|
|
private:
|
|
|
|
CString m_strNewServerIP;
|
|
CString m_strNewServerName;
|
|
CString m_strSelServerName;
|
|
|
|
CString m_strNewExePath;
|
|
CString m_strSelExePath;
|
|
|
|
CString m_strNewOption;
|
|
CString m_strSelOption;
|
|
|
|
CListCtrl m_ctrlMachine; // 서버 정보 리스트
|
|
CListCtrl m_ctrlExecutePath; // 실행 경로 리스트
|
|
CListCtrl m_ctrlOption; // 옵션 리스트
|
|
|
|
// 리스트 컨트롤 갱신 함수
|
|
void ServerListSet(); // 서버 정보 리스트 갱신
|
|
void ExecutePathListSet(); // 실행 경로 리스트 갱신
|
|
void OptionListSet(); // 옵션 리스트 갱신
|
|
}; |