

This is a global built-in package that provides interfaces for manipulating top level user interface objects, such as
top level windows and panels. Hot key bar event processing also happens through this interface.
Opening windows explicitly using the functions in this interface should be done carefully, in order to preserve the
integrity of the program data base on client instances. Generally, windows should only be opened once shared from the host,
or by using requestNewClientWindow to notify the host of the new window and its data.
Interface

clipboardGetText

function clipboardGetText(
)
Retrieves the current text value on the operating system clipboard.
Return values
(string)
The text from the clipboard
clipboardSetText

function clipboardSetText(
text
)
Sets the text parameter as the text value on the operating system clipboard.
Parameters
text (string)
The text to put on the clipboard
dialogFileOpen

function dialogFileOpen(
multiselect
)
Displays a standard file system dialog for opening files
Parameters
multiselect (boolean)
Defines whether multi-select is enabled for the open file dialog.
Return values
(string (or table))
Returns the file (or files if multi-select enabled) that the user selects.
dialogFileSave

function dialogFileSave(
)
Displays a standard file system dialog for saving files
Return values
(string)
Returns the file that the user selects.
findWindow

function findWindow(
windowclass, datasource
)
Finds a top level window or panel by its windowclass and datasource. If the window is not found, it is not created.
Parameters
windowclass (string)
The windowclass of the window to find
datasource (string)
Return values
(windowinstance)
A
windowinstance to the window, or
nil if the request failed or the window was
not found.
isFullScreen

function isFullScreen(
)
Returns whether Fantasy Grounds is running in full screen (maximized) mode or not.
Return values
(boolean)
Whether Fantasy Grounds is running in full screen mode.
onDesktopClose

handler
function onDesktopClose(
)
The functions registered on this handler will be called just before the virtual table is closed.
onDesktopInit

handler
function onDesktopInit(
)
The functions registered on this handler will be called after the virtual table is initialized.
onHotkeyActivated

handler
function onHotkeyActivated(
dragdata
)
The functions registered on this handler will be called whenever a hot key bar slot is activated. This allows the processing of custom
drag types and context specific special operation.
Parameters
dragdata (dragdata)
The
dragdata object representing the contents of the activated hot key bar slot.
onHotkeyDrop

handler
function onHotkeyDrop(
dragdata
)
The functions registered on this handler will be called whenever an object is dropped on the hot key bar.
Parameters
dragdata (dragdata)
A
dragdata object containing the state of values connected to the mouse cursor as part of a drag and drop operation.
onWindowClosed

handler
function onWindowClosed(
window
)
The functions registered on this handler will be called whenever a top level window is about to be closed.
Parameters
window (windowinstance)
onWindowOpened

handler
function onWindowOpened(
window
)
The functions registered on this handler will be called whenever a new top level window is created.
Parameters
window (windowinstance)
openRadialMenu

function openRadialMenu(
)
Opens the radial menu at the current mouse position. The radial menu is normally activated when right-clicking with the mouse.
openWindow

function openWindow(
windowclass, datasource
)
Creates a top level window by a windowclass and a datasource. If a matching window already exists, it is returned. Otherwise, a new
window is created.
See windowinstance for more information on the parameter values.
Parameters
windowclass (string)
The windowclass of the window to create
datasource (string)
Return values
(windowinstance)
requestNewClientWindow

function requestNewClientWindow(
windowclass, rootnode
)
Because client instances should not create windows with data bound to nonexistant database nodes, they need to ask the host to
create a new data base node to act as the window datasource whenever a new record is required. This function sends a request to
do this to the host asynchronously, with the host responding with an acknowledgement to create a new window instance if successful.
Due to the asynchronous nature of this function, it does not return a reference to the window, returning immediately. If any
further processing is required, other means to process the created window are required.
A new datasource node will be created for the window. The host will create a new unique node under the node passed as the second
parameter, i.e. the datasource node will be a child of the node specified in the root node parameter.
It is possible to create client windows with openWindow. This option should be reserved for special cases and should
not be used under normal circumstances.
Parameters
windowclass (string)
The windowclass of the window to create
rootnode (string)
The name of the parent node used to create the data source, see above and
windowinstance for details
setLighting

function setLighting(
systemcolor, windowcolor, controlcolor, contentcolor
)
This function can be used to change the ambient lighting of the user interface elements. The color change will take place on all
connected clients gradually over a couple of seconds.
All the color components are specified as strings in the form "RRGGBB", where the characters are hexadecimal digits specifying the
red, green and blue color channels in the range 0 .. 255. The colors will be modulated with the pixel values in the bitmaps defining
the interface.
The recommended operation is to only alter the windowcolor parameter, passing the value "FFFFFF" to the other color channels.
Parameters
systemcolor (string)
The color used to render system interface elements
windowcolor (string)
The color used to render window frame interface elements
controlcolor (string)
The color used to render control elements
contentcolor (string)
The color used to render user specified content interface elements. Please note that changing this value may affect
the usability of the respective content.