// NeL - MMORPG Framework // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . #include "std_afx.h" #include "object_viewer.h" #include "select_string.h" ///////////////////////////////////////////////////////////////////////////// // CSelectString dialog CSelectString::CSelectString(const std::vector& vectString, const char* title, CWnd* pParent, bool empty) : CDialog(CSelectString::IDD, pParent) { //{{AFX_DATA_INIT(CSelectString) //}}AFX_DATA_INIT Title=title; Strings=vectString; Selection=-1; Empty=empty; } void CSelectString::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CSelectString) DDX_Control(pDX, IDEMPTY, EmptyCtrl); DDX_Control(pDX, IDC_LIST, ListCtrl); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CSelectString, CDialog) //{{AFX_MSG_MAP(CSelectString) ON_LBN_DBLCLK(IDC_LIST, OnDblclkList) ON_LBN_SELCHANGE(IDC_LIST, OnSelchangeList) ON_BN_CLICKED(IDEMPTY, OnEmpty) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CSelectString message handlers void CSelectString::OnOK() { // TODO: Add extra validation here if (Selection!=-1) CDialog::OnOK(); else CDialog::OnCancel(); } void CSelectString::OnDblclkList() { // TODO: Add your control notification handler code here OnSelchangeList(); OnOK(); } BOOL CSelectString::OnInitDialog() { CDialog::OnInitDialog(); // Change title SetWindowText (Title.c_str()); // Empty button ? EmptyCtrl.ShowWindow (Empty?SW_SHOW:SW_HIDE); // Add string for (uint s=0; s