| Home Page | Recent Changes

Useful UWindow Extensions/Combobox And Editbox

Auto-Sizing Combo and Edit controls

These controls consist of a caption and an editbox or a drop-down list. This code changes the width of that box to fill the available space behind the caption without resizing the control itself. Since UWindowEditControl and UWindowComboControl use the same names for the corresponding properties both controls can use the following code:

var bool bAutoSize;

function BeforePaint(Canvas C, float X, float Y)
{
    local float TW, TH;
    
    if ( bAutoSize ) {
        TextSize(C, Text, TW, TH);
        EditBoxWidth = WinWidth - TW;
    }
    Super.BeforePaint(C, X, Y);
}

This could also be used for the UWindowHSliderControl? (you only need to change EditBoxWidth to SliderWidth), but this only looks good if the slider's text doesn't change when the slider is moved.

The Unreal Engine Documentation Site

Wiki Community

Topic Categories

Recent Changes

Offline Wiki

Unreal Engine

Console Commands

Terminology

FAQs

Help Desk

Mapping Topics

Mapping Lessons

UnrealEd Interface

UnrealScript Topics

UnrealScript Lessons

Making Mods

Class Tree

Modeling Topics

Chongqing Page

Log In