OSDesktopWindowImpl

class OSDesktopWindowImpl(    val windowId: Long,     val title: String,     val command: String,     val owningProcessId: Long,     val order: Int,     val visible: Boolean) : OSDesktopWindow

OSDesktopWindowImpl Implementation of the OSDesktopWindow interface. Represents a specific desktop window, providing concrete details such as its ID, title, command, owning process ID, order in the stack, and visibility.

Author

N7ghtm4r3

Parameters

windowId

The unique identifier for the window.

title

The title of the window.

command

The command or executable associated with the window.

owningProcessId

The process ID of the application owning the window.

order

The position of the window in the stacking order (e.g., topmost window).

visible

A boolean indicating whether the window is currently visible.

See also

Constructors

Link copied to clipboard
constructor(windowId: Long, title: String, command: String, owningProcessId: Long, order: Int, visible: Boolean)

Properties

Link copied to clipboard
open override val command: String
Link copied to clipboard
open override val order: Int
Link copied to clipboard
open override val owningProcessId: Long
Link copied to clipboard
open override val title: String
Link copied to clipboard
open override val visible: Boolean
Link copied to clipboard
open override val windowId: Long