#include "ui_local.h"
Include dependency graph for ui_options.c:

Go to the source code of this file.
Data Structures | |
| struct | optionsmenu_t |
Defines | |
| #define | ART_BACK0 "menu/art/back_0" |
| #define | ART_BACK1 "menu/art/back_1" |
| #define | ART_FRAMEL "menu/art/frame2_l" |
| #define | ART_FRAMER "menu/art/frame1_r" |
| #define | ID_BACK 14 |
| #define | ID_DISPLAY 11 |
| #define | ID_GRAPHICS 10 |
| #define | ID_NETWORK 13 |
| #define | ID_SOUND 12 |
| #define | VERTICAL_SPACING 34 |
Functions | |
| void | Options_Event (void *ptr, int event) |
| void | Options_MenuInit (void) |
| void | SystemConfig_Cache (void) |
| void | UI_SystemConfigMenu (void) |
Variables | |
| optionsmenu_t | s_options |
|
|
Definition at line 35 of file ui_options.c. |
|
|
Definition at line 36 of file ui_options.c. |
|
|
Definition at line 33 of file ui_options.c. |
|
|
Definition at line 34 of file ui_options.c. |
|
|
Definition at line 42 of file ui_options.c. |
|
|
Definition at line 39 of file ui_options.c. |
|
|
Definition at line 38 of file ui_options.c. |
|
|
Definition at line 41 of file ui_options.c. |
|
|
Definition at line 40 of file ui_options.c. |
|
|
Definition at line 44 of file ui_options.c. |
|
||||||||||||
|
Definition at line 68 of file ui_options.c. References ID_BACK, ID_DISPLAY, ID_GRAPHICS, ID_NETWORK, ID_SOUND, UI_DisplayOptionsMenu(), UI_GraphicsOptionsMenu(), UI_NetworkOptionsMenu(), UI_PopMenu(), and UI_SoundOptionsMenu(). 00068 {
00069 if( event != QM_ACTIVATED ) {
00070 return;
00071 }
00072
00073 switch( ((menucommon_s*)ptr)->id ) {
00074 case ID_GRAPHICS:
00075 UI_GraphicsOptionsMenu();
00076 break;
00077
00078 case ID_DISPLAY:
00079 UI_DisplayOptionsMenu();
00080 break;
00081
00082 case ID_SOUND:
00083 UI_SoundOptionsMenu();
00084 break;
00085
00086 case ID_NETWORK:
00087 UI_NetworkOptionsMenu();
00088 break;
00089
00090 case ID_BACK:
00091 UI_PopMenu();
00092 break;
00093 }
00094 }
|
Here is the call graph for this function:

|
Here is the call graph for this function:

|
|
Definition at line 102 of file ui_options.c. References ART_BACK0, ART_BACK1, ART_FRAMEL, ART_FRAMER, and trap_R_RegisterShaderNoMip(). Referenced by Options_MenuInit(). 00102 {
00103 trap_R_RegisterShaderNoMip( ART_FRAMEL );
00104 trap_R_RegisterShaderNoMip( ART_FRAMER );
00105 trap_R_RegisterShaderNoMip( ART_BACK0 );
00106 trap_R_RegisterShaderNoMip( ART_BACK1 );
00107 }
|
Here is the call graph for this function:

|
|
Definition at line 226 of file ui_options.c. References optionsmenu_t::menu, Options_MenuInit(), s_options, and UI_PushMenu(). 00226 {
00227 Options_MenuInit();
00228 UI_PushMenu ( &s_options.menu );
00229 }
|
Here is the call graph for this function:

|
|
Definition at line 60 of file ui_options.c. Referenced by Options_MenuInit(), and UI_SystemConfigMenu(). |
1.3.9.1