Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dxmsvnsetentryposition(3x) [osf1 man page]

DXmSvnSetEntryPosition(3X)												DXmSvnSetEntryPosition(3X)

NAME
DXmSvnSetEntryPosition - Sets the position of an entry in user-defined tree mode. SYNOPSIS
void DXmSvnSetEntryPosition( kidget widget, int entry, Boolean mode, int x, int y ); PARAMETERS
The identifier (widget ID) of the SVN widget. An integer that represents the number of the entry for which information will be set or changed. A Boolean value that, when True, specifies that position information returned should be interpreted relative to the upper-left corner of the SVN window. When False, the position information returned should be interpreted relative internally to the SVN widget. An integer that represents the x position of the entry. If the value for mode is True, the value for x represents the distance from the cor- ner of the SVN window in pixels. If the value for mode is False, the value for x represents the position in the entire tree, even though that position extends beyond the limit of what can currently be displayed in the SVN window. An integer that represents the y position of the entry. If the value for mode is True, the value for y represents the distance from the corner of the SVN window in pixels. If the value for mode is False, the value for y represents the position in the entire tree, even though that position extends beyond the limit of what can currently be displayed in the SVN window. DESCRIPTION
The DXmSvnSetEntryPosition routine allows an application to implement the layout of the tree when the tree style is DXmSvnKuserDefinedTree. The application can explicitly position an entry, whether that entry is currently visible in the display or not. This call is valid only if the display mode is set to DXmSvnKdisplayTree and the tree style to DXmSvnKuserDefinedTree. Make this call in your application between calls to DXmSvnDisableDisplay and DXmSvnEnableDisplay. DXmSvnSetEntryPosition(3X)

Check Out this Related Man Page

DXmSvnSetComponentHidden(3X)											      DXmSvnSetComponentHidden(3X)

NAME
DXmSvnSetComponentHidden - Controls which modes the SVN widget uses to display a particular component. SYNOPSIS
void DXmSvnSetComponentHidden( Widget widget, int entry, int comp_number, int mode ); PARAMETERS
The identifier (widget ID) of the SVN widget. An integer that represents the number of the entry for which information is to be set or changed. An integer that represents the number of the component for which information is to be set or changed. This cannot be a component of the type Widget. The display mode in which this component should not be displayed, indicated by one of the following values: ---------------------------------------------------------- Value Description ---------------------------------------------------------- DXmSvnKdisplayNone Display in all modes (hidden in none). DXmSvnKdisplayOutline Do not display in outline mode. DXmSvnKdisplayTree Do not display in tree mode. DXmSvnKdisplayAllModes Do not display in outline, tree, or column mode. DXmSvnKdisplayColumns Do not display in column mode. ---------------------------------------------------------- DESCRIPTION
The DXmSvnSetComponentHidden routine enables an application to prevent a component (excluding subwidgets) from being displayed in a partic- ular mode, thus making that component "hidden". By default, components are visible in all modes. However, you can use this routine to prevent a component from displaying in one mode (outline, tree, or column) or all modes. Using this routine can reduce the amount of information displayed when the application is in tree mode, making the application less complex and easier to use. This routine is also useful if you want your application to display different icons in each of the two modes. Make this call in your application between calls to DXmSvnDisableDisplay and DXmSvnEnableDisplay. DXmSvnSetComponentHidden(3X)
Man Page