UF_HELP_clear_context (查看源代码)
定义在: uf_help.h
概述
Clear all application contexts from the stack.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_clear_context
(
void
)
UF_HELP_display_context (查看源代码)
定义在: uf_help.h
概述
Displays context sensitive help on a specific application context.
This routine performs a very similar function to
UF_HELP_display_current_context, except you pass in the
application context instead of using the context on the stack.
is useful for implementation of HELP buttons on modal dialogs.
It performs the same context lookup functions and display functions
as UF_HELP_display_current_context.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_display_context
(
char * app_context
)
| char * (字符型指针) | app_context | Input(输入) | Name of application context to display help on. |
UF_HELP_display_current_context (查看源代码)
定义在: uf_help.h
概述
Displays context sensitive help on the application context currently on
the top of the stack. This function is useful for implementation
of a "Help On Context" button within the application. It gets the
application context from the top of the stack and looks that
context up in the NX translation map file, and uses the data in the
NX translation map file to start up the appropriate help display
mechanism, load the proper document, and position the document to
display the appropriate help text.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_display_current_context
(
void
)
UF_HELP_load_map_file (查看源代码)
定义在: uf_help.h
概述
Load an NX translation map file for context sensitive help.
An NX translation map file is an ascii file that contains the associations
between an application context and the location in the documentation
for the help text.
The "filename" parameter can either be a fully qualified path to the
map file, or just the WorldView file name. In the case of a
WorldView file name, NX looks first in the working directory for the
map file. If the file is not in the working directory, NX then looks in
the directory defined by the environment variable named UGDOCPL_DIR.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_load_map_file
(
char * filename
)
| char * (字符型指针) | filename | Input(输入) | Name of map file to load. |
UF_HELP_pop_context (查看源代码)
定义在: uf_help.h
概述
Pops the application context from the top of the stack.
This routine is called just before the end of a function that has made a
call to UF_HELP_push_context.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_pop_context
(
void
)
UF_HELP_push_context (查看源代码)
定义在: uf_help.h
概述
Push an application context onto the stack.
An application context is the key string used to look up help
documentation using the NX translation map file. Application
contexts are normally defined by the document writer after the
application developer has defined the areas of the code that requires
context sensitive help.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_push_context
(
char * app_context
)
| char * (字符型指针) | app_context | Input(输入) | Name of application context to push onto stack. |
UF_HELP_push_primary_context (查看源代码)
定义在: uf_help.h
概述
Clears the stack then pushes an application context. Normally used at
the start of an application when a DA1 dialog is displayed.
Using this routine insures that the context sensitive help stack and the
application are in sync and is especially useful in cases where signal
handlers or application errors have disrupted the normal program
flow. UF_HELP_push_primary_context clears the stack before pushing
the new application context to insure that the help system and the
application are in sync.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_push_primary_context
(
char * app_context
)
| char * (字符型指针) | app_context | Input(输入) | Name of primary application context to push onto stack. |
UF_HELP_reload_map_file (查看源代码)
定义在: uf_help.h
概述
Reloads an NX translation map file for context sensitive help. Performs
an unload/load. This is mainly intended as a utility routine to assist
with the debugging process.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_reload_map_file
(
char * filename
)
| char * (字符型指针) | filename | Input(输入) | Name of map file to reload. |
UF_HELP_set_context_debug (查看源代码)
定义在: uf_help.h
概述
Turns printing of status messages for context sensitive help to standard
out either on or off. These message provide more detailed information
about the process of displaying context sensitive help and can be useful
in debugging.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_set_context_debug
(
int state
)
| int (整数型) | state | Input(输入) | Sets the state for printing messages for context sensitive help on or off. 0 = Off 1 = On |
UF_HELP_unload_map_file (查看源代码)
定义在: uf_help.h
概述
Unloads an NX translation map file for context sensitive help.
NOTE: Once an NX translation map file has been loaded, additional
calls to load a map file are ignored until the map file has been
unloaded.
环境
Internal
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)
int UF_HELP_unload_map_file
(
char * filename
)
| char * (字符型指针) | filename | Input(输入) | Name of map file to unload. |