Tool for laying out displays on Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
396 B

4 years ago
<?php
namespace App;
interface ILayoutDriver
{
public function setOffset(string $output, int $x, int $y): void;
public function getOffset(string $output): array;
public function setDimensions(string $output, int $x, int $y): void;
public function getDimensions(string $output): array;
public function isConnected(string $output): bool;
public function isPrimary(string $output): bool;
}