1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
Copyright (C) 1997-2001 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "ui_local.h"
/*
=============================================================================
ADDRESS BOOK MENU
=============================================================================
*/
typedef struct m_addressBook_s {
menuFrameWork_t menu;
menuField_t fields[MAX_LOCAL_SERVERS];
} m_addressBook_t;
static m_addressBook_t m_addressBook;
static void SaveChanges( void ) {
char buffer[8];
int i;
for( i = 0; i < MAX_LOCAL_SERVERS; i++ ) {
Com_sprintf( buffer, sizeof( buffer ), "adr%d", i );
cvar.Set( buffer, m_addressBook.fields[i].field.text );
}
}
static int AddressBook_MenuCallback( int id, int msg, int param ) {
switch( msg ) {
case QM_DESTROY:
SaveChanges();
break;
case QM_SIZE:
Menu_Size( &m_addressBook.menu );
break;
default:
break;
}
return QMS_NOTHANDLED;
}
static void AddressBook_MenuInit( void ) {
char buffer[8];
int i;
memset( &m_addressBook, 0, sizeof( m_addressBook ) );
m_addressBook.menu.callback = AddressBook_MenuCallback;
for( i = 0; i < MAX_LOCAL_SERVERS; i++ ) {
Com_sprintf( buffer, sizeof( buffer ), "adr%d", i );
m_addressBook.fields[i].generic.type = MTYPE_FIELD;
IF_Init( &m_addressBook.fields[i].field, 30, 60,
cvar.VariableString( buffer ) );
Menu_AddItem( &m_addressBook.menu, &m_addressBook.fields[i] );
}
m_addressBook.fields[0].generic.flags = QMF_HASFOCUS;
m_addressBook.menu.banner = "Address Book";
}
void M_Menu_AddressBook_f( void ) {
AddressBook_MenuInit();
UI_PushMenu( &m_addressBook.menu );
}
|