Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dxmsvnsetentry(3x) [osf1 man page]

DXmSvnSetEntry(3X)														DXmSvnSetEntry(3X)

NAME
DXmSvnSetEntry - Provides the SVN widget with new entry level information. SYNOPSIS
void DXmSvnSetEntry( Widget widget, int entry, int width, int height, int number, Boolean sens, XtPointer tag, Boolean index ); 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. An integer that represents the width of the entry. This value is used to allocate sufficient display space for the entry. If 0 is specified, the SVN widget will calculate the width based on the components and font. An integer that represents the height of the entry. This value is used to allocate sufficient display space for the entry. If 0 is specified, the SVN widget will calculate the height based on the components and font. An integer that represents the number of components in this entry. A Boolean value that, when True, makes this entry sensitive (the user can select it). When False, the display for that entry will be dimmed to indicate that the entry is not sensitive (the user cannot select it). The value that the application will associate with the entry. This value is returned in all callbacks that set the entry_number field in the DXmSvnCallback structure. A Boolean value that, when True, indicates that all of the entries being added should be displayed in the scroll index window when the user drags the slider. Note that if you set this argument to True, the DXmNliveScrolling resource must be set to False. DESCRIPTION
The DXmSvnSetEntry routine enables an application to respond to a DXmSvnCRGetEntry callback requesting the information for an entry. You can specify a subset of the information allowed on this call by using the following routines: DXmSvnSetEntryNumComponents DXmSvnSetEntryTag DXmSvnSetEntryIndexWindow DXmSvnSetEntrySensitivity DXmSvnSetEntry Make this call in your application between calls to DXmSvnDisableDisplay and DXmSvnEnableDisplay. After making a call to this routine, your application should call the DXmSvnSetComponentText, DXmSvnSetComponentPixmap, and DXmSvnSetComponentWidget routines to individually supply the component information. Note that if your application calls the DXmSvnSetEntry routine to modify an existing entry and the number of entries changes, all previous component information is discarded. DXmSvnSetEntry(3X)

Check Out this Related Man Page

ttk::combobox(n)						 Tk Themed Widget						  ttk::combobox(n)

__________________________________________________________________________________________________________________________________________________

NAME
ttk::combobox - text field with popdown selection list SYNOPSIS
ttk::combobox pathName ?options? _________________________________________________________________ DESCRIPTION
A ttk::combobox combines a text field with a pop-down list of values; the user may select the value of the text field from among the values in the list. STANDARD OPTIONS
-class -cursor -takefocus -style See the ttk_widget manual entry for details on the standard options. WIDGET-SPECIFIC OPTIONS [-exportselection exportSelection] Boolean value. If set, the widget selection is linked to the X selection. [-justify justify] Specifies how the text is aligned within the widget. Must be one of left, center, or right. [-height height] Specifies the height of the pop-down listbox, in rows. [-postcommand postCommand] A Tcl script to evaluate immediately before displaying the listbox. The -postcommand script may specify the -values to display. [-state state] One of normal, readonly, or disabled. In the readonly state, the value may not be edited directly, and the user can only select one of the -values from the dropdown list. In the normal state, the text field is directly editable. In the disabled state, no interaction is possible. [-textvariable textVariable] Specifies the name of a variable whose value is linked to the widget value. Whenever the variable changes value the widget value is updated, and vice versa. [-values values] Specifies the list of values to display in the drop-down listbox. [-width width] Specifies an integer value indicating the desired width of the entry window, in average-size characters of the widget's font. WIDGET COMMAND
The following subcommands are possible for combobox widgets: pathName current ?newIndex? If newIndex is supplied, sets the combobox value to the element at position newIndex in the list of -values. Otherwise, returns the index of the current value in the list of -values or -1 if the current value does not appear in the list. pathName get Returns the current value of the combobox. pathName set value Sets the value of the combobox to value. The combobox widget also supports the following ttk::entry widget subcommands (see ttk::entry(n) for details): bbox delete icursor index insert selection xview The combobox widget also sup- ports the following generic ttk::widget widget subcommands (see ttk::widget(n) for details): cget config- ure identify instate state VIRTUAL EVENTS
The combobox widget generates a <<ComboboxSelected>> virtual event when the user selects an element from the list of values. If the selec- tion action unposts the listbox, this event is delivered after the listbox is unposted. SEE ALSO
ttk::widget(n), ttk::entry(n) KEYWORDS
choice, entry, list box, text box, widget Tk 8.5 ttk::combobox(n)
Man Page