Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xmscrollbarsetvalues(3) [hpux man page]

XmScrollBarSetValues(library call)										XmScrollBarSetValues(library call)

NAME
XmScrollBarSetValues -- A ScrollBar function that changes ScrollBar's increment values and the slider's size and position SYNOPSIS
#include <Xm/ScrollBar.h> void XmScrollBarSetValues (widget, value, slider_size, increment, page_increment, notify) Widget widget; int value; int slider_size; int increment; int page_increment; Boolean notify; (void) DESCRIPTION
XmSetScrollBarValues changes the ScrollBar's increment values and the slider's size and position. The scroll region is overlaid with a slider bar that is adjusted in size and position using the main ScrollBar or set slider function attributes. widget Specifies the ScrollBar widget ID. value Specifies the ScrollBar's slider position. Refer to the XmNvalue resource described on XmScrollBar(3). slider_size Specifies the size of the slider. Refer to the XmNsliderSize resource described on XmScrollBar(3). This argument sets that resource. Specify a value of 0 (zero) if you do not want to change the value. increment Specifies the amount of button increment and decrement. Refer to the XmNincrement resource described on XmScrollBar(3). This argument sets that resource. Specify a value of 0 (zero) if you do not want to change the value. page_increment Specifies the amount of page increment and decrement. Refer to the XmNpageIncrement resource described on XmScrollBar(3). This argument sets that resource. Specify a value of 0 (zero) if you do not want to change the value. notify Specifies a Boolean value that, when True, indicates a change in the ScrollBar value and also specifies that the ScrollBar widget automatically activates the XmNvalueChangedCallback with the recent change. If it is set to False, it specifies any change that has occurred in the ScrollBar's value, but does not activate XmNvalueChangedCallback. For a complete definition of ScrollBar and its associated resources, see XmScrollBar(3). RELATED
XmScrollBar(3). XmScrollBarSetValues(library call)

Check Out this Related Man Page

XmScrolledWindowSetAreas(library call)									    XmScrolledWindowSetAreas(library call)

NAME
XmScrolledWindowSetAreas -- A ScrolledWindow function that adds or changes a window work region and a horizontal or vertical ScrollBar wid- get to the ScrolledWindow widget SYNOPSIS
#include <Xm/ScrolledW.h> void XmScrolledWindowSetAreas( Widget widget, Widget horizontal_scrollbar, Widget vertical_scrollbar, Widget work_region); DESCRIPTION
XmScrolledWindowSetAreas adds or changes a window work region and a horizontal or vertical ScrollBar widget to the ScrolledWindow widget for the application. Each widget is optional and may be passed as NULL. This function is obsolete and exists for compatibility with other releases. Use the XmNscrolledWindowChildType resource of XmScrolledWindow instead. widget Specifies the ScrolledWindow widget ID. horizontal_scrollbar Specifies the ScrollBar widget ID for the horizontal ScrollBar to be associated with the ScrolledWindow widget. Set this ID only after creating an instance of the ScrolledWindow widget. The resource name associated with this argument is XmNhorizontalScroll- Bar. vertical_scrollbar Specifies the ScrollBar widget ID for the vertical ScrollBar to be associated with the ScrolledWindow widget. Set this ID only after creating an instance of the ScrolledWindow widget. The resource name associated with this argument is XmNverticalScrollBar. work_region Specifies the widget ID for the work window to be associated with the ScrolledWindow widget. Set this ID only after creating an instance of the ScrolledWindow widget. The attribute name associated with this argument is XmNworkWindow. For a complete definition of ScrolledWindow and its associated resources, see XmScrolledWindow(3). RELATED
XmScrolledWindow(3). XmScrolledWindowSetAreas(library call)
Man Page