doom3-gpl
Doom 3 GPL source release
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MaskEdit.cpp
Go to the documentation of this file.
1 /*
2 ===========================================================================
3 
4 Doom 3 GPL Source Code
5 Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
6 
7 This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
8 
9 Doom 3 Source Code is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13 
14 Doom 3 Source Code is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
21 
22 In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
23 
24 If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
25 
26 ===========================================================================
27 */
28 
29 #include "../../idlib/precompiled.h"
30 #pragma hdrstop
31 
32 #define MASKEDIT_MAXINVALID 1024
33 typedef struct
34 {
35  WNDPROC mProc;
36  char mInvalid[MASKEDIT_MAXINVALID];
37 } rvGEMaskEdit;
38 
39 /*
40 ================
41 MaskEdit_WndProc
42 
43 Prevents the invalid characters from being entered
44 ================
45 */
46 LRESULT CALLBACK MaskEdit_WndProc ( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
47 {
48  rvGEMaskEdit* edit = (rvGEMaskEdit*)GetWindowLong ( hWnd, GWL_USERDATA );
49  WNDPROC wndproc = edit->mProc;
50 
51  switch ( msg )
52  {
53  case WM_CHAR:
54  if ( strchr ( edit->mInvalid, wParam ) )
55  {
56  return 0;
57  }
58 
59  break;
60 
61  case WM_DESTROY:
62  delete edit;
63  SetWindowLong ( hWnd, GWL_WNDPROC, (LONG)wndproc );
64  break;
65  }
66 
67  return CallWindowProc ( wndproc, hWnd, msg, wParam, lParam );
68 }
69 
70 /*
71 ================
72 MaskEdit_Attach
73 
74 Attaches the mask edit control to a normal edit control
75 ================
76 */
77 void MaskEdit_Attach ( HWND hWnd, const char* invalid )
78 {
79  rvGEMaskEdit* edit = new rvGEMaskEdit;
80  edit->mProc = (WNDPROC)GetWindowLong ( hWnd, GWL_WNDPROC );
81  strcpy ( edit->mInvalid, invalid );
82  SetWindowLong ( hWnd, GWL_USERDATA, (LONG)edit );
83  SetWindowLong ( hWnd, GWL_WNDPROC, (LONG)MaskEdit_WndProc );
84 }
85 
86 /*
87 ================
88 NumberEdit_Attach
89 
90 Allows editing of floating point numbers
91 ================
92 */
93 void NumberEdit_Attach ( HWND hWnd )
94 {
95  static const char invalid[] = "`~!@#$%^&*()_+|=\\qwertyuiop[]asdfghjkl;'zxcvbnm,/QWERTYUIOP{}ASDFGHJKL:ZXCVBNM<>";
96  MaskEdit_Attach ( hWnd, invalid );
97 }
CONST PIXELFORMATDESCRIPTOR UINT
Definition: win_qgl.cpp:47
LRESULT CALLBACK MaskEdit_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
Definition: MaskEdit.cpp:46
#define MASKEDIT_MAXINVALID
Definition: MaskEdit.cpp:32
WNDPROC mProc
Definition: MaskEdit.cpp:35
long LONG
void NumberEdit_Attach(HWND hWnd)
Definition: MaskEdit.cpp:93
void MaskEdit_Attach(HWND hWnd, const char *invalid)
Definition: MaskEdit.cpp:77
char mInvalid[MASKEDIT_MAXINVALID]
Definition: MaskEdit.cpp:36