My program doesn't have bugs. It just develops random features.

Legacy:UWindowDialogClientWindow

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 01:56, 22 June 2004 by 195.243.94.xxx (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
UWindowBase >> UWindowWindow >> UWindowClientWindow >> UWindowDialogClientWindow

Dialog window which can receive events from controls, and draws a background.

Subclass from UWindowPageWindow instead if you want to use the client window inside a UWindowPageControl.

Properties[edit]

float DesiredWidth, DesiredHeight 
Set this to the size you want this clientwindow to be. Used by UWindowScrollingDialogClient to calculate the scrollbar size.
UWindowDialogControl TabLast 
Last added control.

Methods[edit]

OKPressed ( ) 
Notify (UWindowDialogControl C, byte E) 
Called when something happends to a control (changed, clicked, etc..). C is the control. E holds the value of a DE_* const defined in UWindowWindow, wich tells what happend to the control.
UWindowDialogControl CreateControl (class<UWindowDialogControl> ControlClass, float X, float Y, float W, float H, optional UWindowWindow OwnerWindow) 
Use this instead of CreateWindow to add a control, Else Notify won't get called for this control.
GetDesiredDimensions (out float W, out float H) 
Gives the values of DesiredWidth and DesiredHeight.

Known Subclasses[edit]

UWindow[edit]

UMenu[edit]

UTMenu[edit]

UBrowser[edit]

Related Topics[edit]