propresenter7-php-lib/generated/Rv/Data/Preferences/Screens.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

232 lines
6 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: preferences.proto
namespace Rv\Data\Preferences;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.Preferences.Screens</code>
*/
class Screens extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>bool enable_at_launch = 1;</code>
*/
protected $enable_at_launch = false;
/**
* Generated from protobuf field <code>bool show_performance_stats = 2;</code>
*/
protected $show_performance_stats = false;
/**
* Generated from protobuf field <code>bool ignore_background_colors = 3;</code>
*/
protected $ignore_background_colors = false;
/**
* Generated from protobuf field <code>.rv.data.ProClockSource clock_source = 4;</code>
*/
protected $clock_source = null;
/**
* Generated from protobuf field <code>bool show_keynote_and_powerpoint = 5;</code>
*/
protected $show_keynote_and_powerpoint = false;
/**
* Generated from protobuf field <code>bool disable_blackmagic_sync_groups = 6;</code>
*/
protected $disable_blackmagic_sync_groups = false;
/**
* Generated from protobuf field <code>bool use_directx_rendering = 7;</code>
*/
protected $use_directx_rendering = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $enable_at_launch
* @type bool $show_performance_stats
* @type bool $ignore_background_colors
* @type \Rv\Data\ProClockSource $clock_source
* @type bool $show_keynote_and_powerpoint
* @type bool $disable_blackmagic_sync_groups
* @type bool $use_directx_rendering
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Preferences::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>bool enable_at_launch = 1;</code>
* @return bool
*/
public function getEnableAtLaunch()
{
return $this->enable_at_launch;
}
/**
* Generated from protobuf field <code>bool enable_at_launch = 1;</code>
* @param bool $var
* @return $this
*/
public function setEnableAtLaunch($var)
{
GPBUtil::checkBool($var);
$this->enable_at_launch = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool show_performance_stats = 2;</code>
* @return bool
*/
public function getShowPerformanceStats()
{
return $this->show_performance_stats;
}
/**
* Generated from protobuf field <code>bool show_performance_stats = 2;</code>
* @param bool $var
* @return $this
*/
public function setShowPerformanceStats($var)
{
GPBUtil::checkBool($var);
$this->show_performance_stats = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool ignore_background_colors = 3;</code>
* @return bool
*/
public function getIgnoreBackgroundColors()
{
return $this->ignore_background_colors;
}
/**
* Generated from protobuf field <code>bool ignore_background_colors = 3;</code>
* @param bool $var
* @return $this
*/
public function setIgnoreBackgroundColors($var)
{
GPBUtil::checkBool($var);
$this->ignore_background_colors = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.ProClockSource clock_source = 4;</code>
* @return \Rv\Data\ProClockSource|null
*/
public function getClockSource()
{
return $this->clock_source;
}
public function hasClockSource()
{
return isset($this->clock_source);
}
public function clearClockSource()
{
unset($this->clock_source);
}
/**
* Generated from protobuf field <code>.rv.data.ProClockSource clock_source = 4;</code>
* @param \Rv\Data\ProClockSource $var
* @return $this
*/
public function setClockSource($var)
{
GPBUtil::checkMessage($var, \Rv\Data\ProClockSource::class);
$this->clock_source = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool show_keynote_and_powerpoint = 5;</code>
* @return bool
*/
public function getShowKeynoteAndPowerpoint()
{
return $this->show_keynote_and_powerpoint;
}
/**
* Generated from protobuf field <code>bool show_keynote_and_powerpoint = 5;</code>
* @param bool $var
* @return $this
*/
public function setShowKeynoteAndPowerpoint($var)
{
GPBUtil::checkBool($var);
$this->show_keynote_and_powerpoint = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool disable_blackmagic_sync_groups = 6;</code>
* @return bool
*/
public function getDisableBlackmagicSyncGroups()
{
return $this->disable_blackmagic_sync_groups;
}
/**
* Generated from protobuf field <code>bool disable_blackmagic_sync_groups = 6;</code>
* @param bool $var
* @return $this
*/
public function setDisableBlackmagicSyncGroups($var)
{
GPBUtil::checkBool($var);
$this->disable_blackmagic_sync_groups = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool use_directx_rendering = 7;</code>
* @return bool
*/
public function getUseDirectxRendering()
{
return $this->use_directx_rendering;
}
/**
* Generated from protobuf field <code>bool use_directx_rendering = 7;</code>
* @param bool $var
* @return $this
*/
public function setUseDirectxRendering($var)
{
GPBUtil::checkBool($var);
$this->use_directx_rendering = $var;
return $this;
}
}