Class AutoCompleteEdit
An EditLine with a filtered suggestion dropdown.
While the user types, suggestions are filtered by case-insensitive prefix match and displayed in a popup below the widget. The user can: - Keep typing to narrow suggestions - Click a suggestion to accept it - Press Down to move focus into the list, then Up/Down/Enter to navigate - Press Escape to dismiss the popup without selecting
Constructors
| Name | Description |
|---|---|
this
(ID, suggestions)
|
Fields
| Name | Type | Description |
|---|---|---|
_backgroundDrawable
|
Ref!(dcanvas.graphics.resources.Drawable) | |
checkChange
|
Signal!(dcanvas.widgets.widget.OnCheckHandler) | checked state change event listener (bool delegate(Widget, bool)) |
click
|
Signal!(dcanvas.widgets.widget.OnClickHandler) | on click event listener (bool delegate(Widget)) |
contentChange
|
Signal!(dcanvas.widgets.editors.EditableContentChangeListener) | Signal to emit when editor content is changed |
doubleClick
|
Signal!(dcanvas.widgets.widget.OnDoubleClickHandler) | On double click event listener (bool delegate(Widget)) |
editorAction
|
Signal!(dcanvas.widgets.editors.EditorActionHandler) | |
editorStateChange
|
Signal!(dcanvas.widgets.editors.EditorStateListener) | Signal to emit when editor cursor position or Insert/Replace mode is changed. |
enterKey
|
Signal!(dcanvas.widgets.editors.EnterKeyHandler) | handle Enter key press inside line editor |
focusChange
|
Signal!(dcanvas.widgets.widget.OnFocusHandler) | focus state change event listener (bool delegate(Widget, bool)) |
keyEvent
|
Signal!(dcanvas.widgets.widget.OnKeyHandler) | key event listener (bool delegate(Widget, KeyEvent)) - return true if event is processed by handler |
keyToAction
|
Listener!(dcanvas.widgets.widget.OnKeyActionHandler) | action by key lookup handler |
modifiedStateChange
|
Signal!(dcanvas.widgets.editors.ModifiedStateListener) | Modified state change listener (e.g. content has been saved, or first time modified after save) |
mouseEvent
|
Signal!(dcanvas.widgets.widget.OnMouseHandler) | mouse event listener (bool delegate(Widget, MouseEvent)) - return true if event is processed by handler |
onAction
|
Signal!(dcanvas.widgets.widget.OnActionHandler) | action handlers |
previousXScrollPos
|
int | To hold scrollpos.x toggling between normal and word wrap mode |
splitChars
|
immutable(dchar[]) | Characters at which content is split for word wrap mode |
_acceleratorMap
|
ActionMap | |
_action
|
Action | |
_camelCasePartsAsWords
|
bool | |
_caretBlingingInterval
|
int | |
_caretBlinkingPhase
|
bool | |
_caretBlinks
|
bool | |
_caretColor
|
uint | |
_caretColorReplace
|
uint | |
_caretPos
|
TextPosition | |
_caretTimerId
|
ulong | |
_checkable
|
bool | |
_checked
|
bool | |
_children
|
ObjectList!(dcanvas.widgets.widget.Widget) | |
_clickable
|
bool | |
_clientRect
|
Rect | inner area, excluding additional controls like scrollbars |
_colorIconBookmark
|
uint | |
_colorIconBreakpoint
|
uint | |
_colorIconError
|
uint | |
_content
|
EditableContent | |
_contentChanged
|
bool | when true, call measureVisibileText on next layout |
_copyCurrentLineWhenNoSelection
|
bool | |
_deselectAllWhenUnfocused
|
bool | |
_fixedFont
|
bool | |
_focusable
|
bool | |
_focusGroup
|
bool | |
_foldingPaneWidth
|
uint | |
_foldingWidth
|
int | |
_fullScrollableArea
|
Rect | |
_hoverMousePosition
|
Point | |
_hoverTextPosition
|
TextPosition | |
_hoverTimeoutMillis
|
long | |
_hoverTimer
|
ulong | |
_hscrollbar
|
ScrollBar | horizontal scrollbar control |
_hscrollbarMode
|
ScrollBarMode | |
_iconsPaneWidth
|
uint | |
_iconsWidth
|
int | |
_id
|
string | widget id |
_insideChangeScrollbarVisibility
|
bool | |
_lastBlinkStartTs
|
long | |
_lastReportedModifiedState
|
bool | |
_leftPaneBackgroundColor
|
uint | |
_leftPaneBackgroundColor2
|
uint | |
_leftPaneBackgroundColor3
|
uint | |
_leftPaneLineNumberBackgroundColor
|
uint | |
_leftPaneLineNumberBackgroundColorCurrentLine
|
uint | |
_leftPaneLineNumberColor
|
uint | |
_leftPaneLineNumberColorCurrentLine
|
uint | |
_leftPaneLineNumberColorEdited
|
uint | |
_leftPaneLineNumberColorSaved
|
uint | |
_leftPaneWidth
|
int | |
_lineHeight
|
int | |
_lineNumbersWidth
|
int | |
_matchingBracketHightlightColor
|
uint | |
_maxFontSize
|
int | |
_measuredHeight
|
int | height measured by measure() |
_measuredText
|
dstring | |
_measuredTextSize
|
Point | |
_measuredTextToSetWidgetSize
|
Point | |
_measuredTextToSetWidgetSizeWidths
|
int[] | |
_measuredTextWidths
|
int[] | |
_measuredWidth
|
int | width measured by measure() |
_minFontSize
|
int | |
_modificationMarksPaneWidth
|
uint | |
_modificationMarksWidth
|
int | |
_needDraw
|
bool | true to force redraw |
_needLayout
|
bool | true to force layout |
_ownContent
|
bool | when ownContent is false, content should not be destroyed in editor destructor |
_ownStyle
|
Style | own copy of style - to override some of style properties, null of no properties overriden |
_parent
|
Widget | parent widget |
_passwordChar
|
dchar | |
_popupMenu
|
MenuItem | |
_pos
|
Rect | current widget position, set by layout() |
_replaceMode
|
bool | |
_scrollPos
|
Point | |
_searchHighlightColorCurrent
|
uint | |
_searchHighlightColorOther
|
uint | |
_selectAllWhenFocusedWithTab
|
bool | |
_selectionColorFocused
|
uint | |
_selectionColorNormal
|
uint | |
_selectionRange
|
TextRange | |
_showFolding
|
bool | |
_showIcons
|
bool | |
_showLineNumbers
|
bool | |
_showModificationMarks
|
bool | |
_showTabPositionMarks
|
bool | |
_spaceWidth
|
int | |
_span
|
LineSpan[] | information about line span into several lines - in word wrap mode |
_spanCache
|
LineSpan[] | |
_state
|
uint | widget state (set of flags from State enum) |
_styleId
|
string | style id to lookup style in theme |
_tabOrder
|
ushort | |
_textToHighlight
|
dstring | |
_textToHighlightOptions
|
uint | |
_textToSetWidgetSize
|
dstring | |
_tooltipText
|
UIString | |
_trackHover
|
bool | does widget need to track mouse Hover |
_visibility
|
Visibility | widget visibility: either Visible, Invisible, Gone |
_visibleScrollableArea
|
Rect | |
_vscrollbar
|
ScrollBar | vertical scrollbar control |
_vscrollbarMode
|
ScrollBarMode | |
_wantTabs
|
bool | |
_window
|
Window | window (to be used for top level widgets only!) |
_wordWrap
|
bool | |
caretHeightOffset
|
int |
Properties
| Name | Type | Description |
|---|---|---|
suggestions[set]
|
dstring[] | Replace the full suggestion list. |
text[set]
|
Widget | Suppress the suggestion popup when text is set programmatically. |
acceleratorMap[get]
|
ActionMap | |
action[get, set]
|
const(Action) | action to emit on click |
alignment[get]
|
ubyte | returns alignment (combined vertical and horizontal) |
alignment[set]
|
Widget | sets alignment (combined vertical and horizontal) |
alpha[get]
|
uint | widget drawing alpha value (0=opaque .. 255=transparent) |
alpha[set]
|
Widget | set widget drawing alpha value (0=opaque .. 255=transparent) |
animating[get]
|
bool | returns true is widget is being animated - need to call animate() and redraw |
backgroundColor[get]
|
uint | returns background color |
backgroundColor[set]
|
Widget | set background color for widget - override one from style |
backgroundColor[set]
|
Widget | set background color for widget - from string like "#5599CC" or "white" |
backgroundDrawable[get, set]
|
Ref!(dcanvas.graphics.resources.Drawable) | background drawable |
backgroundImageId[get, set]
|
string | background image id |
canCheck[get]
|
bool | |
canClick[get]
|
bool | |
canFocus[get]
|
bool | returns true if widget is focusable and visible and enabled |
caretPos[get]
|
TextPosition | returns caret position |
checkable[set]
|
Widget | |
checkable[get]
|
bool | when true, control supports Checked state |
checked[set]
|
Widget | set checked state |
checked[get]
|
bool | get checked state |
childCount[get]
|
int | returns number of children of this widget |
clickable[set]
|
Widget | |
clickable[get]
|
bool | when true, user can click this control, and get onClick listeners called |
clientRect[get]
|
Rect | returns client area rectangle |
content[set]
|
EditWidgetBase | set content object |
content[get]
|
EditableContent | editor content object |
copyCurrentLineWhenNoSelection[get]
|
bool | when true allows copy / cut whole current line if there is no selection |
copyCurrentLineWhenNoSelection[set]
|
EditWidgetBase | |
currentLineRange[get]
|
TextRange | returns range for line with cursor |
enabled[set]
|
Widget | change enabled state |
enabled[get]
|
bool | return true if state has State.Enabled flag set |
focusable[set]
|
Widget | |
focusable[get]
|
bool | whether widget can be focused |
focused[get]
|
bool | |
focusGroup[set]
|
Widget | set focus group flag for container widget |
focusGroup[get]
|
bool | When focus group is set for some parent widget, focus from one of containing widgets can be moved using keyboard only to one of other widgets containing in it and cannot bypass bounds of focusGroup. |
focusGroupFocused[set]
|
Widget | |
focusGroupFocused[get]
|
bool | |
focusRectColors[get]
|
const(uint[]) | returns colors to draw focus rectangle (one for solid, two for vertical gradient) or null if no focus rect should be drawn for style |
font[get]
|
Ref!(dcanvas.graphics.fonts.Font) | returns font set for widget using style or set manually |
fontFace[get]
|
string | returns font face |
fontFace[set]
|
Widget | set font face for widget - override one from style |
fontFamily[get]
|
FontFamily | returns font family |
fontFamily[set]
|
Widget | set font family for widget - override one from style |
fontItalic[get]
|
bool | returns font style (italic/normal) |
fontItalic[set]
|
Widget | set font style (italic/normal) for widget - override one from style |
fontSize[get]
|
int | returns font size in pixels |
fontSize[set]
|
Widget | set font size for widget - override one from style |
fontWeight[get]
|
ushort | returns font weight |
fontWeight[set]
|
Widget | set font weight for widget - override one from style |
halign[get]
|
Align | returns vertical alignment |
hasTooltip[get]
|
bool | returns true if widget has tooltip to show |
height[get]
|
int | returns current height of widget in pixels |
hscrollbar[set]
|
ScrollBar | |
hscrollbar[get]
|
ScrollBar | |
hscrollbarMode[set]
|
ScrollBarMode | |
hscrollbarMode[get]
|
ScrollBarMode | horizontal scrollbar mode |
id[set]
|
Widget | set widget id |
id[get]
|
string | returns widget id, null if not set |
layoutHeight[get]
|
int | returns layout height options (WRAP_CONTENT, FILL_PARENT, some constant value or percent but only for one widget in layout) |
layoutHeight[set]
|
Widget | sets layout height options (WRAP_CONTENT, FILL_PARENT, or some constant value) |
layoutWeight[get]
|
int | returns layout weight (while resizing to fill parent, widget will be resized proportionally to this value) |
layoutWeight[set]
|
Widget | sets layout weight (while resizing to fill parent, widget will be resized proportionally to this value) |
layoutWidth[get]
|
int | returns layout width options (WRAP_CONTENT, FILL_PARENT, some constant value or percent but only for one widget in layout) |
layoutWidth[set]
|
Widget | sets layout width options (WRAP_CONTENT, FILL_PARENT, or some constant value) |
left[get]
|
int | returns widget rectangle left position |
margins[set]
|
Widget | set margins for widget with the same value for left, top, right, bottom - override one from style |
margins[set]
|
Widget | set margins for widget - override one from style |
margins[get]
|
Rect | get margins (between widget bounds and its background) |
maxHeight[get]
|
int | returns max height constraint (SIZE_UNSPECIFIED if no constraint set) |
maxHeight[set]
|
Widget | set max height constraint (SIZE_UNSPECIFIED for no constraint) |
maxWidth[get]
|
int | returns max width constraint (SIZE_UNSPECIFIED if no constraint set) |
maxWidth[set]
|
Widget | set max width constraint (SIZE_UNSPECIFIED for no constraint) |
measuredHeight[get]
|
int | returns measured height (calculated during measure() call) |
measuredWidth[get]
|
int | returns measured width (calculated during measure() call) |
minHeight[get]
|
int | returns min height constraint |
minHeight[set]
|
Widget | set max height constraint (0 for no constraint) |
minWidth[get]
|
int | returns min width constraint |
minWidth[set]
|
Widget | set max width constraint (0 for no constraint) |
needDraw[get]
|
bool | returns true if redraw is required for widget and its children |
needLayout[get]
|
bool | returns true if layout is required for widget and its children |
ownStyle[get]
|
Style | enforces widget's own style - allows override some of style properties |
padding[set]
|
Widget | set padding for widget to the same value for left, top, right, bottom - override one from style |
padding[set]
|
Widget | set padding for widget - override one from style |
padding[get]
|
Rect | get padding (between background bounds and content of widget) |
parent[get]
|
Widget | returns parent widget, null for top level widget |
parent[set]
|
Widget | sets parent for widget |
passwordChar[set]
|
EditLine | |
passwordChar[get]
|
dchar | password character - 0 for normal editor, some character, e.g. '*' to hide text by replacing all characters with this char |
popupMenu[get]
|
MenuItem | |
popupMenu[set]
|
Widget | |
pos[get]
|
Rect | returns widget rectangle |
readOnly[get]
|
bool | readonly flag (when true, user cannot change content of editor) |
readOnly[set]
|
EditWidgetBase | sets readonly flag |
replaceMode[get]
|
bool | replace mode flag (when true, entered character replaces character under cursor) |
replaceMode[set]
|
EditWidgetBase | sets replace mode flag |
resetState[set]
|
Widget | remove state flags (set of flags from State enum) |
selectionRange[get]
|
TextRange | returns current selection range |
selectionRange[set]
|
TextRange | sets current selection range |
setState[set]
|
Widget | add state flags (set of flags from State enum) |
showCaretBlinking[get, set]
|
bool | when true, enables caret blinking, otherwise it's always visible |
showFolding[get, set]
|
bool | when true, show folding controls at the left |
showIcons[get, set]
|
bool | when true, show icons like bookmarks or breakpoints at the left |
showLineNumbers[get, set]
|
bool | when true, line numbers are shown |
showModificationMarks[get, set]
|
bool | when true, show modification marks for lines (whether line is unchanged/modified/modified_saved) |
showTabPositionMarks[get]
|
bool | when true shows mark on tab positions in beginning of line |
showTabPositionMarks[set]
|
EditWidgetBase | |
smartIndents[get]
|
bool | true if smart indents are enabled |
smartIndents[set]
|
EditWidgetBase | set smart indents enabled flag |
smartIndentsAfterPaste[get]
|
bool | true if smart indents are enabled |
smartIndentsAfterPaste[set]
|
EditWidgetBase | set smart indents enabled flag |
state[set]
|
Widget | set new widget state (set of flags from State enum) |
state[get]
|
uint | widget state (set of flags from State enum) |
styleId[set]
|
Widget | set widget style id |
styleId[get]
|
string | returns widget style id, null if not set |
supportsSmartIndents[get]
|
bool | true if smart indents are supported |
tabOrder[set]
|
Widget | |
tabOrder[get]
|
ushort | tab order - hint for focus movement using Tab/Shift+Tab |
tabSize[get]
|
int | returns tab size (in number of spaces) |
tabSize[set]
|
EditWidgetBase | sets tab size (in number of spaces) |
text[get]
|
dstring | get widget text |
text[set]
|
Widget | set text |
textColor[set]
|
Widget | set text color for widget - from string like "#5599CC" or "white" |
textColor[set]
|
Widget | set text color (ARGB 32 bit value) |
textColor[get]
|
uint | get text color (ARGB 32 bit value) |
textFlags[set]
|
Widget | set text flags (bit set of TextFlag enum values) |
textFlags[get]
|
uint | get text flags (bit set of TextFlag enum values) |
textToHighlight[get]
|
dstring | text pattern to highlight - e.g. for search |
textToSetWidgetSize[set]
|
dstring | |
textToSetWidgetSize[get]
|
dstring | |
tooltipText[get, set]
|
dstring | tooltip text - when not empty, widget will show tooltips automatically; for advanced tooltips - override hasTooltip and createTooltip |
top[get]
|
int | returns widget rectangle top position |
trackHover[set]
|
Widget | set new trackHover flag value (when true, widget will change Hover state while mouse is moving) |
trackHover[get]
|
bool | mouse movement processing flag (when true, widget will change Hover state while mouse is moving) |
useSpacesForTabs[set]
|
EditWidgetBase | set new Tab key behavior flag: when true, spaces will be inserted instead of tabs |
useSpacesForTabs[get]
|
bool | when true, spaces will be inserted instead of tabs |
valign[get]
|
Align | returns horizontal alignment |
visibility[set]
|
Widget | sets widget visibility (Visible, Invisible, Gone) |
visibility[get]
|
Visibility | returns widget visibility (Visible, Invisible, Gone) |
visible[get]
|
bool | returns true if this widget and all its parents are visible |
vscrollbar[set]
|
ScrollBar | |
vscrollbar[get]
|
ScrollBar | |
vscrollbarMode[set]
|
ScrollBarMode | |
vscrollbarMode[get]
|
ScrollBarMode | vertical scrollbar mode |
wantsKeyTracking[get]
|
bool | override and return true to track key events even when not focused |
wantTabs[get, set]
|
bool | when true, Tab / Shift+Tab presses are processed internally in widget (e.g. insert tab character) instead of focus change navigation. |
width[get]
|
int | returns current width of widget in pixels |
window[get]
|
Window | returns window (if widget or its parent is attached to window) |
window[set]
|
Window | sets window (to be used for top level widget from Window implementation). TODO: hide it from API? |
wordWrap[get, set]
|
bool | true if word wrap mode is set |
stateStyle[get]
|
const(Style) | returns style for current widget state |
style[get, set]
|
const(Style) | accessor to style - by lookup in theme by styleId (if style id is not set, theme base style will be used). |
Methods
| Name | Description |
|---|---|
onKeyEvent
(event)
|
handle keys |
addChild
(item)
|
adds child, returns added item |
addChildren
(items)
|
adds child, returns added item |
addOnCheckChangeListener
(listener)
|
helper function to add onCheckChangeListener in method chain |
addOnClickListener
(listener)
|
helper function to add onClickListener in method chain |
addOnFocusChangeListener
(listener)
|
helper function to add onFocusChangeListener in method chain |
animate
(interval)
|
animates window; interval is time left from previous draw, in hnsecs (1/10000000 of second) |
applyAlign
(rc, sz)
|
Applies alignment for content of size sz - set rectangle rc to aligned value of content inside of initial value of rc. |
applyMargins
(rc)
|
Helper function: applies margins to rectangle |
applyPadding
(rc)
|
Helper function: applies padding to rectangle |
cancelLayout
()
|
|
cancelTimer
(timerId)
|
cancel timer - pass value returned from setTimer() as timerId parameter |
canShowPopupMenu
(x, y)
|
returns true if widget can show popup (e.g. by mouse right click at point x,y) |
child
(index)
|
returns child by index |
childById
(id, deepSearch)
|
find child of specified type T by id, returns null if not found or cannot be converted to type T |
childIndex
(item)
|
returns index of widget in child list, -1 if passed widget is not a child of this widget |
clearSelection
()
|
clears selection (don't change text, just unselect) |
compareId
(id)
|
compare widget id with specified value, returs true if matches |
createTooltip
(mouseX, mouseY, alignment, x, y)
|
will be called from window once tooltip request timer expired; if null is returned, popup will not be shown; you can change alignment and position of popup here |
dispatchAction
(a)
|
call to dispatch action |
drawFocusRect
(buf, rc)
|
draws focus rectangle, if enabled in styles |
executeInUiThread
(runnable)
|
execute delegate later in UI thread if this widget will be still available (can be used to modify UI from background thread, or just to postpone execution of action) |
explode
(str, splitChars)
|
Divide (and conquer) text into words |
fillHorizontal
()
|
sets layoutWidth=FILL_PARENT |
fillParent
()
|
sets layoutWidth=FILL_PARENT and layoutHeight=FILL_PARENT |
fillVertical
()
|
sets layoutHeight=FILL_PARENT |
findFocusableChild
(defaultOnly)
|
searches children for first focusable item, returns null if not found |
findWrapLine
(textPos)
|
Based on a TextPosition, finds which wrapLine it is on for its current line |
findWrapPoint
(text)
|
Finds good visual wrapping point for string |
focusGroupWidget
()
|
find nearest parent of this widget with focusGroup flag, returns topmost parent if no focusGroup flag set to any of parents. |
fullContentSize
()
|
calculate full content size in pixels |
fullContentSizeWithBorders
()
|
calculate full content size in pixels including widget borders / margins |
getCursorType
(x, y)
|
returns mouse cursor type for widget |
getRangeText
(range)
|
returns text for specified range (joined with LF when span over multiple lines) |
getSelectedText
()
|
returns current selection text (joined with LF when span over multiple lines) |
getSpan
(lineNumber)
|
Returns LineSpan for line based on actual line number |
handleAction
(a)
|
override to handle specific actions |
handleActionStateChanged
()
|
called when state of action assigned on widget is changed |
handleActionStateRequest
(a)
|
override to handle specific actions state (e.g. change enabled state for supported actions) |
handleMoveFocusUsingKeys
(event)
|
|
insertChild
(item, index)
|
inserts child at given index, returns inserted item |
invalidate
()
|
request redraw |
isActionEnabled
(action)
|
override to change popup menu items state |
isAZaz
(ch)
|
|
isChild
(item, deepSearch)
|
returns true if item is child of this widget (when deepSearch == true - returns true if item is this widget or one of children inside children tree). |
isPointInside
(x, y)
|
returns true if point is inside of this widget |
isPointInside
(pt)
|
|
layout
(rc)
|
Set widget rectangle to specified value and layout widget contents. (Step 2 of two phase layout). |
lineSpanIterate
(iterator)
|
Simple way of iterating through span |
makeRectVisible
(rc, alignHorizontally, alignVertically)
|
|
measure
(parentWidth, parentHeight)
|
measure |
measureWrappedText
(text)
|
Calls measureText for word wrap |
minimumVisibleContentSize
()
|
|
onContentChange
(content, operation, rangeBefore, rangeAfter, source)
|
|
onDraw
(buf)
|
draw content |
onEvent
(event)
|
handle custom event |
onHScroll
(event)
|
process horizontal scrollbar event |
onMenuItemAction
(action)
|
|
onMouseEvent
(event)
|
process mouse event; return true if event is processed by widget. |
onPopupMenuItem
(item)
|
|
onScrollEvent
(source, event)
|
handle scroll event |
onThemeChanged
()
|
handle theme change: e.g. reload some themed resources |
onTimer
(id)
|
handle timer; return true to repeat timer event after next interval, false cancel timer |
onVScroll
(event)
|
process vertical scrollbar event |
removeAllChildren
(destroyObj)
|
|
removeChild
(child)
|
removes child, returns removed item |
removeChild
(ID)
|
removes child by ID, returns removed item |
removeChild
(index)
|
removes child, returns removed item |
replaceChild
(newChild, oldChild)
|
replace child with other child |
replaceSelectionText
(newText)
|
|
requestActionsUpdate
(immediateUpdate)
|
set action update request flag, will be cleared after redraw |
requestLayout
()
|
request relayout of widget and its children |
scheduleTooltip
(delay, alignment, x, y)
|
schedule tooltip |
selectAll
()
|
Select whole text |
setBoolProperty
(name, value)
|
set string property value, for ML loaders |
setCaretPos
(line, column, makeVisible, center)
|
change caret position and ensure it is visible |
setDefaultPopupMenu
()
|
sets default popup menu with copy/paste/cut/undo/redo |
setDoubleProperty
(name, value)
|
set double property value, for ML loaders |
setDstringProperty
(name, value)
|
set string property value, for ML loaders |
setFocus
(reason)
|
sets focus to this widget or suitable focusable child, returns previously focused widget |
setIntProperty
(name, value)
|
set int property value, for ML loaders |
setRectProperty
(name, value)
|
set Rect property value, for ML loaders |
setStringListValueListProperty
(propName, values)
|
StringListValue list values |
setStringProperty
(name, value)
|
set string property value, for ML loaders |
setTextToHighlight
(pattern, textToHighlightOptions)
|
set text to highlight -- e.g. for search |
setTimer
(intervalMillis)
|
set new timer to call onTimer() after specified interval (for recurred notifications, return true from onTimer) |
setUIStringListProperty
(propName, values)
|
UIString list values |
setUistringProperty
(name, value)
|
set string property value, for ML loaders |
showPopupMenu
(x, y)
|
shows popup at (x,y) |
updateActionState
(force)
|
call to update state for action (if action is assigned for widget) |
updateActionState
(a, force, allowDefault)
|
ask for update state of some action (unles force=true, checks window flag actionsUpdateRequested), returns true if action state is changed |
updateStateFromAction
(a)
|
apply enabled, visibile and checked state for this widget from action's state |
wordWrapRefresh
()
|
Override for EditBox |
wrapLine
(str, lineNumber)
|
Divides up a string for word wrapping, sets info in span |
wrapsUpTo
(line)
|
Returns number of visible wraps up to a line (not including the first wrapLines themselves) |
applyPasswordChar
(s)
|
|
calcLineWidth
(s)
|
|
cancelHoverTimer
()
|
|
caretRect
()
|
returns cursor rectangle |
checkIfNeededToChangeScrollbarVisibility
()
|
|
checkIfScrollbarsNeeded
(needHScroll, needVScroll)
|
override to determine if scrollbars are needed or not |
clientToTextPos
(pt)
|
|
correctCaretPos
()
|
when cursor position or selection is out of content bounds, fix it to nearest valid position |
drawCaret
(buf)
|
draws caret |
drawClient
(buf)
|
|
drawContent
(buf, fnt, rc)
|
Override to customise what is drawn inside the content area. Called from onDraw after clipping and scroll offset have been set up. |
drawExtendedArea
(buf)
|
|
drawLeftPane
(buf, rc, line)
|
|
drawLeftPaneFolding
(buf, rc, line)
|
|
drawLeftPaneIcon
(buf, rc, icon)
|
|
drawLeftPaneIcons
(buf, rc, line)
|
|
drawLeftPaneLineNumbers
(buf, rc, line)
|
|
drawLeftPaneModificationMarks
(buf, rc, line)
|
|
drawLineBackground
(buf, lineRect, visibleRect)
|
override to custom highlight of line background |
ensureCaretVisible
(center)
|
|
findKeyAction
(keyCode, flags)
|
map key to action |
getLeftPaneIconsPopupMenu
(line)
|
|
handleCheckChange
(checked)
|
override to handle check changes |
handleClick
()
|
|
handleClientRectLayout
(rc)
|
override to support modification of client rect after change, e.g. apply offset |
handleDoubleClick
()
|
|
handleEditorStateChange
()
|
updates editorStateChange with recent position |
handleFocusChange
(focused, receivedFocusFromKeyboard)
|
override to handle focus changes |
handleFontChanged
()
|
override to handle font changes |
handleLeftPaneFoldingMouseClick
(event, rc, line)
|
|
handleLeftPaneIconsMouseClick
(event, rc, line)
|
|
handleLeftPaneLineNumbersMouseClick
(event, rc, line)
|
|
handleLeftPaneModificationMarksMouseClick
(event, rc, line)
|
|
handleLeftPaneMouseClick
(event, rc, line)
|
|
indentLine
(src, back, cursorPos)
|
change line indent |
indentRange
(back)
|
indent / unindent range |
lineCount
()
|
override for multiline editors |
measuredContent
(parentWidth, parentHeight, contentWidth, contentHeight)
|
helper function for implement measure() when widget's content dimensions are known |
measureTextToSetWidgetSize
()
|
|
measureVisibleText
()
|
|
multipleLinesSelected
()
|
returns true if one or more lines selected fully |
onControlClick
()
|
Handle Ctrl + Left mouse click on text |
onHover
(pos)
|
|
onHoverTimeout
(pt, pos)
|
override to handle mouse hover timeout in text |
onLeftPaneMouseClick
(event)
|
|
processSmartIndent
(operation)
|
|
removeRangeText
(range)
|
|
removeSelectionTextIfSelected
()
|
|
selectLineByMouse
(x, y, onSameLineOnly)
|
|
selectWordByMouse
(x, y)
|
|
setWindowFocusedFlag
(flg)
|
|
spaceBefore
(pos)
|
|
spacesForTab
(currentPos)
|
generate string of spaces, to reach next tab position |
startCaretBlinking
()
|
|
stopCaretBlinking
()
|
|
textPosToClient
(p)
|
|
updateCaretPositionByMouse
(x, y, selecting)
|
|
updateFontProps
()
|
|
updateHScrollBar
()
|
update horizontal scrollbar widget position |
updateLeftPaneWidth
()
|
override to add custom items on left panel |
updateMaxLineWidth
()
|
|
updateScrollBars
()
|
update scrollbar positions |
updateSelectionAfterCursorMovement
(oldCaretPos, selecting)
|
|
updateVScrollBar
()
|
update verticat scrollbar widget position |
wordWrapMouseOffset
(x, y)
|
Used instead of using clientToTextPos for mouse input when in word wrap mode |
Aliases
| Name | Description |
|---|---|
text
|
|
~this
|