className
stringlengths
1
167
headerPath
stringlengths
14
166
description
stringlengths
0
1.62k
module
stringlengths
0
76
code
stringlengths
0
11.4k
variables
listlengths
0
395
SMultiColumnTableRow::GenerateColumns
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
void GenerateColumns ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SHeaderRow](API\Runtime\Slate\Widgets\Views\SHeaderRow) > & InColumnHeaders )
[]
SMultiColumnTableRow::GenerateWidgetForColumn
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Users ofSMultiColumnTableRowwould usually some piece of data associated with it. The type of this data is ItemType; it's the stuff that your TableView (i.e. List or Tree) is visualizing. The ColumnName tells you which column of the TableView we need to make a widget for. Make a widget and return it. a widget to represent the contents of a cell in this row of a TableView.
Slate
[TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > GenerateWidgetForColumn ( const [FName](API\Runtime\Core\UObject\FName) & InColumnName )
[]
SMultiColumnTableRow::GetWidgetFromColumnId
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > * GetWidgetFromColumnId ( const [FName](API\Runtime\Core\UObject\FName) & ColumnId ) const
[]
SMultiColumnTableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
template<typename ItemType> class SMultiColumnTableRow : public [STableRow< ItemType >](API\Runtime\Slate\Widgets\Views\STableRow)
[]
STableRow::AsWidget
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
this table row as a widget
Slate
virtual [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > AsWidget()
[]
STableRow::Construct
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Construct this widget
Slate
void Construct ( const typename [STableRow](API\Runtime\Slate\Widgets\Views\STableRow)< ItemType >::[FArguments](API\Runtime\Slate\Widgets\Views\STableRow\FArguments) & InArgs, const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [STableViewBase](API\Runtime\Slate\Widgets\Views\STableViewBase) > & InOwnerTableView )
[]
STableRow::ConstructChildren
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual void ConstructChildren ( [ETableViewMode::Type](API\Runtime\Slate\Framework\Views\ETableViewMode__Type) InOwnerTableMode, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [FMargin](API\Runtime\SlateCore\Layout\FMargin) > & InPadding, const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & InContent )
[]
STableRow::ConstructInternal
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
An internal method to construct and setup this row widget (purposely avoids child construction). Split out fromConstruct()so that sub-classes can invoke super construction without invokingConstructChildren()(sub-classes may want to constuct their own children in their own special way).
Slate
void ConstructInternal ( [FArguments](API\Runtime\Slate\Widgets\Views\STableRow\FArguments) const & InArgs, [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [STableViewBase](API\Runtime\Slate\Widgets\Views\STableViewBase) > const & InOwnerTableView )
[]
STableRow::CreateAccessibleWidget
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< FSlateAccessibleWidget > CreateAccessibleWidget()
[]
STableRow::DoesItemHaveChildren
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Does this item have children?
Slate
virtual int32 DoesItemHaveChildren() const
[]
STableRow::FArguments::bAllowPreselectedItemActivation
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & bAllowPreselectedItemActivation &40; bool InArg &41;
[]
STableRow::FArguments::Content
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
NamedSlotProperty< typename STableRow< ItemType >::FArguments > Content&40;&41;
[]
STableRow::FArguments::ExpanderStyleSet
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & ExpanderStyleSet &40; const ISlateStyle &42; InArg &41;
[]
STableRow::FArguments::OnAcceptDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Perform a drop operation onto the target row widget Most commonly used for executing a re-ordering and re-organization operations in lists or trees. e.g. A user was dragging one item into a different spot in the list; they just dropped it. This is our chance to handle the drop by reordering items and calling for a list refresh.
Slate
WidgetArgsType & OnAcceptDrop &40; const FOnAcceptDrop & InDelegate &41;
[]
STableRow::FArguments::OnDragEnter
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & OnDragEnter &40; const FOnTableRowDragEnter & InDelegate &41;
[]
STableRow::FArguments::OnCanAcceptDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Handle this event to determine whether a drag and drop operation can be executed on top of the target row widget. Most commonly, this is used for previewing re-ordering and re-organization operations in lists or trees. e.g. A user is dragging one item into a different spot in the list or tree. This delegate will be called to figure out if we should give visual feedback on whether an item will successfully drop into the list.
Slate
WidgetArgsType & OnCanAcceptDrop &40; const FOnCanAcceptDrop & InDelegate &41;
[]
STableRow::FArguments::OnDragDetected
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Low level DragAndDrop.
Slate
WidgetArgsType & OnDragDetected &40; const FOnDragDetected & InDelegate &41;
[]
STableRow::FArguments::OnDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & OnDrop &40; const FOnTableRowDrop & InDelegate &41;
[]
STableRow::FArguments::OnPaintDropIndicator
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Used for painting drop indicators
Slate
WidgetArgsType & OnPaintDropIndicator &40; const FOnPaintDropIndicator & InDelegate &41;
[]
STableRow::FArguments::OnDragLeave
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & OnDragLeave &40; const FOnTableRowDragLeave & InDelegate &41;
[]
STableRow::FArguments::operator[]
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
STableRow< ItemType >::FArguments & operator&91;&93; &40; const TSharedRef< SWidget > & InChild &41;
[]
STableRow::FArguments::Padding
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & Padding &40; const TAttribute< FMargin > & InAttribute &41;
[]
STableRow::FArguments::ShowWires
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & ShowWires &40; bool InArg &41;
[]
STableRow::FArguments::ShowSelection
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & ShowSelection &40; bool InArg &41;
[]
STableRow::FArguments::SignalSelectionMode
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
The Signal Selection mode affect when the owner table gets notified that the selection has changed. This only affect the selection with the left mouse button! When Deferred, the owner table will get notified when the button is released or when a drag started. When Instantaneous, the owner table is notified as soon as the selection changed.
Slate
WidgetArgsType & SignalSelectionMode &40; ETableRowSignalSelectionMode InArg &41;
[]
WidgetArgsType
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
typedef FArguments WidgetArgsType
[]
STableRow::FArguments::Style
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
WidgetArgsType & Style &40; const FTableRowStyle &42; InArg &41;
[]
STableRow::FArguments::FArguments
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
FArguments&40;&41;
[]
FArguments
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
struct FArguments : public [TSlateBaseNamedArgs< STableRow< ItemType > >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs)
[]
FOnAcceptDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Delegate signature for handling the drop ofFDragDropEventonto target of type ItemType
Slate
typedef TBaseDelegate_ThreeParams< [FReply](API\Runtime\SlateCore\Input\FReply), const [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) &, EItemDropZone, ItemType > FOnAcceptDrop
[]
FOnCanAcceptDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Delegate signature for querying whether thisFDragDropEventwill be handled by the drop target of type ItemType.
Slate
typedef TBaseDelegate_ThreeParams< [TOptional](API\Runtime\Core\IO\TOptional)< EItemDropZone >, const [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) &, EItemDropZone, ItemType > FOnCanAcceptDrop
[]
FOnPaintDropIndicator
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Delegate signature for painting drop indicators.
Slate
typedef TBaseDelegate_EightParams< int32, EItemDropZone, const [FPaintArgs](API\Runtime\SlateCore\Types\FPaintArgs) &, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) &, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) &, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) &, int32, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) &, bool > FOnPaintDropIndicator
[]
STableRow::FSlateAccessibleTableRow::AddToSelection
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Adds this table row to the list of selected items in the owning table
Slate
virtual void AddToSelection&40;&41;
[]
STableRow::FSlateAccessibleTableRow::AsTableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
IAccessibleWidget.
Slate
virtual IAccessibleTableRow &42; AsTableRow&40;&41;
[]
STableRow::FSlateAccessibleTableRow::GetOwningTable
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Get the accessible table that owns this accessible table row. NOTE: This should always return a valid pointer in concrete classes. An accessible table row must ALWAYS have an accessible table as an owner. The owning table
Slate
virtual TSharedPtr< IAccessibleWidget > GetOwningTable&40;&41; const
[]
STableRow::FSlateAccessibleTableRow::IsSelected
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Checks if this table row is currently selected in the owning table. True if this table row is currently selected in the owning table. Else false
Slate
virtual bool IsSelected&40;&41; const
[]
STableRow::FSlateAccessibleTableRow::RemoveFromSelection
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Removes this table row from the list of selected items in the owning table
Slate
virtual void RemoveFromSelection&40;&41;
[]
STableRow::FSlateAccessibleTableRow::FSlateAccessibleTableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
FSlateAccessibleTableRow &40; TWeakPtr< SWidget > InWidget, EAccessibleWidgetType InWidgetType &41;
[]
STableRow::FSlateAccessibleTableRow::Select
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
~IAccessibleTableRow
Slate
virtual void Select&40;&41;
[]
FSlateAccessibleTableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
An accessible implementation ofSTableRowexposed to platform accessibility APIs. For subclasses ofSTableRow, inherit from this class and override any functions to give the desired behavior.
Slate
class FSlateAccessibleTableRow : public FSlateAccessibleWidget, public [IAccessibleTableRow](API\Runtime\ApplicationCore\GenericPlatform\Accessibility\IAccessibleTableRow)
[]
STableRow::GetBorder
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
The border to be drawn around this list item
Slate
virtual const [FSlateBrush](API\Runtime\SlateCore\Styling\FSlateBrush) * GetBorder() const
[]
STableRow::GetContent
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Get the inner content of this row
Slate
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > GetContent()
[]
STableRow::GetForegroundBasedOnSelection
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
[FSlateColor](API\Runtime\SlateCore\Styling\FSlateColor) GetForegroundBasedOnSelection() const
[]
STableRow::GetDropIndicatorBrush
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Retrieves a brush for rendering a drop indicator for the specified drop zone
Slate
const [FSlateBrush](API\Runtime\SlateCore\Styling\FSlateBrush) * GetDropIndicatorBrush ( EItemDropZone InItemDropZone ) const
[]
STableRow::GetIndentLevel
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
how nested the item associated with this row when it is in a TreeView
Slate
virtual int32 GetIndentLevel() const
[]
STableRow::GetIndexInList
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
The index of the item for which this widget was generated
Slate
virtual int32 GetIndexInList()
[]
STableRow::GetItemForThis
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
const ItemType * GetItemForThis ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ITypedTableView](API\Runtime\Slate\Framework\Views\ITypedTableView)< ItemType >> & OwnerTable ) const
[]
STableRow::GetRowSizeForColumn
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Bydefault, this function does nothing, it should be implemented by derived class
Slate
virtual FVector2D GetRowSizeForColumn ( const [FName](API\Runtime\Core\UObject\FName) & InColumnName ) const
[]
STableRow::GetWiresNeededByDepth
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
BitArray where each entry corresponds to whether this item needs a vertical wire draw for that depth.
Slate
virtual [TBitArray](API\Runtime\Core\Containers\TBitArray) GetWiresNeededByDepth() const
[]
STableRow::GetSelectionMode
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called to query the selection mode for the row
Slate
virtual [ESelectionMode::Type](API\Runtime\Slate\Framework\Views\ESelectionMode__Type) GetSelectionMode() const
[]
STableRow::IsItemExpanded
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
true if the corresponding item is expanded; false otherwise
Slate
virtual bool IsItemExpanded() const
[]
STableRow::InitializeRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when the row has been generated and associated with an item in the owning table. Any attempts to access the item associated with the row prior to this (i.e. inConstruct()) will fail, as the association is not yet established in the owning table.
Slate
virtual void InitializeRow()
[]
STableRow::IsLastChild
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
true if this item is the last direct descendant of its parent.
Slate
virtual bool IsLastChild() const
[]
STableRow::IsItemSelected
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
True if the corresponding item is selected; false otherwise
Slate
virtual bool IsItemSelected() const
[]
STableRow::IsSelectedExclusively
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Callback to determine if the row is selected singularly and has keyboard focus or not true if selected by owning widget.
Slate
bool IsSelectedExclusively() const
[]
STableRow::OnDragDetected
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when Slate detects that a widget started to be dragged. Usage: A widget can ask Slate to detect a drag. OnMouseDown() reply withFReply::Handled().DetectDrag( SharedThis(this) ). Slate will either send anOnDragDetected()event or do nothing. If the user releases a mouse button or leaves the widget before a drag is triggered (maybe user started at the very edge) then no event will be sent.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnDragDetected ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
STableRow::IsSelected
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Callback to determine if the row is selected or not true if selected by owning widget.
Slate
bool IsSelected() const
[]
STableRow::OnDragEnter
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual void OnDragEnter ( [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) const & MyGeometry, [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) const & DragDropEvent )
[]
STableRow::OnDragLeave
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual void OnDragLeave ( [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) const & DragDropEvent )
[]
STableRow::OnDragOver
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called during drag and drop when the the mouse is being dragged over a widget. A reply that indicated whether this event was handled.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnDragOver ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) & DragDropEvent )
[]
STableRow::OnDrop
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when the user is dropping something onto a widget; terminates drag and drop. A reply that indicated whether this event was handled.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnDrop ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FDragDropEvent](API\Runtime\SlateCore\Input\FDragDropEvent) & DragDropEvent )
[]
STableRow::OnMouseButtonDoubleClick
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when a mouse button is double clicked. Override this in derived classes. Returns whether the event was handled, along with other possible actions.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonDoubleClick ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & InMyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & InMouseEvent )
[]
STableRow::OnMouseButtonDown
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
SeeSWidget::OnMouseButtonDownWhether the event was handled along with possible requests for the system to take action.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonDown ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
STableRow::OnMouseButtonUp
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
SeeSWidget::OnMouseButtonUpWhether the event was handled along with possible requests for the system to take action.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonUp ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
STableRow::OnPaintDropIndicator
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual int32 OnPaintDropIndicator ( EItemDropZone InItemDropZone, const [FPaintArgs](API\Runtime\SlateCore\Types\FPaintArgs) & Args, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & AllottedGeometry, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & MyCullingRect, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) & OutDrawElements, int32 LayerId, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) & InWidgetStyle, bool bParentEnabled ) const
[]
STableRow::OnPaint
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
The widget should respond by populating the OutDrawElements array with FDrawElements that represent it and any of its children. Called by the non-virtual OnPaint to enforce pre/post conditions during OnPaint. The maximum layer ID attained by this widget or any of its children.
Slate
virtual int32 OnPaint ( const [FPaintArgs](API\Runtime\SlateCore\Types\FPaintArgs) & Args, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & AllottedGeometry, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & MyCullingRect, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) & OutDrawElements, int32 LayerId, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) & InWidgetStyle, bool bParentEnabled ) const
[]
STableRow::OnTouchEnded
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when a touchpad touch is ended (finger lifted)
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnTouchEnded ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & InTouchEvent )
[]
STableRow::OnTouchStarted
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when a touchpad touch is started (finger down)
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnTouchStarted ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & InTouchEvent )
[]
STableRow::Private_OnExpanderArrowShiftClicked
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when the expander arrow for this row is shift+clicked
Slate
virtual void Private_OnExpanderArrowShiftClicked()
[]
STableRow::ResetRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Called when the row has been released from the owning table and is no longer associated with any items therein. Only relevant if the row widgets are pooled or otherwise referenced/kept alive outside the owning table. Otherwise, the row is destroyed.
Slate
virtual void ResetRow()
[]
STableRow::SetContent
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Set the inner content of this row, preserving any extra UI (such as the expander arrows for tree views) that was added by ConstructChildren
Slate
virtual void SetContent ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > InContent )
[]
STableRow::SetExpanderArrowVisibility
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
void SetExpanderArrowVisibility ( const [EVisibility](API\Runtime\SlateCore\Layout\EVisibility) InExpanderArrowVisibility )
[]
STableRow::SetIndexInList
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
virtual void SetIndexInList ( int32 InIndexInList )
[]
STableRow::ToggleExpansion
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Toggle the expansion of the item associated with this row
Slate
virtual void ToggleExpansion()
[]
STableRow::SetRowContent
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Set the entire content of this row, replacing any extra UI (such as the expander arrows for tree views) that was added by ConstructChildren
Slate
virtual void SetRowContent ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > InContent )
[]
STableRow::SetOwnerTableView
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Slate
void SetOwnerTableView ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [STableViewBase](API\Runtime\Slate\Widgets\Views\STableViewBase) > OwnerTableView )
[]
STableRow::ZoneFromPointerPosition
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
the zone (above, onto, below) based on where the user is hovering over within the row
Slate
EItemDropZone ZoneFromPointerPosition ( [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) LocalPointerPos, [UE::Slate::FDeprecateVector2DParameter](API\Runtime\SlateCore\Types\FDeprecateVector2DParameter) LocalSize, EOrientation Orientation )
[]
STableRow::STableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
Protected constructor; SWidgets should only be instantiated via declarative syntax.
Slate
STableRow()
[]
STableRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h
The ListView is populated by Selectable widgets. A Selectable widget is a way of the ListView containing it (OwnerTable) and holds arbitrary Content (Content). A Selectable works with its corresponding ListView to provide selection functionality.
Slate
template<typename ItemType> class STableRow : public [ITableRow](API\Runtime\Slate\Widgets\Views\ITableRow), public [SBorder](API\Runtime\Slate\Widgets\Layout\SBorder)
[ { "type": "bool", "name": "bAllowPreselectedItemActivation", "description": "When activating an item via mouse button, we generally don't allow pre-selected items to be activated" }, { "type": "bool", "name": "bChangedSelectionOnMouseDown", "description": "" }, { "type": "bool", "name": "bDragWasDetected", "description": "" }, { "type": "bool", "name": "bProcessingSelectionTouch", "description": "Did the current a touch interaction start in this item?" }, { "type": "bool", "name": "bShowSelection", "description": "Whether or not to visually show that this row is selected" }, { "type": "TWeakPtr<SWidg...", "name": "Content", "description": "The widget in the content slot for this row" }, { "type": "TSharedPtr<SEx...", "name": "ExpanderArrowWidget", "description": "A pointer to the expander arrow on the row (if it exists)" }, { "type": "constISlateSty...", "name": "ExpanderStyleSet", "description": "The slate style to use with the expander" }, { "type": "int32", "name": "IndexInList", "description": "Indexof the corresponding data item in the list" }, { "type": "FSlotBase*", "name": "InnerContentSlot", "description": "The slot that contains the inner content for this row." }, { "type": "TOptional< EIte...", "name": "ItemDropZone", "description": "Are we currently dragging/dropping over this item?" }, { "type": "FOnAcceptDrop", "name": "OnAcceptDrop", "description": "" }, { "type": "FOnCanAcceptDro...", "name": "OnCanAcceptDrop", "description": "" }, { "type": "FOnDragDetected", "name": "OnDragDetected_Handler", "description": "Delegate triggered when a user starts to drag a list item" }, { "type": "FOnTableRowDrag...", "name": "OnDragEnter_Handler", "description": "Delegate triggered when a user's drag enters the bounds of this list item" }, { "type": "FOnTableRowDrag...", "name": "OnDragLeave_Handler", "description": "Delegate triggered when a user's drag leaves the bounds of this list item" }, { "type": "FOnTableRowDrop", "name": "OnDrop_Handler", "description": "Delegate triggered when a user's drag is dropped in the bounds of this list item" }, { "type": "TWeakPtr<IType...", "name": "OwnerTablePtr", "description": "The list that owns this Selectable" }, { "type": "FOnPaintDropInd...", "name": "PaintDropIndicatorEvent", "description": "Optional delegate for painting drop indicators" }, { "type": "ETableRowSignal...", "name": "SignalSelectionMode", "description": "When should we signal that selection changed for a left click" }, { "type": "constFTableRow...", "name": "Style", "description": "Style used to draw this table row" } ]
STableViewBase::AppendPinnedWidget
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Add a WidgetToAppend to the bottom of the pinned view.
Slate
void AppendPinnedWidget ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & WidgetToAppend )
[]
STableViewBase::AddScrollOffset
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Add the scroll offset of this view (in items)
Slate
void AddScrollOffset ( const float InScrollOffsetDelta, bool RefreshList )
[]
STableViewBase::AppendWidget
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Add a WidgetToAppend to the bottom of the view.
Slate
void AppendWidget ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ITableRow](API\Runtime\Slate\Widgets\Views\ITableRow) > & WidgetToAppend )
[]
STableViewBase::ClearWidgets
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Remove all the widgets from the view.
Slate
void ClearWidgets()
[]
STableViewBase::ComputeVolatility
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Recomputes the volatility of the widget. If you have additional state you automatically want to make the widget volatile, you should sample that information here.
Slate
virtual bool ComputeVolatility() const
[]
STableViewBase::CanUseInertialScroll
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Check whether the current state of the table warrants inertial scroll by the specified amount
Slate
bool CanUseInertialScroll ( float ScrollAmount ) const
[]
STableViewBase::ClearPinnedWidgets
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Remove all the pinned widgets from the view.
Slate
void ClearPinnedWidgets()
[]
STableViewBase::ConstructChildren
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Create the child widgets that comprise the list
Slate
void ConstructChildren ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< float > & InItemWidth, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< float > & InItemHeight, const [TAttribute](API\Runtime\Core\Misc\TAttribute)< EListItemAlignment > & InItemAlignment, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SHeaderRow](API\Runtime\Slate\Widgets\Views\SHeaderRow) > & InHeaderRow, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SScrollBar](API\Runtime\Slate\Widgets\Layout\SScrollBar) > & InScrollBar, EOrientation InScrollOrientation, const FOnTableViewScrolled & InOnTableViewScrolled, const [FScrollBarStyle](API\Runtime\SlateCore\Styling\FScrollBarStyle) * InScrollBarStyle, const bool bInPreventThrottling )
[]
STableViewBase::EndInertialScrolling
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Reset the inertial scroll velocity accumulated in the InertialScrollManager
Slate
void EndInertialScrolling()
[]
STableViewBase::EnsureTickToRefresh
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
One-off active timer to refresh the contents of the table as needed
Slate
EActiveTimerReturnType EnsureTickToRefresh ( double InCurrentTime, float InDeltaTime )
[]
STableViewBase::FindChildUnderPosition
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Util function to find the child index under the given position.
Slate
int32 FindChildUnderPosition ( [FArrangedChildren](API\Runtime\SlateCore\Layout\FArrangedChildren) & ArrangedChildren, const FVector2D & ArrangedSpacePosition ) const
[]
STableViewBase::FReGenerateResults::FReGenerateResults
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Slate
FReGenerateResults &40; double InNewScrollOffset, double InLengthGenerated, double InItemsOnScreen, bool AtEndOfList &41;
[]
EScrollIntoViewResult
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Slate
enum EScrollIntoViewResult { Success, Deferred, Failure, }
[]
FReGenerateResults
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Information about the outcome of the WidgetRegeneratePass
Slate
struct FReGenerateResults
[ { "type": "bool", "name": "bGeneratedPastLastItem", "description": "True when we have generated" }, { "type": "double", "name": "ExactNumLinesOnScreen", "description": "How many lines are fitting on the screen, including fractions" }, { "type": "double", "name": "LengthOfGeneratedItems", "description": "The total length along the scroll axis of the widgets that we have generated to represent the visible subset of the items" }, { "type": "double", "name": "NewScrollOffset", "description": "The scroll offset that we actually use might not be what the user asked for" } ]
STableViewBase::GetConstructedTableItems
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Slate
const [FChildren](API\Runtime\SlateCore\Layout\FChildren) * GetConstructedTableItems() const
[]
STableViewBase::GetFirstLineScrollOffset
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Get the offset of the first list item.
Slate
virtual float GetFirstLineScrollOffset() const
[]
STableViewBase::GetHeaderRow
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Slate
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SHeaderRow](API\Runtime\Slate\Widgets\Views\SHeaderRow) > GetHeaderRow() const
[]
STableViewBase::GetItemSize
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Get the uniform item
Slate
[UE::Slate::FDeprecateVector2DResult](API\Runtime\SlateCore\Types\FDeprecateVector2DResult) GetItemSize() const
[]
STableViewBase::GetItemHeight
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Get the uniform item height that is enforced by ListViews.
Slate
float GetItemHeight() const
[]
STableViewBase::GetItemWidth
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
Get the uniform item width.
Slate
float GetItemWidth() const
[]
STableViewBase::GetNumItemsBeingObserved
/Engine/Source/Runtime/Slate/Public/Widgets/Views/STableViewBase.h
how many items there are in theTArraybeing observed
Slate
int32 GetNumItemsBeingObserved() const
[]