propresenter7-php-lib/generated/Rv/Data/CornerValues.php
Thorsten Buss 4d10db4f17 Initial public release
PHP 8.4 library and CLI tools to read, modify, and generate ProPresenter 7
files: songs (.pro), playlists (.proplaylist), bundles (.probundle), themes,
and the global library files (Macros, Labels, Groups, ClearGroups, CCLI,
Messages, Timers, Stage, Workspace, Props, TestPatterns, Calendar,
KeyMappings, CommunicationDevices).

Built on the MIT-licensed ProPresenter7-Proto schema by greyshirtguy
(v7.16.2). Includes 18 CLI parsers, comprehensive API docs in doc/,
binary-format specs, and a synthetic 369-test PHPUnit suite covering
RTF extraction, translation slides, ZIP64 repair, round-trip fidelity,
and end-to-end generation.
2026-05-03 22:21:01 +02:00

181 lines
4.4 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: screens.proto
namespace Rv\Data;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.CornerValues</code>
*/
class CornerValues extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_left = 1;</code>
*/
protected $top_left = null;
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_right = 2;</code>
*/
protected $top_right = null;
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_left = 3;</code>
*/
protected $bottom_left = null;
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_right = 4;</code>
*/
protected $bottom_right = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\Graphics\Point $top_left
* @type \Rv\Data\Graphics\Point $top_right
* @type \Rv\Data\Graphics\Point $bottom_left
* @type \Rv\Data\Graphics\Point $bottom_right
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Screens::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_left = 1;</code>
* @return \Rv\Data\Graphics\Point|null
*/
public function getTopLeft()
{
return $this->top_left;
}
public function hasTopLeft()
{
return isset($this->top_left);
}
public function clearTopLeft()
{
unset($this->top_left);
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_left = 1;</code>
* @param \Rv\Data\Graphics\Point $var
* @return $this
*/
public function setTopLeft($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Graphics\Point::class);
$this->top_left = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_right = 2;</code>
* @return \Rv\Data\Graphics\Point|null
*/
public function getTopRight()
{
return $this->top_right;
}
public function hasTopRight()
{
return isset($this->top_right);
}
public function clearTopRight()
{
unset($this->top_right);
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point top_right = 2;</code>
* @param \Rv\Data\Graphics\Point $var
* @return $this
*/
public function setTopRight($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Graphics\Point::class);
$this->top_right = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_left = 3;</code>
* @return \Rv\Data\Graphics\Point|null
*/
public function getBottomLeft()
{
return $this->bottom_left;
}
public function hasBottomLeft()
{
return isset($this->bottom_left);
}
public function clearBottomLeft()
{
unset($this->bottom_left);
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_left = 3;</code>
* @param \Rv\Data\Graphics\Point $var
* @return $this
*/
public function setBottomLeft($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Graphics\Point::class);
$this->bottom_left = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_right = 4;</code>
* @return \Rv\Data\Graphics\Point|null
*/
public function getBottomRight()
{
return $this->bottom_right;
}
public function hasBottomRight()
{
return isset($this->bottom_right);
}
public function clearBottomRight()
{
unset($this->bottom_right);
}
/**
* Generated from protobuf field <code>.rv.data.Graphics.Point bottom_right = 4;</code>
* @param \Rv\Data\Graphics\Point $var
* @return $this
*/
public function setBottomRight($var)
{
GPBUtil::checkMessage($var, \Rv\Data\Graphics\Point::class);
$this->bottom_right = $var;
return $this;
}
}