Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

Jailbreak.JBGUIComponentTrackbar

Extends
GUIMultiComponent

Core.Object
|   
+-- XInterface.GUI
   |   
   +-- XInterface.GUIComponent
      |   
      +-- XInterface.GUIMultiComponent
         |   
         +-- Jailbreak.JBGUIComponentTrackbar

Variables Summary
GUIComponentMyEditBox
GUILabelMyLabel
GUISliderMySlider
Menu
boolbIntegerOnly
boolbSpinButtons
stringCaption
floatCaptionWidth
floatEditBoxWidth
colorLabelColor
stringLabelFont
floatLeftIndent
floatMaxValue
floatMinValue
floatSliderWidth
floatValue
Inherited Variables from XInterface.GUIMultiComponent
AnimationCount, bAlwaysAutomate, bDrawFocusedLast, bOldStyleMenus, Components, Controls, FocusedControl, PropagateVisibility
Inherited Variables from XInterface.GUIComponent
bAcceptsInput, bAnimating, bBoundToParent, bCaptureMouse, bCaptureTabs, bDebugging, bDropSource, bDropTarget, bFocusOnWatch, bHasFocus, bInit, bMouseOverSound, bNeverFocus, bNeverScale, BoundingType, Bounds[4], bPendingFocus, bPositioned, bRepeatClick, bRequireReleaseClick, bRequiresStyle, bScaleToParent, bSizing, bStandardized, bTabStop, bTimerRepeat, bTravelling, bVisible, ClientBounds[4], ContextMenu, DrawCount, DropState, FocusInstead, FontScale, FriendlyLabel, Hint, IniDefault, IniOption, LastMenuState, MenuOwner, MenuState, MotionFrame, MouseCursorIndex, MouseOffset[4], OnClickSound, OnDrawCount, OnPreDrawCount, OnRenderCount, OnRenderedCount, PageOwner, PreDrawCount, RenderWeight, ScalingType, SizeFrame, StandardHeight, Style, StyleName, TabOrder, Tag, TimerCountdown, TimerIndex, TimerInterval, ToolTip, WhiteColor, WinHeight, WinLeft, WinTop, WinWidth

Enumerations Summary
Inherited Enumerations from XInterface.GUIComponent
EClickSound, EParentScaleType

Functions Summary
functionfloat GetValue ()))
function InitComponent (GUIController MyController, GUIComponent MyOwner))
function IntegerOnly (bool bIntOnly))
functionbool InternalCapturedMouseMove (float deltaX, float deltaY))
function InternalOnChange (GUIComponent Sender))
functionbool InternalOnPreDraw (Canvas C))
function NumericRange (float NewMin, float NewMax))
function SetValue (float NewValue))
function SpinButtons (bool bShow))
Inherited Functions from XInterface.GUIMultiComponent
AddComponent, AppendComponent, BeginAnimation, CanAcceptFocus, CenterMouse, CheckDuplicateTabOrder, CheckInvalidTabOrder, Closed, DebugTabOrder, DisableMe, EnableMe, EndAnimation, FindComponentIndex, FocusFirst, FocusLast, Free, InitComponent, InitializeControls, InsertComponent, InternalOnShow, LevelChanged, LoseFocus, NextControl, Opened, PrevControl, RemapComponents, RemoveComponent, SetFocus, SetFocusInstead, SetVisibility
Inherited Functions from XInterface.GUIComponent
ActualHeight, ActualLeft, ActualTop, ActualWidth, AdditionalDebugString, Animate, AutoPosition, AutoPositionOn, BeginAnimation, CanAcceptFocus, CenterMouse, Closed, DAnimate, DebugFocus, DebugFocusPosition, DebugTabOrder, DisableComponent, DisableMe, DropStateChange, EnableComponent, EnableMe, EndAnimation, FillOwner, FocusFirst, FocusLast, Free, GetMenuPath, Hide, InitComponent, IsInBounds, IsInClientBounds, IsMultiSelect, KillAnimation, KillTimer, LevelChanged, LoadINI, LoseFocus, MakeColorCode, MenuStateChange, NextControl, NextPage, Opened, OwnerPage, PadLeft, PadRight, PlayerOwner, PrevControl, PrevPage, RelativeHeight, RelativeLeft, RelativeTop, RelativeWidth, Resize, ResolutionChanged, SaveINI, SetFocus, SetFocusInstead, SetFriendlyLabel, SetHint, SetPosition, SetTimer, SetTooltip, SetToolTipText, SetVisibility, Show, SpecialHit, StripColorCodes, Timer, UpdateOffset


Variables Detail

MyEditBox Source code

var GUIComponent MyEditBox;

MyLabel Source code

var GUILabel MyLabel;

MySlider Source code

var GUISlider MySlider;

Menu

bIntegerOnly Source code

var(Menu) protected bool bIntegerOnly;

bSpinButtons Source code

var(Menu) protected bool bSpinButtons;

Caption Source code

var(Menu) localized string Caption;

CaptionWidth Source code

var(Menu) float CaptionWidth;

EditBoxWidth Source code

var(Menu) float EditBoxWidth;

LabelColor Source code

var(Menu) color LabelColor;

LabelFont Source code

var(Menu) string LabelFont;

LeftIndent Source code

var(Menu) float LeftIndent;

MaxValue Source code

var(Menu) protected float MaxValue;

MinValue Source code

var(Menu) protected float MinValue;

SliderWidth Source code

var(Menu) float SliderWidth;

Value Source code

var(Menu) protected float Value;


Functions Detail

GetValue Source code

function float GetValue ( ) )

InitComponent Source code

function InitComponent ( GUIController MyController, GUIComponent MyOwner) )

IntegerOnly Source code

function IntegerOnly ( bool bIntOnly) )

InternalCapturedMouseMove Source code

function bool InternalCapturedMouseMove ( float deltaX, float deltaY) )

InternalOnChange Source code

singular function InternalOnChange ( GUIComponent Sender) )

InternalOnPreDraw Source code

function bool InternalOnPreDraw ( Canvas C) )

NumericRange Source code

function NumericRange ( float NewMin, float NewMax) )

SetValue Source code

function SetValue ( float NewValue) )

SpinButtons Source code

function SpinButtons ( bool bShow) )


Defaultproperties

defaultproperties
{
  Begin Object Class=GUILabel Name=Label
    bScaleToParent=True
    bBoundToParent=True
    WinTop=0
    WinLeft=0
    WinHeight=1
    WinWidth=0.3
    StyleName="TextLabel"
  End Object
  Controls(0)=GUILabel'Label'
  
  Begin Object Class=GUISlider Name=Slider
    bScaleToParent=True
    bBoundToParent=True
    WinTop=0
    WinLeft=0.3
    WinHeight=1
    WinWidth=0.4
  End Object
  Controls(1)=GUISlider'Slider'
  
  Begin Object Class=GUINumericEdit Name=EditBoxInt
    bScaleToParent=True
    bBoundToParent=True
    WinTop=0
    WinLeft=0.7
    WinHeight=1
    WinWidth=0.3
  End Object
  Controls(2)=GUINumericEdit'EditBoxInt'


  Begin Object Class=GUIFloatEdit Name=EditBoxFloat
    bScaleToParent=True
    bBoundToParent=True
    WinTop=0
    WinLeft=0.7
    WinHeight=1
    WinWidth=0.3
  End Object
  Controls(3)=GUIFloatEdit'EditBoxFloat'
  
  WinWidth=0.5
  WinHeight=0.06
  bSpinButtons=True
  CaptionWidth=0.3
  SliderWidth=-1
  EditBoxWidth=0.3
  LabelFont="UT2MenuFont"
  LabelColor=(R=255,G=255,B=255,A=255)
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Creation time: Do 14.8.2014 09:58:10.957 - Created with UnCodeX