mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
104 lines
2.9 KiB
C++
104 lines
2.9 KiB
C++
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
#include "stdafx.h"
|
|
#include "resource.h"
|
|
#include "GetVal.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// GetVal dialog
|
|
|
|
//#define CARACTERES_INVALIDE "/\:*?"<>|"
|
|
char CaracteresInvalides[]={47,92,58,'*','?',34,60,62,124,0};
|
|
|
|
GetVal::GetVal(CWnd* pParent /*=NULL*/)
|
|
: CDialog(GetVal::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(GetVal)
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void GetVal::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(GetVal)
|
|
// NOTE: the ClassWizard will add DDX and DDV calls here
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP(GetVal, CDialog)
|
|
//{{AFX_MSG_MAP(GetVal)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// GetVal message handlers
|
|
|
|
|
|
void GetVal::OnOK()
|
|
{
|
|
// TODO: Add extra validation here
|
|
NameOk=1;
|
|
CEdit *EditStr=(CEdit*)GetDlgItem(IDC_EDIT_ADD_TERRITOIRE);
|
|
CString rString;
|
|
EditStr->GetWindowText( rString );
|
|
int size = rString.GetLength();
|
|
name = new char[size+1];
|
|
strcpy (name, rString);
|
|
/**((short*)name)=size;
|
|
EditStr->GetLine(0,name,size);
|
|
for (int i=0;i<size;i++)
|
|
for (int c=0;c<strlen(CaracteresInvalides);c++)
|
|
{
|
|
if (name[i]==CaracteresInvalides[c])
|
|
{
|
|
char Message[100];
|
|
strcpy(Message,"Le message ne peut pas contenir les caracteres ");
|
|
strcat(Message,CaracteresInvalides);
|
|
MessageBox(Message,"Erreur de saisie");
|
|
return;
|
|
}
|
|
}*/
|
|
CDialog::OnOK();
|
|
}
|
|
|
|
void GetVal::OnCancel()
|
|
{
|
|
// TODO: Add extra cleanup here
|
|
NameOk=0;
|
|
CDialog::OnCancel();
|
|
}
|
|
|
|
LRESULT GetVal::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
// TODO: Add your specialized code here and/or call the base class
|
|
if (message==WM_INITDIALOG)
|
|
{
|
|
CEdit *ed = (CEdit*)GetDlgItem(IDC_EDIT_ADD_TERRITOIRE);
|
|
ed->SetFocus();
|
|
ed->SetLimitText(100);
|
|
}
|
|
|
|
return CDialog::WindowProc(message, wParam, lParam);
|
|
}
|