dwtcstextsetselection(3dwt) [ultrix man page]
DwtCSTextSetSelection(3Dwt) DwtCSTextSetSelection(3Dwt) Name DwtCSTextSetSelection - Highlights the specified text in the compound-string text widget and makes it the current global selection. Syntax void DwtCSTextSetSelection(widget, first, last, time) Widget widget; int first, last; Time time; Arguments widget Specifies the ID of the compound-string text widget. first Specifies the first character position of the selected compound-string text. last Specifies the last character position of the selected compound-string text. time Specifies the time of the event that led to the call to XSetSelectionOwner. You can pass either a timestamp or CurrentTime. Whenever possible, however, use the timestamp of the event leading to the call. Description The DwtCSTextSetSelection function makes the specified text in the compound-string text widget the current global selection and highlights it in the compound-string text widget. Within the text window, first marks the first character position and last marks the last position. The field characters start at 0 and increase sequentially. See Also DwtCSText(3Dwt), DwtCSTextCreate(3Dwt), DwtCSTextReplace(3Dwt), DwtCSTextGetString(3Dwt), DwtCSTextSetString(3Dwt), DwtCSTextGetEd- itable(3Dwt), DwtCSTextSetEditable(3Dwt), DwtCSTextGetMaxLength(3Dwt), DwtCSTextSetMaxLength(3Dwt), DwtCSTextGetSelection(3Dwt) Guide to the XUI Toolkit: C Language Binding Guide to the XUI Toolkit Intrinsics: C Language Binding DwtCSTextSetSelection(3Dwt)
Check Out this Related Man Page
DwtMainSetAreas(3Dwt) DwtMainSetAreas(3Dwt) Name DwtMainSetAreas - Sets up or adds the menu bar, command window, work window, and scroll bar widgets to the main window widget of the appli- cation. Syntax void DwtMainSetAreas(widget, menu_bar, work_window, command_window, horizontal_scroll_bar, vertical_scroll_bar) Widget widget; Widget menu_bar; Widget work_window, command_window; Widget horizontal_scroll_bar, vertical_scroll_bar; Arguments widget Specifies the main window widget ID. menu_bar Specifies the widget ID for the menu bar to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNmenuBar. work_window Specifies the widget ID for the work window to be associated with the main window widget. You can set this ID only after creat- ing an instance of the main window widget. The attribute name associated with this argument is DwtNworkWindow. command_window Specifies the widget ID for the command window to be associated with the main window widget. You can set this ID only after cre- ating an instance of the main window widget. The attribute name associated with this argument is DwtNcommandWindow. horizontal_scroll_bar Specifies the scroll bar widget ID for the horizontal scroll bar to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNhorizon- talScrollBar. vertical_scroll_bar Specifies the scroll bar widget ID for the vertical scroll bar to be associated with the main window widget. You can set this ID only after creating an instance of the main window widget. The attribute name associated with this argument is DwtNverti- calScrollBar. Description The DwtMainSetAreas function sets up or adds the menu bar, work window, command window, and scroll bar widgets to the application's main window widget. You must set these areas up before the main window widget is realized, that is, before calling the X intrinsics function XtRealizeWidget. Each area is optional; therefore, you can pass NULL to one or more of these arguments. The title bar is provided by the window manager. See Also Guide to the XUI Toolkit: C Language Binding Guide to the XUI Toolkit Intrinsics: C Language Binding DwtMainSetAreas(3Dwt)