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.
114 lines
2.5 KiB
PHP
114 lines
2.5 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: testPattern.proto
|
|
|
|
namespace Rv\Data\TestPatternDefinition;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TestPatternDefinition.StringProperty</code>
|
|
*/
|
|
class StringProperty extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
*/
|
|
protected $value = '';
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
*/
|
|
protected $min_chars = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
*/
|
|
protected $max_chars = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $value
|
|
* @type int $min_chars
|
|
* @type int $max_chars
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\TestPattern::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setValue($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->value = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getMinChars()
|
|
{
|
|
return $this->min_chars;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMinChars($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->min_chars = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
* @return int
|
|
*/
|
|
public function getMaxChars()
|
|
{
|
|
return $this->max_chars;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMaxChars($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->max_chars = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|