NX Open C++ Reference Guide
Public Types | Public Member Functions | List of all members
NXOpen::UIStyler::SingleSelectList Class Reference

Represents a SingleSelectList for UI Styler
Created in NX5.0.0. More...

Inheritance diagram for NXOpen::UIStyler::SingleSelectList:
NXOpen::UIStyler::StylerItem NXOpen::TransientObject

Public Types

typedef NXOpen::Callback1
< NXOpen::UIStyler::DialogState,
NXOpen::UIStyler::StylerEvent * > 
Activate
 Called when a dialog user selects an entry with a single mouse click or presses the spacebar on an already selected item. More...
 
typedef NXOpen::Callback1
< NXOpen::UIStyler::DialogState,
NXOpen::UIStyler::StylerEvent * > 
DoubleClick
 Called when a dialog user double-clicks on an option or presses Return when an item is already selected. More...
 
- Public Types inherited from NXOpen::UIStyler::StylerItem
enum  ItemType {
  ItemTypeInvalidType = -1, ItemTypeActionButton, ItemTypeDialog, ItemTypeRadioBox,
  ItemTypeReal, ItemTypeScaleReal, ItemTypeBitmap, ItemTypeRowColumn,
  ItemTypeButtonLayout, ItemTypeScrolledWindow, ItemTypeColorTool, ItemTypeSelectionBox,
  ItemTypeSeparator, ItemTypeSingleSelectionList, ItemTypeString, ItemTypeBeginGroup,
  ItemTypeInteger, ItemTypeScaleInteger, ItemTypeMultiList, ItemTypeLabel,
  ItemTypeMultiLineText, ItemTypeTabControl, ItemTypeOptionMenu, ItemTypeToggle,
  ItemTypeOptionToggle, ItemTypeToolPalette, ItemTypeWideString, ItemTypePropertyPage,
  ItemTypeCollapsibleGroup
}
 Describes kind of action to be taken from callbac. More...
 

Public Member Functions

void AddActivateHandler (const NXOpen::UIStyler::SingleSelectList::Activate &activateevent, bool isDialogLaunchingEvent)
 Registers activate callback. More...
 
void AddDoubleClickHandler (const NXOpen::UIStyler::SingleSelectList::DoubleClick &doubleclickevent, bool isDialogLaunchingEvent)
 Registers double click callback. More...
 
void Append (std::vector< NXString > &multiEntries)
 Appends one or more entries to be inserted into the list
Created in NX5.0.0. More...
 
void DeleteSubItem (int subItemIndex)
 Requests a list entry to be deleted. More...
 
void DeselectSubItem (int subItemIndex)
 Requests a list entry to be deselected. More...
 
std::vector< NXStringGetListItems ()
 Gets an array of character strings that are used as entries in the list. More...
 
int GetSelectedIndexValue ()
 Gets selected index. More...
 
NXString GetSelectedString ()
 Gets selected string. More...
 
bool HasSelected ()
 Returns whether or not an item has been selected. More...
 
void InsertSubItem (int subitemIndex, std::vector< NXString > &multiEntries)
 Requests one or more entries to be inserted into the list. More...
 
bool Sensitivity ()
 Returns the sensitivity of the single select list
Created in NX5.0.0. More...
 
void SetFocus ()
 Indicates that this dialog item is receiving keyboard focus. More...
 
void SetListItems (std::vector< NXString > &itemVal)
 Specifies an array of character strings that are used as entries in the list
Created in NX5.0.0. More...
 
void SetSelected (int subIndex)
 Specifies particular list items to be selected
Created in NX5.0.0. More...
 
void SetSensitivity (bool type)
 Sets the sensitivity of the single select list
Created in NX5.0.0. More...
 
void SetVisibility (bool type)
 Sets the visibility of the single select list
Created in NX5.0.0. More...
 
void ShowSubItem (int subItemIndex)
 Requests that a list entry be scrolled up to the first line in the list
Created in NX5.0.0. More...
 
bool Visibility ()
 Returns the visibility of the single select list
Created in NX5.0.0. More...
 
- Public Member Functions inherited from NXOpen::UIStyler::StylerItem
NXOpen::UIStyler::StylerItem::ItemType GetItemType ()
 Gets the dialog item type. More...
 
NXOpen::UIStyler::AttachmentInitializeAttachment ()
 Returns initialized dialog item attachment information. More...
 
bool IsEqualTo (NXOpen::UIStyler::StylerItem *itemToCompare)
 Equates two styler items. More...
 
void SetAttachment (NXOpen::UIStyler::Attachment *attachment)
 Specifies the updated dialog item attachment information
Created in NX5.0.0. More...
 
virtual ~StylerItem ()
 Free resources associated with the instance. More...
 
- Public Member Functions inherited from NXOpen::TransientObject
void * GetHandle ()
 Handle of the internal object represented by this object. More...
 

Detailed Description

Represents a SingleSelectList for UI Styler
Created in NX5.0.0.


Member Typedef Documentation

Called when a dialog user selects an entry with a single mouse click or presses the spacebar on an already selected item.


Created in NX5.0.0.

License requirements : None

Called when a dialog user double-clicks on an option or presses Return when an item is already selected.


Created in NX5.0.0.

License requirements : None

Member Function Documentation

void NXOpen::UIStyler::SingleSelectList::AddActivateHandler ( const NXOpen::UIStyler::SingleSelectList::Activate activateevent,
bool  isDialogLaunchingEvent 
)

Registers activate callback.

This method should be called before calling UIStyler::Dialog::Show or UIStyler::Dialog::RegisterWithUiMenu
Created in NX5.0.0.

License requirements : None

Parameters
activateeventactivateevent
isDialogLaunchingEventis dialog launching event
void NXOpen::UIStyler::SingleSelectList::AddDoubleClickHandler ( const NXOpen::UIStyler::SingleSelectList::DoubleClick doubleclickevent,
bool  isDialogLaunchingEvent 
)

Registers double click callback.

This method should be called before calling UIStyler::Dialog::Show or UIStyler::Dialog::RegisterWithUiMenu
Created in NX5.0.0.

License requirements : None

Parameters
doubleclickeventdoubleclickevent
isDialogLaunchingEventis dialog launching event
void NXOpen::UIStyler::SingleSelectList::Append ( std::vector< NXString > &  multiEntries)

Appends one or more entries to be inserted into the list
Created in NX5.0.0.



License requirements : None

Parameters
multiEntriesAn array of entry names to be inserted into the list. This field is used only when more than one entry are to be inserted into the list.
void NXOpen::UIStyler::SingleSelectList::DeleteSubItem ( int  subItemIndex)

Requests a list entry to be deleted.


Created in NX5.0.0.

License requirements : None

Parameters
subItemIndexZero-based index of a list entry to be deleted. If subitem_index equals UF_STYLER_NO_SUB_INDEX, then all list entries are deleted.
void NXOpen::UIStyler::SingleSelectList::DeselectSubItem ( int  subItemIndex)

Requests a list entry to be deselected.


Created in NX5.0.0.

License requirements : None

Parameters
subItemIndexsubitemindex
std::vector<NXString> NXOpen::UIStyler::SingleSelectList::GetListItems ( )

Gets an array of character strings that are used as entries in the list.

Returns
An array of string items
Created in NX5.0.0.

License requirements : None
int NXOpen::UIStyler::SingleSelectList::GetSelectedIndexValue ( )

Gets selected index.

Returns

Created in NX5.0.0.

License requirements : None
NXString NXOpen::UIStyler::SingleSelectList::GetSelectedString ( )

Gets selected string.

Returns

Created in NX5.0.0.

License requirements : None
bool NXOpen::UIStyler::SingleSelectList::HasSelected ( )

Returns whether or not an item has been selected.

Returns

Created in NX7.5.1.

License requirements : None
void NXOpen::UIStyler::SingleSelectList::InsertSubItem ( int  subitemIndex,
std::vector< NXString > &  multiEntries 
)

Requests one or more entries to be inserted into the list.

You can insert entries at the bottom of the list or at any position within the list.
Created in NX5.0.0.

License requirements : None

Parameters
subitemIndexPosition index where the insertion should be made. If subitem_index equals UF_STYLER_NO_SUB_INDEX, then the new list entries are added to the bottom of the list.
multiEntriesAn array of entry names to be inserted into the list. This field is used only when more than one entry are to be inserted into the list.
bool NXOpen::UIStyler::SingleSelectList::Sensitivity ( )

Returns the sensitivity of the single select list
Created in NX5.0.0.



License requirements : None

void NXOpen::UIStyler::SingleSelectList::SetFocus ( )

Indicates that this dialog item is receiving keyboard focus.


Created in NX5.0.0.

License requirements : None

void NXOpen::UIStyler::SingleSelectList::SetListItems ( std::vector< NXString > &  itemVal)

Specifies an array of character strings that are used as entries in the list
Created in NX5.0.0.



License requirements : None

Parameters
itemValAn array of string items
void NXOpen::UIStyler::SingleSelectList::SetSelected ( int  subIndex)

Specifies particular list items to be selected
Created in NX5.0.0.



License requirements : None

Parameters
subIndexInndex of particular list items to be selected
void NXOpen::UIStyler::SingleSelectList::SetSensitivity ( bool  type)

Sets the sensitivity of the single select list
Created in NX5.0.0.



License requirements : None

Parameters
typetype
void NXOpen::UIStyler::SingleSelectList::SetVisibility ( bool  type)

Sets the visibility of the single select list
Created in NX5.0.0.



License requirements : None

Parameters
typetype
void NXOpen::UIStyler::SingleSelectList::ShowSubItem ( int  subItemIndex)

Requests that a list entry be scrolled up to the first line in the list
Created in NX5.0.0.



License requirements : None

Parameters
subItemIndexZero-based index of a list entry to be scrolled up to the first line of the list.
bool NXOpen::UIStyler::SingleSelectList::Visibility ( )

Returns the visibility of the single select list
Created in NX5.0.0.



License requirements : None


The documentation for this class was generated from the following file:
Copyright 2017 Siemens Product Lifecycle Management Software Inc. All Rights Reserved.