/*
* MIT License
*
* Copyright (c) 2022 JabDoesThings
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/** @noSelfInFile */
///
///
declare module '@shughesuk/pipewrench' {
export namespace lua.client.ISUI {
/** @customConstructor ISComboBox:new */
export class ISComboBox extends lua.client.ISUI.ISPanel {
[id: string]: any;
static [id: string]: any;
static SharedPopup: any;
backgroundColorMouseOver: any;
baseHeight: any;
disabled: any;
editable: any;
editor: any;
expanded: any;
fade: any;
filterText: any;
font: any;
image: any;
isCombobox: any;
joypadFocused: any;
onChange: any;
onChangeArgs: any;
options: any;
popup: any;
sawMouseDown: any;
selected: any;
target: any;
textColor: any;
tooltip: any;
tooltipUI: any;
constructor(
x: any,
y: any,
width: any,
height: any,
target: any,
onChange: any,
onChangeArg1: any,
onChangeArg2: any
);
addOption: ((option: any) => any) | any;
addOptionWithData: ((option: any, data: any) => any) | any;
clear: (() => any) | any;
contains: ((text: any) => any) | any;
createChildren: (() => any) | any;
find: ((func: any, arg1: any, arg2: any) => any) | any;
forceClick: (() => any) | any;
getFilterText: (() => any) | any;
getOptionData: ((index: any) => any) | any;
getOptionText: ((index: any) => any) | any;
getOptionTooltip: ((index: any) => any) | any;
getSelectedText: (() => any) | any;
hasFilterText: (() => any) | any;
hidePopup: (() => any) | any;
isEditable: (() => any) | any;
onJoypadDirDown: ((joypadData: any) => any) | any;
onJoypadDirUp: ((joypadData: any) => any) | any;
onMouseDownOutside: ((x: any, y: any) => any) | any;
select: ((option: any) => any) | any;
selectData: ((data: any) => any) | any;
setEditable: ((editable: any) => any) | any;
setFilterText: ((text: any) => any) | any;
setJoypadFocused: ((focused: any) => any) | any;
setToolTipMap: ((tooltipmap: any) => any) | any;
setWidthToOptions: ((minWidth: any) => any) | any;
showPopup: (() => any) | any;
}
/** @customConstructor ISComboBoxEditor:new */
export class ISComboBoxEditor extends lua.client.ISUI.ISTextEntryBox {
[id: string]: any;
static [id: string]: any;
parentCombo: any;
constructor(x: any, y: any, width: any, height: any, comboBox: any);
onOtherKey: ((key: any) => any) | any;
}
/** @customConstructor ISComboBoxPopup:new */
export class ISComboBoxPopup extends lua.client.ISUI.ISScrollingListBox {
[id: string]: any;
static [id: string]: any;
parentCombo: any;
tooWide: any;
tooWideY: any;
constructor(x: any, y: any, width: any, height: any);
setComboBox: ((comboBox: any) => any) | any;
}
}
export namespace lua.client.ISUI.ISComboBox { }
}