mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Merge branch 'dev' into feature/basic-project-creator
This commit is contained in:
commit
ae7d69411f
1
.gitignore
vendored
1
.gitignore
vendored
@ -74,3 +74,4 @@ Common/vcpkg/**
|
|||||||
*_qmlcache.qrc
|
*_qmlcache.qrc
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
/Common/vcpkg/
|
/Common/vcpkg/
|
||||||
|
/Docs/html/screemplay.index
|
||||||
|
@ -10,11 +10,36 @@ build:windows:
|
|||||||
- git clean -xdf
|
- git clean -xdf
|
||||||
- git submodule sync --recursive
|
- git submodule sync --recursive
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
|
# Needs MSVC 2017 installed!
|
||||||
|
# Setup vcvars32.bat manually because this is powershell and MS does not have something simmilar for PS. Wtf?
|
||||||
|
# https://gist.github.com/justinian/81a2e55c89e8301a8a96
|
||||||
|
# https://stackoverflow.com/questions/2124753/how-can-i-use-powershell-with-the-visual-studio-command-prompt
|
||||||
|
- $tempFile = [IO.Path]::GetTempFileName()
|
||||||
|
- cmd /c " `"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Auxiliary\Build\vcvars32.bat`" && set > `"$tempFile`" "
|
||||||
|
- Get-Content $tempFile | Foreach-Object {if($_ -match "^(.*?)=(.*)$"){Set-Content "env:\$($matches[1])" $matches[2]}}
|
||||||
|
- Remove-Item $tempFile
|
||||||
|
- $Env:Path += ';C:\Qt\5.14.0\msvc2017_64\bin'
|
||||||
|
- $Env:Path += ';C:\Qt\Tools\QtCreator\bin'
|
||||||
|
- $env:path -split ";"
|
||||||
script:
|
script:
|
||||||
- call vcpkg-install-dependencies.bat
|
- call install-dependencies.bat
|
||||||
- call scripts/build.bat
|
- mkdir BUILD
|
||||||
- call scripts/package.bat
|
- mkdir PACKAGE
|
||||||
|
- cd BUILD
|
||||||
|
- qmake.exe ../ScreenPlay.pro -spec win32-msvc "CONFIG+=release"
|
||||||
|
- jom.exe qmake_all
|
||||||
|
- jom.exe -j8
|
||||||
|
- jom.exe install
|
||||||
|
- xcopy /s /y ScreenPlay\release ..\PACKAGE
|
||||||
|
- xcopy /s /y ScreenPlaySDK\release ..\PACKAGE
|
||||||
|
- xcopy /s /y ScreenPlayWidget\release ..\PACKAGE
|
||||||
|
- xcopy /s /y ScreenPlayWallpaper\release ..\PACKAGE
|
||||||
|
- cd ..
|
||||||
|
- windeployqt.exe --release --qmldir ScreenPlay/qml PACKAGE/ScreenPlay.exe
|
||||||
|
- windeployqt.exe --release --qmldir ScreenPlayWallpaper/qml PACKAGE/ScreenPlayWallpaper.exe
|
||||||
|
- cd PACKAGE
|
||||||
|
- del *.cpp,*.moc,*.h,*.obj,*.res,*.exp,*.lib,*.lik,*.pch
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: '3 weeks'
|
expire_in: '12 weeks'
|
||||||
paths:
|
paths:
|
||||||
- PACKAGE/
|
- PACKAGE/
|
||||||
|
75
Docs/config.qdocconf
Normal file
75
Docs/config.qdocconf
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
# Run:
|
||||||
|
# C:\Qt\5.14.0\msvc2017_64\bin\qdoc.exe config.qdocconf
|
||||||
|
# in this directory. You can shift + right click in this explorer
|
||||||
|
# window and select "Open PowerShell Window here" for this.
|
||||||
|
|
||||||
|
include(C:/Qt/5.14.0/msvc2017_64/doc/global/qt-cpp-defines.qdocconf)
|
||||||
|
include(C:/Qt/5.14.0/msvc2017_64/doc/global/compat.qdocconf)
|
||||||
|
include(C:/Qt/5.14.0/msvc2017_64/doc/global/fileextensions.qdocconf)
|
||||||
|
|
||||||
|
descripton = ScreenPlay is an open source cross plattform app for displaying Wallpaper, Widgets and AppDrawer.
|
||||||
|
language = Cpp
|
||||||
|
project = ScreemPlay
|
||||||
|
|
||||||
|
# Source
|
||||||
|
sourcedirs += ../ScreenPlay/src/
|
||||||
|
sourcedirs += ../ScreenPlay/
|
||||||
|
sourcedirs += ../ScreenPlaySDK/
|
||||||
|
sourcedirs += ../ScreenPlaySysInfo/
|
||||||
|
sourcedirs += ../ScreenPlayWallpaper/src/
|
||||||
|
sourcedirs += ../ScreenPlayWallpaper/
|
||||||
|
sourcedirs += ../ScreenPlayWidget/src/
|
||||||
|
sourcedirs += ../ScreenPlayWidget/
|
||||||
|
|
||||||
|
# Header
|
||||||
|
headerdirs += ../ScreenPlay/src/
|
||||||
|
headerdirs += ../ScreenPlay/
|
||||||
|
headerdirs += ../ScreenPlaySDK/
|
||||||
|
headerdirs += ../ScreenPlaySysInfo/
|
||||||
|
headerdirs += ../ScreenPlayWallpaper/src/
|
||||||
|
headerdirs += ../ScreenPlayWallpaper/
|
||||||
|
headerdirs += ../ScreenPlayWidget/src/
|
||||||
|
headerdirs += ../ScreenPlayWidget/
|
||||||
|
|
||||||
|
# Include
|
||||||
|
includepaths += ../ScreenPlay/src/
|
||||||
|
includepaths += ../ScreenPlay/
|
||||||
|
includepaths += ../ScreenPlaySDK/
|
||||||
|
includepaths += ../ScreenPlaySysInfo/
|
||||||
|
includepaths += ../ScreenPlayWallpaper/src/
|
||||||
|
includepaths += ../ScreenPlayWallpaper/
|
||||||
|
includepaths += ../ScreenPlayWidget/src/
|
||||||
|
includepaths += ../ScreenPlayWidget/
|
||||||
|
|
||||||
|
includepaths += C:/Qt/5.14.0/msvc2017_64/include/
|
||||||
|
includepaths += C:/Qt/5.14.0/msvc2017_64/include/QtCore/
|
||||||
|
|
||||||
|
# Images
|
||||||
|
imagedirs = ./images
|
||||||
|
|
||||||
|
# what kind of sources should be processed
|
||||||
|
sources.fileextensions += "*.qdoc *.cpp *.qml"
|
||||||
|
|
||||||
|
# what kind of headers should be processed
|
||||||
|
headers.fileextensions += "*.h"
|
||||||
|
|
||||||
|
syntaxhightlighting = true
|
||||||
|
sourceencoding = UTF-8
|
||||||
|
outputencoding = UTF-8
|
||||||
|
|
||||||
|
# where to put the result
|
||||||
|
outputdir = ./html
|
||||||
|
# what format to use for generating documentation
|
||||||
|
outputformats = HTML
|
||||||
|
|
||||||
|
# the string that actually includes the CSS into documentation file
|
||||||
|
HTML.headerstyles += "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/style.css\"/>"
|
||||||
|
HTML.headerstyles += "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\"/>\n"
|
||||||
|
|
||||||
|
# what to append to every page after header
|
||||||
|
HTML.postheader += "<div class=\"container-fullwidth nav\"><div class=\"container navWrapper\"><a href=\"../index.html\"><span class=\"logo\">ScreenPlay Generated Docs </span></a><span class=\"navHome\"><a href=\"../index.html\">Home</a></span></div></div>"
|
||||||
|
HTML.postheader += "<div id="mainWrapper" class=\"wrapper container \">\n"
|
||||||
|
# what to append to every page after the content
|
||||||
|
HTML.footer += "<div id="license" class=\"footer center\"><p>This documentation is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\">Creative Commons Attribution 4.0 International License</a>.</p></div>"
|
||||||
|
|
||||||
|
|
7
Docs/css/bootstrap.min.css
vendored
Normal file
7
Docs/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
118
Docs/css/style.css
Normal file
118
Docs/css/style.css
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
body {
|
||||||
|
background-color: #f3f3f4 !important;
|
||||||
|
;
|
||||||
|
}
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #404244;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
font-size: 1.5rem !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
margin-top:3rem !important;
|
||||||
|
border-left: 3px solid orange;
|
||||||
|
padding-left: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color:#41cd52 !important;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: #546E7A;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fn{
|
||||||
|
padding: 15px 0 15px 0;
|
||||||
|
border-bottom: 1px #eee solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.func p {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.func h3 {
|
||||||
|
font-size: 1.2rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-subtitle {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper.container h1:first-of-type {
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
padding-top: -2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#mainWrapper > li:first-of-type {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table td, .table th {
|
||||||
|
padding: .25rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
height: 50px;
|
||||||
|
background:#ffa000;
|
||||||
|
color: white;
|
||||||
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navHome a{
|
||||||
|
color: white !important;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
line-height: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navWrapper {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 2.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navWrapper a span {
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
margin: 1rem;
|
||||||
|
padding: 3rem !important;
|
||||||
|
border-radius: 3px;
|
||||||
|
background-color:white;
|
||||||
|
box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14);
|
||||||
|
}
|
||||||
|
|
||||||
|
.qml {
|
||||||
|
background: #eeeeee;
|
||||||
|
padding: 1rem;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.type {
|
||||||
|
color:#41cd52 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav div a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#license {
|
||||||
|
text-align: center;
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
16
Docs/html/qml-imageselector-members.html
Normal file
16
Docs/html/qml-imageselector-members.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- ImageSelector.qml -->
|
||||||
|
<title>List of All Members for ImageSelector | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for ImageSelector</h1>
|
||||||
|
<p>This is the complete list of members for <a href="qml-imageselector.html">ImageSelector</a>, including inherited members.</p>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
@ -4,13 +4,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<!-- ImageSelector.qml -->
|
<!-- ImageSelector.qml -->
|
||||||
<title>ImageSelector QML Type | Qt </title>
|
<title>ImageSelector QML Type | ScreemPlay</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
<link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container-fullwidth nav"><p class="logo">ScreenPlay Code Docs</p></div>
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
<div class="wrapper container">
|
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
<div class="toc">
|
<div class="toc">
|
||||||
<h3><a name="toc">Contents</a></h3>
|
<h3><a name="toc">Contents</a></h3>
|
||||||
@ -33,13 +31,12 @@
|
|||||||
<a name="details"></a>
|
<a name="details"></a>
|
||||||
<h2 id="details">Detailed Description</h2>
|
<h2 id="details">Detailed Description</h2>
|
||||||
<p>Test</p>
|
<p>Test</p>
|
||||||
<p class="centerAlign"><img src="images/ImageSelectorPreview.png" alt="" /></p><a name="setting-default-text-and-capitalization"></a>
|
<p class="centerAlign"><font color="red">[Missing image ImageSelectorPreview.png]</font></p><a name="setting-default-text-and-capitalization"></a>
|
||||||
<h2 id="setting-default-text-and-capitalization">Setting default text and capitalization</h2>
|
<h2 id="setting-default-text-and-capitalization">Setting default text and capitalization</h2>
|
||||||
<p>Test</p>
|
<p>Test</p>
|
||||||
<pre class="qml"><span class="type"><a href="qml-imageselector.html">ImageSelector</a></span> {
|
<pre class="qml"><span class="type"><a href="qml-imageselector.html">ImageSelector</a></span> {
|
||||||
|
|
||||||
}</pre>
|
}</pre>
|
||||||
<!-- @@@ImageSelector -->
|
<!-- @@@ImageSelector -->
|
||||||
<hr/><p class="footer center">Copyright Aimber GBR</p>
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
</div></body>
|
|
||||||
</html>
|
</html>
|
56
Docs/html/screenplay-app-members.html
Normal file
56
Docs/html/screenplay-app-members.html
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- app.cpp -->
|
||||||
|
<title>List of All Members for App | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>App</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for App</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-app.html">ScreenPlay::App</a>, including inherited members.</p>
|
||||||
|
<div class="table"><table class="propsummary">
|
||||||
|
<tr><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#create-prop">createChanged</a></b></span>(ScreenPlay::Create *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#globalVariables-prop">globalVariablesChanged</a></b></span>(ScreenPlay::GlobalVariables *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListFilter-prop">installedListFilterChanged</a></b></span>(ScreenPlay::InstalledListFilter *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListModel-prop">installedListModelChanged</a></b></span>(ScreenPlay::InstalledListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#mainWindowEngine-prop">mainWindowEngineChanged</a></b></span>(int *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#monitorListModel-prop">monitorListModelChanged</a></b></span>(ScreenPlay::MonitorListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#profileListModel-prop">profileListModelChanged</a></b></span>(ScreenPlay::ProfileListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#screenPlayManager-prop">screenPlayManagerChanged</a></b></span>(ScreenPlay::ScreenPlayManager *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#sdkConnector-prop">sdkConnectorChanged</a></b></span>(ScreenPlay::SDKConnector *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#create-prop">setCreate</a></b></span>(ScreenPlay::Create *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#globalVariables-prop">setGlobalVariables</a></b></span>(ScreenPlay::GlobalVariables *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListFilter-prop">setInstalledListFilter</a></b></span>(ScreenPlay::InstalledListFilter *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListModel-prop">setInstalledListModel</a></b></span>(ScreenPlay::InstalledListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#mainWindowEngine-prop">setMainWindowEngine</a></b></span>(int *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#monitorListModel-prop">setMonitorListModel</a></b></span>(ScreenPlay::MonitorListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#profileListModel-prop">setProfileListModel</a></b></span>(ScreenPlay::ProfileListModel *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#screenPlayManager-prop">setScreenPlayManager</a></b></span>(ScreenPlay::ScreenPlayManager *)</li>
|
||||||
|
</ul></td><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#sdkConnector-prop">setSdkConnector</a></b></span>(ScreenPlay::SDKConnector *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#settings-prop">setSettings</a></b></span>(ScreenPlay::Settings *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#util-prop">setUtil</a></b></span>(ScreenPlay::Util *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#settings-prop">settingsChanged</a></b></span>(ScreenPlay::Settings *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#util-prop">utilChanged</a></b></span>(ScreenPlay::Util *)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#create-prop">create</a></b></span>() const : ScreenPlay::Create *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#globalVariables-prop">globalVariables</a></b></span>() const : ScreenPlay::GlobalVariables *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListFilter-prop">installedListFilter</a></b></span>() const : ScreenPlay::InstalledListFilter *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#installedListModel-prop">installedListModel</a></b></span>() const : ScreenPlay::InstalledListModel *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#mainWindowEngine-prop">mainWindowEngine</a></b></span>() const : int *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#monitorListModel-prop">monitorListModel</a></b></span>() const : ScreenPlay::MonitorListModel *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#profileListModel-prop">profileListModel</a></b></span>() const : ScreenPlay::ProfileListModel *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#screenPlayManager-prop">screenPlayManager</a></b></span>() const : ScreenPlay::ScreenPlayManager *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#sdkConnector-prop">sdkConnector</a></b></span>() const : ScreenPlay::SDKConnector *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#settings-prop">settings</a></b></span>() const : ScreenPlay::Settings *</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-app.html#util-prop">util</a></b></span>() const : ScreenPlay::Util *</li>
|
||||||
|
</ul>
|
||||||
|
</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
87
Docs/html/screenplay-app.html
Normal file
87
Docs/html/screenplay-app.html
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- app.cpp -->
|
||||||
|
<title>App Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>App</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">App Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-app.html">ScreenPlay::App</a>)<br/></span>
|
||||||
|
<!-- $$$App-brief -->
|
||||||
|
<p>The App class contains all members for <a href="screenplay.html">ScreenPlay</a>. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@App -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <App></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-app-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::Create *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#create-prop">create</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::GlobalVariables *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#globalVariables-prop">globalVariables</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::InstalledListFilter *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListFilter-prop">installedListFilter</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::InstalledListModel *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListModel-prop">installedListModel</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> int *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#mainWindowEngine-prop">mainWindowEngine</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::MonitorListModel *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#monitorListModel-prop">monitorListModel</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::ProfileListModel *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#profileListModel-prop">profileListModel</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::ScreenPlayManager *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#screenPlayManager-prop">screenPlayManager</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::SDKConnector *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#sdkConnector-prop">sdkConnector</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::Settings *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#settings-prop">settings</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::Util *</td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#util-prop">util</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#create-prop">setCreate</a></b>(ScreenPlay::Create *<i>create</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#globalVariables-prop">setGlobalVariables</a></b>(ScreenPlay::GlobalVariables *<i>globalVariables</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListFilter-prop">setInstalledListFilter</a></b>(ScreenPlay::InstalledListFilter *<i>installedListFilter</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListModel-prop">setInstalledListModel</a></b>(ScreenPlay::InstalledListModel *<i>installedListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#mainWindowEngine-prop">setMainWindowEngine</a></b>(int *<i>mainWindowEngine</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#monitorListModel-prop">setMonitorListModel</a></b>(ScreenPlay::MonitorListModel *<i>monitorListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#profileListModel-prop">setProfileListModel</a></b>(ScreenPlay::ProfileListModel *<i>profileListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#screenPlayManager-prop">setScreenPlayManager</a></b>(ScreenPlay::ScreenPlayManager *<i>screenPlayManager</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#sdkConnector-prop">setSdkConnector</a></b>(ScreenPlay::SDKConnector *<i>sdkConnector</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#settings-prop">setSettings</a></b>(ScreenPlay::Settings *<i>settings</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#util-prop">setUtil</a></b>(ScreenPlay::Util *<i>util</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#create-prop">createChanged</a></b>(ScreenPlay::Create *<i>create</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#globalVariables-prop">globalVariablesChanged</a></b>(ScreenPlay::GlobalVariables *<i>globalVariables</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListFilter-prop">installedListFilterChanged</a></b>(ScreenPlay::InstalledListFilter *<i>installedListFilter</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#installedListModel-prop">installedListModelChanged</a></b>(ScreenPlay::InstalledListModel *<i>installedListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#mainWindowEngine-prop">mainWindowEngineChanged</a></b>(int *<i>mainWindowEngine</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#monitorListModel-prop">monitorListModelChanged</a></b>(ScreenPlay::MonitorListModel *<i>monitorListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#profileListModel-prop">profileListModelChanged</a></b>(ScreenPlay::ProfileListModel *<i>profileListModel</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#screenPlayManager-prop">screenPlayManagerChanged</a></b>(ScreenPlay::ScreenPlayManager *<i>screenPlayManager</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#sdkConnector-prop">sdkConnectorChanged</a></b>(ScreenPlay::SDKConnector *<i>sdkConnector</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#settings-prop">settingsChanged</a></b>(ScreenPlay::Settings *<i>settings</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html#util-prop">utilChanged</a></b>(ScreenPlay::Util *<i>util</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$App-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
<p>Text</p>
|
||||||
|
</div>
|
||||||
|
<!-- @@@App -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
28
Docs/html/screenplay-create-members.html
Normal file
28
Docs/html/screenplay-create-members.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- create.cpp -->
|
||||||
|
<title>List of All Members for Create | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Create</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for Create</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-create.html">ScreenPlay::Create</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#ffmpegOutput-prop">appendFfmpegOutput</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#ffmpegOutput-prop">ffmpegOutputChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#progress-prop">progressChanged</a></b></span>(float )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#progress-prop">setProgress</a></b></span>(float )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#workingDir-prop">setWorkingDir</a></b></span>(const QString &)</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#workingDir-prop">workingDirChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#ffmpegOutput-prop">ffmpegOutput</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#progress-prop">progress</a></b></span>() const : float</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-create.html#workingDir-prop">workingDir</a></b></span>() const : QString</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
62
Docs/html/screenplay-create.html
Normal file
62
Docs/html/screenplay-create.html
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- create.cpp -->
|
||||||
|
<title>Create Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Create</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">Create Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-create.html">ScreenPlay::Create</a>)<br/></span>
|
||||||
|
<!-- $$$Create-brief -->
|
||||||
|
<p>Baseclass for creating wallapers, widgets and the corresponding wizards. As for this writing (April 2019) it is solely used to import webm wallpaper and create the gif/web 5 second previews. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@Create -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <Create></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-create-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#ffmpegOutput-prop">ffmpegOutput</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> float </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#progress-prop">progress</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#workingDir-prop">workingDir</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#ffmpegOutput-prop">appendFfmpegOutput</a></b>(QString <i>ffmpegOutput</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#progress-prop">setProgress</a></b>(float <i>progress</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#workingDir-prop">setWorkingDir</a></b>(const QString &<i>workingDir</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#ffmpegOutput-prop">ffmpegOutputChanged</a></b>(QString <i>ffmpegOutput</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#progress-prop">progressChanged</a></b>(float <i>progress</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html#workingDir-prop">workingDirChanged</a></b>(QString <i>workingDir</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$Create-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@Create -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
22
Docs/html/screenplay-createimportvideo-members.html
Normal file
22
Docs/html/screenplay-createimportvideo-members.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- createimportvideo.cpp -->
|
||||||
|
<title>List of All Members for CreateImportVideo | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>CreateImportVideo</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for CreateImportVideo</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-createimportvideo.html">ScreenPlay::CreateImportVideo</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-createimportvideo.html#progress-prop">progressChanged</a></b></span>(float )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-createimportvideo.html#progress-prop">setProgress</a></b></span>(float )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-createimportvideo.html#progress-prop">progress</a></b></span>() const : float</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
57
Docs/html/screenplay-createimportvideo.html
Normal file
57
Docs/html/screenplay-createimportvideo.html
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- createimportvideo.cpp -->
|
||||||
|
<title>CreateImportVideo Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>CreateImportVideo</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">CreateImportVideo Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-createimportvideo.html">ScreenPlay::CreateImportVideo</a>)<br/></span>
|
||||||
|
<!-- $$$CreateImportVideo-brief -->
|
||||||
|
<p>This class imports (copies) and creates wallaper previews. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@CreateImportVideo -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <CreateImportVideo></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-createimportvideo-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> float </td><td class="memItemRight bottomAlign"><b><a href="screenplay-createimportvideo.html#progress-prop">progress</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-createimportvideo.html#progress-prop">setProgress</a></b>(float <i>progress</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-createimportvideo.html#progress-prop">progressChanged</a></b>(float <i>progress</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$CreateImportVideo-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
<p>This lass only exsits as long as the user creates a wallpaper and gets destroyed if the creation was successful or not. The state get propagated via createWallpaperStateChanged(ImportVideoState state);</p>
|
||||||
|
</div>
|
||||||
|
<!-- @@@CreateImportVideo -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
37
Docs/html/screenplay-installedlistfilter.html
Normal file
37
Docs/html/screenplay-installedlistfilter.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- installedlistfilter.cpp -->
|
||||||
|
<title>InstalledListFilter Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>InstalledListFilter</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">InstalledListFilter Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-installedlistfilter.html">ScreenPlay::InstalledListFilter</a>)<br/></span>
|
||||||
|
<!-- $$$InstalledListFilter-brief -->
|
||||||
|
<p>Proxy between Installed List Model and QML view to filter items. Maybe this class could be merged with the <a href="screenplay-installedlistmodel.html">InstalledListModel</a>... <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@InstalledListFilter -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <InstalledListFilter></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$InstalledListFilter-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@InstalledListFilter -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
22
Docs/html/screenplay-installedlistmodel-members.html
Normal file
22
Docs/html/screenplay-installedlistmodel-members.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- installedlistmodel.cpp -->
|
||||||
|
<title>List of All Members for InstalledListModel | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>InstalledListModel</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for InstalledListModel</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-installedlistmodel.html">ScreenPlay::InstalledListModel</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-installedlistmodel.html#count-prop">countChanged</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-installedlistmodel.html#count-prop">setCount</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-installedlistmodel.html#count-prop">count</a></b></span>() const : int</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
56
Docs/html/screenplay-installedlistmodel.html
Normal file
56
Docs/html/screenplay-installedlistmodel.html
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- installedlistmodel.cpp -->
|
||||||
|
<title>InstalledListModel Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>InstalledListModel</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">InstalledListModel Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-installedlistmodel.html">ScreenPlay::InstalledListModel</a>)<br/></span>
|
||||||
|
<!-- $$$InstalledListModel-brief -->
|
||||||
|
<p>Lists all installed wallpapers, widgets etc. from a given Path. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@InstalledListModel -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <InstalledListModel></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-installedlistmodel-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="screenplay-installedlistmodel.html#count-prop">count</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-installedlistmodel.html#count-prop">setCount</a></b>(int <i>count</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-installedlistmodel.html#count-prop">countChanged</a></b>(int <i>count</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$InstalledListModel-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@InstalledListModel -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
37
Docs/html/screenplay-monitorlistmodel.html
Normal file
37
Docs/html/screenplay-monitorlistmodel.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- monitorlistmodel.cpp -->
|
||||||
|
<title>MonitorListModel Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>MonitorListModel</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">MonitorListModel Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-monitorlistmodel.html">ScreenPlay::MonitorListModel</a>)<br/></span>
|
||||||
|
<!-- $$$MonitorListModel-brief -->
|
||||||
|
<p>MonitorListModel. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@MonitorListModel -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <MonitorListModel></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$MonitorListModel-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@MonitorListModel -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
37
Docs/html/screenplay-profilelistmodel.html
Normal file
37
Docs/html/screenplay-profilelistmodel.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- profilelistmodel.cpp -->
|
||||||
|
<title>ProfileListModel Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ProfileListModel</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ProfileListModel Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-profilelistmodel.html">ScreenPlay::ProfileListModel</a>)<br/></span>
|
||||||
|
<!-- $$$ProfileListModel-brief -->
|
||||||
|
<p>ProfileListModel. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ProfileListModel -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ProfileListModel></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ProfileListModel-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ProfileListModel -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
37
Docs/html/screenplay-projectsettingslistmodel.html
Normal file
37
Docs/html/screenplay-projectsettingslistmodel.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- projectsettingslistmodel.cpp -->
|
||||||
|
<title>ProjectSettingsListModel Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ProjectSettingsListModel</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ProjectSettingsListModel Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-projectsettingslistmodel.html">ScreenPlay::ProjectSettingsListModel</a>)<br/></span>
|
||||||
|
<!-- $$$ProjectSettingsListModel-brief -->
|
||||||
|
<p>ProjectSettingsListModel. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ProjectSettingsListModel -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ProjectSettingsListModel></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ProjectSettingsListModel-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ProjectSettingsListModel -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
25
Docs/html/screenplay-screenplaymanager-members.html
Normal file
25
Docs/html/screenplay-screenplaymanager-members.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaymanager.cpp -->
|
||||||
|
<title>List of All Members for ScreenPlayManager | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayManager</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for ScreenPlayManager</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-screenplaymanager.html">ScreenPlay::ScreenPlayManager</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">activeWallpaperCounterChanged</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">activeWidgetsCounterChanged</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">setActiveWallpaperCounter</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">setActiveWidgetsCounter</a></b></span>(int )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">activeWallpaperCounter</a></b></span>() const : int</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">activeWidgetsCounter</a></b></span>() const : int</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
59
Docs/html/screenplay-screenplaymanager.html
Normal file
59
Docs/html/screenplay-screenplaymanager.html
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaymanager.cpp -->
|
||||||
|
<title>ScreenPlayManager Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayManager</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ScreenPlayManager Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-screenplaymanager.html">ScreenPlay::ScreenPlayManager</a>)<br/></span>
|
||||||
|
<!-- $$$ScreenPlayManager-brief -->
|
||||||
|
<p>ScreenPlayManager. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayManager -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ScreenPlayManager></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-screenplaymanager-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">activeWallpaperCounter</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">activeWidgetsCounter</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">setActiveWallpaperCounter</a></b>(int <i>activeWallpaperCounter</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">setActiveWidgetsCounter</a></b>(int <i>activeWidgetsCounter</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWallpaperCounter-prop">activeWallpaperCounterChanged</a></b>(int <i>activeWallpaperCounter</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html#activeWidgetsCounter-prop">activeWidgetsCounterChanged</a></b>(int <i>activeWidgetsCounter</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ScreenPlayManager-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ScreenPlayManager -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
47
Docs/html/screenplay-screenplaywallpaper-members.html
Normal file
47
Docs/html/screenplay-screenplaywallpaper-members.html
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaywallpaper.cpp -->
|
||||||
|
<title>List of All Members for ScreenPlayWallpaper | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayWallpaper</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for ScreenPlayWallpaper</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-screenplaywallpaper.html">ScreenPlay::ScreenPlayWallpaper</a>, including inherited members.</p>
|
||||||
|
<div class="table"><table class="propsummary">
|
||||||
|
<tr><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">absolutePathChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">appIDChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#file-prop">fileChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">fillModeChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">previewImageChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">profileJsonObjectChanged</a></b></span>(QJsonObject )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">screenNumberChanged</a></b></span>(QVector<int> )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">setAbsolutePath</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">setAppID</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#file-prop">setFile</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">setFillMode</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">setPreviewImage</a></b></span>(QString )</li>
|
||||||
|
</ul></td><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">setProfileJsonObject</a></b></span>(QJsonObject )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">setScreenNumber</a></b></span>(QVector<int> )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#type-prop">setType</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#type-prop">typeChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">absolutePath</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">appID</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#file-prop">file</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">fillMode</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">previewImage</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">profileJsonObject</a></b></span>() const : QJsonObject</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">screenNumber</a></b></span>() const : QVector<int></li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywallpaper.html#type-prop">type</a></b></span>() const : QString</li>
|
||||||
|
</ul>
|
||||||
|
</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
77
Docs/html/screenplay-screenplaywallpaper.html
Normal file
77
Docs/html/screenplay-screenplaywallpaper.html
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaywallpaper.cpp -->
|
||||||
|
<title>ScreenPlayWallpaper Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayWallpaper</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ScreenPlayWallpaper Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-screenplaywallpaper.html">ScreenPlay::ScreenPlayWallpaper</a>)<br/></span>
|
||||||
|
<!-- $$$ScreenPlayWallpaper-brief -->
|
||||||
|
<p>ScreenPlayWallpaper. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayWallpaper -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ScreenPlayWallpaper></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-screenplaywallpaper-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">absolutePath</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">appID</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#file-prop">file</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">fillMode</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">previewImage</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QJsonObject </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">profileJsonObject</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QVector<int> </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">screenNumber</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#type-prop">type</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">setAbsolutePath</a></b>(QString <i>absolutePath</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">setAppID</a></b>(QString <i>appID</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#file-prop">setFile</a></b>(QString <i>file</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">setFillMode</a></b>(QString <i>fillMode</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">setPreviewImage</a></b>(QString <i>previewImage</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">setProfileJsonObject</a></b>(QJsonObject <i>profileJsonObject</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">setScreenNumber</a></b>(QVector<int> <i>screenNumber</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#type-prop">setType</a></b>(QString <i>type</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#absolutePath-prop">absolutePathChanged</a></b>(QString <i>absolutePath</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#appID-prop">appIDChanged</a></b>(QString <i>appID</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#file-prop">fileChanged</a></b>(QString <i>file</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#fillMode-prop">fillModeChanged</a></b>(QString <i>fillMode</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#previewImage-prop">previewImageChanged</a></b>(QString <i>previewImage</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#profileJsonObject-prop">profileJsonObjectChanged</a></b>(QJsonObject <i>profileJsonObject</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#screenNumber-prop">screenNumberChanged</a></b>(QVector<int> <i>screenNumber</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html#type-prop">typeChanged</a></b>(QString <i>type</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ScreenPlayWallpaper-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ScreenPlayWallpaper -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
31
Docs/html/screenplay-screenplaywidget-members.html
Normal file
31
Docs/html/screenplay-screenplaywidget-members.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaywidget.cpp -->
|
||||||
|
<title>List of All Members for ScreenPlayWidget | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayWidget</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for ScreenPlayWidget</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-screenplaywidget.html">ScreenPlay::ScreenPlayWidget</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#appID-prop">appIDChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#position-prop">positionChanged</a></b></span>(QPoint )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">previewImageChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">projectPathChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#appID-prop">setAppID</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#position-prop">setPosition</a></b></span>(QPoint )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">setPreviewImage</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">setProjectPath</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#appID-prop">appID</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#position-prop">position</a></b></span>() const : QPoint</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">previewImage</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">projectPath</a></b></span>() const : QString</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
65
Docs/html/screenplay-screenplaywidget.html
Normal file
65
Docs/html/screenplay-screenplaywidget.html
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- screenplaywidget.cpp -->
|
||||||
|
<title>ScreenPlayWidget Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>ScreenPlayWidget</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ScreenPlayWidget Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-screenplaywidget.html">ScreenPlay::ScreenPlayWidget</a>)<br/></span>
|
||||||
|
<!-- $$$ScreenPlayWidget-brief -->
|
||||||
|
<p>ScreenPlayWidget. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayWidget -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ScreenPlayWidget></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-screenplaywidget-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#appID-prop">appID</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QPoint </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#position-prop">position</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">previewImage</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">projectPath</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#appID-prop">setAppID</a></b>(QString <i>appID</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#position-prop">setPosition</a></b>(QPoint <i>position</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">setPreviewImage</a></b>(QString <i>previewImage</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">setProjectPath</a></b>(QString <i>projectPath</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#appID-prop">appIDChanged</a></b>(QString <i>appID</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#position-prop">positionChanged</a></b>(QPoint <i>position</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#previewImage-prop">previewImageChanged</a></b>(QString <i>previewImage</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html#projectPath-prop">projectPathChanged</a></b>(QString <i>projectPath</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ScreenPlayWidget-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ScreenPlayWidget -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
37
Docs/html/screenplay-sdkconnector.html
Normal file
37
Docs/html/screenplay-sdkconnector.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- sdkconnector.cpp -->
|
||||||
|
<title>SDKConnector Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>SDKConnector</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">SDKConnector Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-sdkconnector.html">ScreenPlay::SDKConnector</a>)<br/></span>
|
||||||
|
<!-- $$$SDKConnector-brief -->
|
||||||
|
<p>SDKConnector. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@SDKConnector -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <SDKConnector></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$SDKConnector-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@SDKConnector -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
48
Docs/html/screenplay-settings-members.html
Normal file
48
Docs/html/screenplay-settings-members.html
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- settings.cpp -->
|
||||||
|
<title>List of All Members for Settings | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Settings</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for Settings</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-settings.html">ScreenPlay::Settings</a>, including inherited members.</p>
|
||||||
|
<div class="table"><table class="propsummary">
|
||||||
|
<tr><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">anonymousTelemetryChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#autostart-prop">autostartChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#decoder-prop">decoderChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#gitBuildHash-prop">gitBuildHashChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#highPriorityStart-prop">highPriorityStartChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#offlineMode-prop">offlineModeChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">pauseWallpaperWhenIngameChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">setAnonymousTelemetry</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#autostart-prop">setAutostart</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#decoder-prop">setDecoder</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#gitBuildHash-prop">setGitBuildHash</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#highPriorityStart-prop">setHighPriorityStart</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#offlineMode-prop">setOfflineMode</a></b></span>(bool )</li>
|
||||||
|
</ul></td><td class="topAlign"><ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">setPauseWallpaperWhenIngame</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#silentStart-prop">setSilentStart</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#silentStart-prop">silentStartChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">anonymousTelemetry</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#autostart-prop">autostart</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#decoder-prop">decoder</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#gitBuildHash-prop">gitBuildHash</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#highPriorityStart-prop">highPriorityStart</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#offlineMode-prop">offlineMode</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">pauseWallpaperWhenIngame</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#silentStart-prop">silentStart</a></b></span>() const : bool</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-settings.html#version-prop">version</a></b></span>() const : QVersionNumber</li>
|
||||||
|
</ul>
|
||||||
|
</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
79
Docs/html/screenplay-settings.html
Normal file
79
Docs/html/screenplay-settings.html
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- settings.cpp -->
|
||||||
|
<title>Settings Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Settings</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#public-slots">Public Slots</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">Settings Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-settings.html">ScreenPlay::Settings</a>)<br/></span>
|
||||||
|
<!-- $$$Settings-brief -->
|
||||||
|
<p>Used for:. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@Settings -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <Settings></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-settings-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">anonymousTelemetry</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#autostart-prop">autostart</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#decoder-prop">decoder</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#gitBuildHash-prop">gitBuildHash</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#highPriorityStart-prop">highPriorityStart</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#offlineMode-prop">offlineMode</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">pauseWallpaperWhenIngame</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#silentStart-prop">silentStart</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QVersionNumber </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#version-prop">version</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="public-slots"></a>
|
||||||
|
<h2 id="public-slots">Public Slots</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">setAnonymousTelemetry</a></b>(bool <i>anonymousTelemetry</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#autostart-prop">setAutostart</a></b>(bool <i>autostart</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#decoder-prop">setDecoder</a></b>(QString <i>decoder</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#gitBuildHash-prop">setGitBuildHash</a></b>(QString <i>gitBuildHash</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#highPriorityStart-prop">setHighPriorityStart</a></b>(bool <i>highPriorityStart</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#offlineMode-prop">setOfflineMode</a></b>(bool <i>offlineMode</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">setPauseWallpaperWhenIngame</a></b>(bool <i>pauseWallpaperWhenIngame</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#silentStart-prop">setSilentStart</a></b>(bool <i>silentStart</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#anonymousTelemetry-prop">anonymousTelemetryChanged</a></b>(bool <i>anonymousTelemetry</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#autostart-prop">autostartChanged</a></b>(bool <i>autostart</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#decoder-prop">decoderChanged</a></b>(QString <i>decoder</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#gitBuildHash-prop">gitBuildHashChanged</a></b>(QString <i>gitBuildHash</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#highPriorityStart-prop">highPriorityStartChanged</a></b>(bool <i>highPriorityStart</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#offlineMode-prop">offlineModeChanged</a></b>(bool <i>offlineMode</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#pauseWallpaperWhenIngame-prop">pauseWallpaperWhenIngameChanged</a></b>(bool <i>pauseWallpaperWhenIngame</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html#silentStart-prop">silentStartChanged</a></b>(bool <i>silentStart</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$Settings-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
<p><i>User</i> configuration <i>Communication</i> via the SDK Connector</p>
|
||||||
|
</div>
|
||||||
|
<!-- @@@Settings -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
25
Docs/html/screenplay-util-members.html
Normal file
25
Docs/html/screenplay-util-members.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- util.cpp -->
|
||||||
|
<title>List of All Members for Util | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Util</li>
|
||||||
|
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">List of All Members for Util</h1>
|
||||||
|
<p>This is the complete list of members for <a href="screenplay-util.html">ScreenPlay::Util</a>, including inherited members.</p>
|
||||||
|
<ul>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#aquireFFMPEGStatus-prop">aquireFFMPEGStatusChanged</a></b></span>(ScreenPlay::Util::AquireFFMPEGStatus )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#debugMessages-prop">debugMessagesChanged</a></b></span>(QString )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#ffmpegAvailable-prop">ffmpegAvailableChanged</a></b></span>(bool )</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#aquireFFMPEGStatus-prop">aquireFFMPEGStatus</a></b></span>() const : ScreenPlay::Util::AquireFFMPEGStatus</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#debugMessages-prop">debugMessages</a></b></span>() const : QString</li>
|
||||||
|
<li class="fn"><span class="name"><b><a href="screenplay-util.html#ffmpegAvailable-prop">ffmpegAvailable</a></b></span>() const : bool</li>
|
||||||
|
</ul>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
55
Docs/html/screenplay-util.html
Normal file
55
Docs/html/screenplay-util.html
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- util.cpp -->
|
||||||
|
<title>Util Class | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<li>Util</li>
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#public-functions">Public Functions</a></li>
|
||||||
|
<li class="level1"><a href="#signals">Signals</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">Util Class</h1>
|
||||||
|
<span class="small-subtitle">(<a href="screenplay-util.html">ScreenPlay::Util</a>)<br/></span>
|
||||||
|
<!-- $$$Util-brief -->
|
||||||
|
<p>Easy to use global object to use to:. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@Util -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <Util></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
<li><a href="screenplay-util-members.html">List of all members, including inherited members</a></li>
|
||||||
|
</ul>
|
||||||
|
<a name="public-functions"></a>
|
||||||
|
<h2 id="public-functions">Public Functions</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> ScreenPlay::Util::AquireFFMPEGStatus </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#aquireFFMPEGStatus-prop">aquireFFMPEGStatus</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#debugMessages-prop">debugMessages</a></b>() const</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#ffmpegAvailable-prop">ffmpegAvailable</a></b>() const</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="signals"></a>
|
||||||
|
<h2 id="signals">Signals</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#aquireFFMPEGStatus-prop">aquireFFMPEGStatusChanged</a></b>(ScreenPlay::Util::AquireFFMPEGStatus <i>aquireFFMPEGStatus</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#debugMessages-prop">debugMessagesChanged</a></b>(QString <i>debugMessages</i>)</td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html#ffmpegAvailable-prop">ffmpegAvailableChanged</a></b>(bool <i>ffmpegAvailable</i>)</td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$Util-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
<p><i>Navigate</i> the main menu <i>Open</i> Explorer at a given path</p>
|
||||||
|
</div>
|
||||||
|
<!-- @@@Util -->
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
99
Docs/html/screenplay.html
Normal file
99
Docs/html/screenplay.html
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- app.cpp -->
|
||||||
|
<title>ScreenPlay Namespace | ScreemPlay</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav"><div class="container navWrapper"><a href="../index.html"><span class="logo">ScreenPlay Generated Docs </span></a><span class="navHome"><a href="../index.html">Home</a></span></div></div> <div id= mainWrapper class="wrapper container ">
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="toc">
|
||||||
|
<h3><a name="toc">Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li class="level1"><a href="#classes">Classes</a></li>
|
||||||
|
<li class="level1"><a href="#details">Detailed Description</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar-content" id="sidebar-content"></div></div>
|
||||||
|
<h1 class="title">ScreenPlay Namespace</h1>
|
||||||
|
<!-- $$$ScreenPlay-brief -->
|
||||||
|
<p>Namespace for ScreenPlay. <a href="#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlay -->
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <ScreenPlay></span>
|
||||||
|
</td></tr></table></div><ul>
|
||||||
|
</ul>
|
||||||
|
<a name="classes"></a>
|
||||||
|
<h2 id="classes">Classes</h2>
|
||||||
|
<div class="table"><table class="alignedsummary">
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-app.html">App</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-create.html">Create</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-createimportvideo.html">CreateImportVideo</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-installedlistfilter.html">InstalledListFilter</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-installedlistmodel.html">InstalledListModel</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-monitorlistmodel.html">MonitorListModel</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-profilelistmodel.html">ProfileListModel</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-projectsettingslistmodel.html">ProjectSettingsListModel</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-sdkconnector.html">SDKConnector</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaymanager.html">ScreenPlayManager</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywallpaper.html">ScreenPlayWallpaper</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-screenplaywidget.html">ScreenPlayWidget</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-settings.html">Settings</a></b></td></tr>
|
||||||
|
<tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="screenplay-util.html">Util</a></b></td></tr>
|
||||||
|
</table></div>
|
||||||
|
<a name="details"></a>
|
||||||
|
<!-- $$$ScreenPlay-description -->
|
||||||
|
<div class="descr">
|
||||||
|
<h2 id="details">Detailed Description</h2>
|
||||||
|
</div>
|
||||||
|
<!-- @@@ScreenPlay -->
|
||||||
|
<div class="classes">
|
||||||
|
<h2>Classes</h2>
|
||||||
|
<h3> class <a href="screenplay-app.html">App</a></h3><!-- $$$App-brief -->
|
||||||
|
<p>The App class contains all members for <a href="screenplay.html">ScreenPlay</a>. <a href="screenplay-app.html#details">More...</a></p>
|
||||||
|
<!-- @@@App -->
|
||||||
|
<h3> class <a href="screenplay-create.html">Create</a></h3><!-- $$$Create-brief -->
|
||||||
|
<p>Baseclass for creating wallapers, widgets and the corresponding wizards. As for this writing (April 2019) it is solely used to import webm wallpaper and create the gif/web 5 second previews. <a href="screenplay-create.html#details">More...</a></p>
|
||||||
|
<!-- @@@Create -->
|
||||||
|
<h3> class <a href="screenplay-createimportvideo.html">CreateImportVideo</a></h3><!-- $$$CreateImportVideo-brief -->
|
||||||
|
<p>This class imports (copies) and creates wallaper previews. <a href="screenplay-createimportvideo.html#details">More...</a></p>
|
||||||
|
<!-- @@@CreateImportVideo -->
|
||||||
|
<h3> class <a href="screenplay-installedlistfilter.html">InstalledListFilter</a></h3><!-- $$$InstalledListFilter-brief -->
|
||||||
|
<p>Proxy between Installed List Model and QML view to filter items. Maybe this class could be merged with the <a href="screenplay-installedlistmodel.html">InstalledListModel</a>... <a href="screenplay-installedlistfilter.html#details">More...</a></p>
|
||||||
|
<!-- @@@InstalledListFilter -->
|
||||||
|
<h3> class <a href="screenplay-installedlistmodel.html">InstalledListModel</a></h3><!-- $$$InstalledListModel-brief -->
|
||||||
|
<p>Lists all installed wallpapers, widgets etc. from a given Path. <a href="screenplay-installedlistmodel.html#details">More...</a></p>
|
||||||
|
<!-- @@@InstalledListModel -->
|
||||||
|
<h3> class <a href="screenplay-monitorlistmodel.html">MonitorListModel</a></h3><!-- $$$MonitorListModel-brief -->
|
||||||
|
<p>MonitorListModel. <a href="screenplay-monitorlistmodel.html#details">More...</a></p>
|
||||||
|
<!-- @@@MonitorListModel -->
|
||||||
|
<h3> class <a href="screenplay-profilelistmodel.html">ProfileListModel</a></h3><!-- $$$ProfileListModel-brief -->
|
||||||
|
<p>ProfileListModel. <a href="screenplay-profilelistmodel.html#details">More...</a></p>
|
||||||
|
<!-- @@@ProfileListModel -->
|
||||||
|
<h3> class <a href="screenplay-projectsettingslistmodel.html">ProjectSettingsListModel</a></h3><!-- $$$ProjectSettingsListModel-brief -->
|
||||||
|
<p>ProjectSettingsListModel. <a href="screenplay-projectsettingslistmodel.html#details">More...</a></p>
|
||||||
|
<!-- @@@ProjectSettingsListModel -->
|
||||||
|
<h3> class <a href="screenplay-sdkconnector.html">SDKConnector</a></h3><!-- $$$SDKConnector-brief -->
|
||||||
|
<p>SDKConnector. <a href="screenplay-sdkconnector.html#details">More...</a></p>
|
||||||
|
<!-- @@@SDKConnector -->
|
||||||
|
<h3> class <a href="screenplay-screenplaymanager.html">ScreenPlayManager</a></h3><!-- $$$ScreenPlayManager-brief -->
|
||||||
|
<p>ScreenPlayManager. <a href="screenplay-screenplaymanager.html#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayManager -->
|
||||||
|
<h3> class <a href="screenplay-screenplaywallpaper.html">ScreenPlayWallpaper</a></h3><!-- $$$ScreenPlayWallpaper-brief -->
|
||||||
|
<p>ScreenPlayWallpaper. <a href="screenplay-screenplaywallpaper.html#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayWallpaper -->
|
||||||
|
<h3> class <a href="screenplay-screenplaywidget.html">ScreenPlayWidget</a></h3><!-- $$$ScreenPlayWidget-brief -->
|
||||||
|
<p>ScreenPlayWidget. <a href="screenplay-screenplaywidget.html#details">More...</a></p>
|
||||||
|
<!-- @@@ScreenPlayWidget -->
|
||||||
|
<h3> class <a href="screenplay-settings.html">Settings</a></h3><!-- $$$Settings-brief -->
|
||||||
|
<p>Used for:. <a href="screenplay-settings.html#details">More...</a></p>
|
||||||
|
<!-- @@@Settings -->
|
||||||
|
<h3> class <a href="screenplay-util.html">Util</a></h3><!-- $$$Util-brief -->
|
||||||
|
<p>Easy to use global object to use to:. <a href="screenplay-util.html#details">More...</a></p>
|
||||||
|
<!-- @@@Util -->
|
||||||
|
</div>
|
||||||
|
<div id= license class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div></body>
|
||||||
|
</html>
|
63
Docs/index.html
Normal file
63
Docs/index.html
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
|
||||||
|
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<!-- ImageSelector.qml -->
|
||||||
|
<title>ImageSelector QML Type | Qt </title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/style.css"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container-fullwidth nav">
|
||||||
|
<div class="container navWrapper"><span class="logo">ScreenPlay Generated Docs </span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="wrapper container">
|
||||||
|
<h1 class="display-4 text-center">ScreenPlay Documentation</h1>
|
||||||
|
<br>
|
||||||
|
<p class="text-justify">
|
||||||
|
This is the ScreenPlay Code documentation. Every file gets generated via <kbd>qdoc.exe config.qdocconf</kbd>, except this index.html file. You can use boostrap 4 and the style.css for custom styling. To modify the base html layout one has to edit the config.qdocconf.
|
||||||
|
This is only for generated class docs. For regular documentation please use the md files!
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<h2>Getting started</h2>
|
||||||
|
<hr/>
|
||||||
|
<ul>
|
||||||
|
<li><a href="html/screenplay.html">ScreenPlay Namespace</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>C++</h2>
|
||||||
|
<hr/>
|
||||||
|
<ul>
|
||||||
|
<li><a href="html/screenplay-app.html">App</a></li>
|
||||||
|
<li><a href="html/screenplay-settings.html">Settings</a></li>
|
||||||
|
<li><a href="html/screenplay-util.html">Util</a></li>
|
||||||
|
<br>
|
||||||
|
<li><a href="html/screenplay-create.html">Create</a></li>
|
||||||
|
<li><a href="html/screenplay-createimportvideo.html">Createimportvideo</a></li>
|
||||||
|
<br>
|
||||||
|
<li><a href="html/screenplay-installedlistfilter.html">Installedlistfilter</a></li>
|
||||||
|
<li><a href="html/screenplay-installedlistmodel.html">Installedlistmodel</a></li>
|
||||||
|
<li><a href="html/screenplay-monitorlistmodel.html">Monitorlistmodel</a></li>
|
||||||
|
<li><a href="html/screenplay-profilelistmodel.html">Profilelistmodel</a></li>
|
||||||
|
<li><a href="html/screenplay-projectsettingslistmodel.html">Projectsettingslistmodel</a></li>
|
||||||
|
<br>
|
||||||
|
<li><a href="html/screenplay-screenplaymanager.html">ScreenPlayManager</a></li>
|
||||||
|
<li><a href="html/screenplay-screenplaywallpaper.html">ScreenPlayWallpaper</a></li>
|
||||||
|
<li><a href="html/screenplay-screenplaywidget.html">ScreenPlayWidget</a></li>
|
||||||
|
<li><a href="html/screenplay-sdkconnector.html">SdkConnector</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>QML</h2>
|
||||||
|
<hr/>
|
||||||
|
<ul>
|
||||||
|
<li><a href="html/qml-imageselector.html">ImageSelector</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="license" class="footer center"><p>This documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -1,5 +1,21 @@
|
|||||||
#include "app.h"
|
#include "app.h"
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\namespace ScreenPlay
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief Namespace for ScreenPlay.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::App
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief The App class contains all members for ScreenPlay.
|
||||||
|
|
||||||
|
Text
|
||||||
|
*/
|
||||||
|
|
||||||
App::App()
|
App::App()
|
||||||
: QObject(nullptr)
|
: QObject(nullptr)
|
||||||
{
|
{
|
||||||
@ -90,3 +106,4 @@ void App::exit()
|
|||||||
QTimer::singleShot(150, []() { QGuiApplication::instance()->quit(); });
|
QTimer::singleShot(150, []() { QGuiApplication::instance()->quit(); });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@ -28,19 +28,11 @@
|
|||||||
#include "src/settings.h"
|
#include "src/settings.h"
|
||||||
#include "src/util.h"
|
#include "src/util.h"
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
using std::make_unique,
|
using std::make_unique,
|
||||||
std::unique_ptr,
|
std::unique_ptr,
|
||||||
std::make_shared,
|
std::make_shared,
|
||||||
std::shared_ptr,
|
std::shared_ptr;
|
||||||
ScreenPlay::Util,
|
|
||||||
ScreenPlay::InstalledListModel,
|
|
||||||
ScreenPlay::ScreenPlayManager,
|
|
||||||
ScreenPlay::InstalledListFilter,
|
|
||||||
ScreenPlay::MonitorListModel,
|
|
||||||
ScreenPlay::ProfileListModel,
|
|
||||||
ScreenPlay::SDKConnector,
|
|
||||||
ScreenPlay::Settings,
|
|
||||||
ScreenPlay::Create;
|
|
||||||
|
|
||||||
class App : public QObject {
|
class App : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -262,3 +254,4 @@ private:
|
|||||||
shared_ptr<ProfileListModel> m_profileListModel;
|
shared_ptr<ProfileListModel> m_profileListModel;
|
||||||
shared_ptr<InstalledListFilter> m_installedListFilter;
|
shared_ptr<InstalledListFilter> m_installedListFilter;
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
# where your source files are (here it's just the root directory)
|
|
||||||
sourcedirs = ../
|
|
||||||
# where your header files are (probably in the same place as source)
|
|
||||||
headerdirs = ../
|
|
||||||
# where you store images that are used in your qdoc comments
|
|
||||||
imagedirs = ./images
|
|
||||||
|
|
||||||
# what kind of sources should be processed
|
|
||||||
sources.fileextensions = "*.cpp *.qml"
|
|
||||||
# what kind of headers should be processed
|
|
||||||
headers.fileextensions = "*.h"
|
|
||||||
|
|
||||||
# where to put the result
|
|
||||||
outputdir = ./html
|
|
||||||
# what format to use for generating documentation
|
|
||||||
outputformats = HTML
|
|
||||||
|
|
||||||
# the string that actually includes the CSS into documentation file
|
|
||||||
|
|
||||||
HTML.headerstyles += "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/style.css\"/>"
|
|
||||||
HTML.headerstyles += "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\"/>\n"
|
|
||||||
# what to append to every page after header
|
|
||||||
HTML.postheader += "<div class=\"container-fullwidth nav\"><div class=\"container navWrapper\"><span class=\"logo\">ScreenPlay Code Docs </span><span class=\"navHome\"><a href=\"../index.html\">Home</a></span></div></div>"
|
|
||||||
HTML.postheader += "<div class=\"wrapper container\">\n"
|
|
||||||
# what to append to every page after the content
|
|
||||||
HTML.footer = "<hr/><p class=\"footer center\">Copyright Aimber GBR</p>\n</div>"
|
|
7
ScreenPlay/docs/css/bootstrap.min.css
vendored
7
ScreenPlay/docs/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,51 +0,0 @@
|
|||||||
body {
|
|
||||||
|
|
||||||
background-color: #f3f3f4 !important;;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3 {
|
|
||||||
color: #404244;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color:#41cd52 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav {
|
|
||||||
height: 50px;
|
|
||||||
background:#41cd52;
|
|
||||||
color: white;
|
|
||||||
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14);
|
|
||||||
}
|
|
||||||
|
|
||||||
.navHome a{
|
|
||||||
color: white !important;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
line-height: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navWrapper {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
line-height: 2.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wrapper {
|
|
||||||
margin: 1rem;
|
|
||||||
padding: 3rem !important;
|
|
||||||
border-radius: 3px;
|
|
||||||
background-color:white;
|
|
||||||
box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.toc {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
padding-bottom: 4px;
|
|
||||||
}
|
|
@ -1,876 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE QDOCINDEX>
|
|
||||||
<INDEX url="" title="" version="" project="">
|
|
||||||
<namespace name="" status="active" access="public" documented="false">
|
|
||||||
<qmlclass name="main" qml-module-name="main" href="qml-main.html" status="internal" access="private" location="main.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/example/main.qml" lineno="5" title="main" fulltitle="main" subtitle=""/>
|
|
||||||
<qmlclass name="SendSuccessful" qml-module-name="SendSuccessful" href="qml-sendsuccessful.html" status="internal" access="private" location="SendSuccessful.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/SendSuccessful.qml" lineno="6" title="SendSuccessful" fulltitle="SendSuccessful" subtitle="">
|
|
||||||
<qmlproperty name="stomtShortLink" fullname="SendSuccessful::stomtShortLink" href="qml-sendsuccessful.html#stomtShortLink-prop" status="internal" access="private" location="SendSuccessful.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/SendSuccessful.qml" lineno="20" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="StomtWidget" qml-module-name="StomtWidget" href="qml-stomtwidget.html" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="4" title="StomtWidget" fulltitle="StomtWidget" subtitle="">
|
|
||||||
<function name="resetStomt" fullname="StomtWidget::resetStomt" href="qml-stomtwidget.html#resetStomt-method" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="30" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="targetID" fullname="StomtWidget::targetID" href="qml-stomtwidget.html#targetID-prop" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="targetImageUrl" fullname="StomtWidget::targetImageUrl" href="qml-stomtwidget.html#targetImageUrl-prop" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="10" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="appKey" fullname="StomtWidget::appKey" href="qml-stomtwidget.html#appKey-prop" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="8" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="targetDisplayName" fullname="StomtWidget::targetDisplayName" href="qml-stomtwidget.html#targetDisplayName-prop" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="11" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="useTestServer" fullname="StomtWidget::useTestServer" href="qml-stomtwidget.html#useTestServer-prop" status="internal" access="private" location="StomtWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/StomtWidget.qml" lineno="12" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="SubmitBtn" qml-module-name="SubmitBtn" href="qml-submitbtn.html" status="internal" access="private" location="SubmitBtn.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/SubmitBtn.qml" lineno="5" title="SubmitBtn" fulltitle="SubmitBtn" subtitle="">
|
|
||||||
<function name="sendStomt" fullname="SubmitBtn::sendStomt" href="qml-submitbtn.html#sendStomt-signal" status="internal" access="private" location="SubmitBtn.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/SubmitBtn.qml" lineno="14" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="isLoading" fullname="SubmitBtn::isLoading" href="qml-submitbtn.html#isLoading-prop" status="internal" access="private" location="SubmitBtn.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/SubmitBtn.qml" lineno="15" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<class name="CreateImportVideo" href="createimportvideo.html" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="18">
|
|
||||||
<function name="CreateImportVideo" fullname="CreateImportVideo::CreateImportVideo" href="createimportvideo.html#CreateImportVideo" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="22" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="CreateImportVideo(int videoPath, int exportPath, int *parent)">
|
|
||||||
<parameter type="int" name="videoPath" default=""/>
|
|
||||||
<parameter type="int" name="exportPath" default=""/>
|
|
||||||
<parameter type="int *" name="parent" default="nullptr"/>
|
|
||||||
</function>
|
|
||||||
<function name="canceled" fullname="CreateImportVideo::canceled" href="createimportvideo.html#canceled" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="68" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void canceled()"/>
|
|
||||||
<function name="createWallpaperGifPreview" fullname="CreateImportVideo::createWallpaperGifPreview" href="createimportvideo.html#createWallpaperGifPreview" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="76" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool createWallpaperGifPreview()"/>
|
|
||||||
<function name="createWallpaperImagePreview" fullname="CreateImportVideo::createWallpaperImagePreview" href="createimportvideo.html#createWallpaperImagePreview" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="77" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool createWallpaperImagePreview()"/>
|
|
||||||
<function name="createWallpaperInfo" fullname="CreateImportVideo::createWallpaperInfo" href="createimportvideo.html#createWallpaperInfo" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="74" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool createWallpaperInfo()"/>
|
|
||||||
<function name="createWallpaperVideoPreview" fullname="CreateImportVideo::createWallpaperVideoPreview" href="createimportvideo.html#createWallpaperVideoPreview" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="75" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool createWallpaperVideoPreview()"/>
|
|
||||||
<function name="extractWallpaperAudio" fullname="CreateImportVideo::extractWallpaperAudio" href="createimportvideo.html#extractWallpaperAudio" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="78" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool extractWallpaperAudio()"/>
|
|
||||||
<function name="finished" fullname="CreateImportVideo::finished" href="createimportvideo.html#finished" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="67" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void finished()"/>
|
|
||||||
<function name="processOutput" fullname="CreateImportVideo::processOutput" href="createimportvideo.html#processOutput" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="66" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void processOutput(int text)">
|
|
||||||
<parameter type="int" name="text" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="requestInterruption" fullname="CreateImportVideo::requestInterruption" href="createimportvideo.html#requestInterruption" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="72" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestInterruption()"/>
|
|
||||||
<variable name="m_exportPath" fullname="CreateImportVideo::m_exportPath" href="createimportvideo.html#m_exportPath-var" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="60" type="int" static="false"/>
|
|
||||||
<enum name="State" fullname="CreateImportVideo::State" href="createimportvideo.html#State-enum" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="24">
|
|
||||||
<value name="Idle" value="0"/>
|
|
||||||
<value name="Started" value="1"/>
|
|
||||||
<value name="AnalyseVideo" value="2"/>
|
|
||||||
<value name="AnalyseVideoFinished" value="3"/>
|
|
||||||
<value name="AnalyseVideoError" value="4"/>
|
|
||||||
<value name="ConvertingPreviewVideo" value="5"/>
|
|
||||||
<value name="ConvertingPreviewVideoFinished" value="6"/>
|
|
||||||
<value name="ConvertingPreviewVideoError" value="7"/>
|
|
||||||
<value name="ConvertingPreviewGif" value="8"/>
|
|
||||||
<value name="ConvertingPreviewGifFinished" value="9"/>
|
|
||||||
<value name="ConvertingPreviewGifError" value="10"/>
|
|
||||||
<value name="ConvertingPreviewImage" value="11"/>
|
|
||||||
<value name="ConvertingPreviewImageFinished" value="12"/>
|
|
||||||
<value name="ConvertingPreviewImageError" value="13"/>
|
|
||||||
<value name="ConvertingAudio" value="14"/>
|
|
||||||
<value name="ConvertingAudioFinished" value="15"/>
|
|
||||||
<value name="ConvertingAudioError" value="16"/>
|
|
||||||
<value name="CopyFiles" value="17"/>
|
|
||||||
<value name="CopyFilesFinished" value="18"/>
|
|
||||||
<value name="CopyFilesError" value="19"/>
|
|
||||||
<value name="CreateProjectFile" value="20"/>
|
|
||||||
<value name="CreateProjectFileFinished" value="21"/>
|
|
||||||
<value name="CreateProjectFileError" value="22"/>
|
|
||||||
<value name="AbortCleanupError" value="23"/>
|
|
||||||
<value name="CreateTmpFolderError" value="24"/>
|
|
||||||
<value name="Finished" value="25"/>
|
|
||||||
</enum>
|
|
||||||
<variable name="m_framerate" fullname="CreateImportVideo::m_framerate" href="createimportvideo.html#m_framerate-var" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="62" type="int" static="false"/>
|
|
||||||
<variable name="m_length" fullname="CreateImportVideo::m_length" href="createimportvideo.html#m_length-var" status="internal" access="private" location="createimportvideo.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/createimportvideo.h" lineno="61" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="WishLikeSwitcher" qml-module-name="WishLikeSwitcher" href="qml-wishlikeswitcher.html" status="internal" access="private" location="WishLikeSwitcher.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/WishLikeSwitcher.qml" lineno="3" title="WishLikeSwitcher" fulltitle="WishLikeSwitcher" subtitle="">
|
|
||||||
<qmlproperty name="isPositive" fullname="WishLikeSwitcher::isPositive" href="qml-wishlikeswitcher.html#isPositive-prop" status="internal" access="private" location="WishLikeSwitcher.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/WishLikeSwitcher.qml" lineno="8" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Community" qml-module-name="Community" href="qml-community.html" status="internal" access="private" location="Community.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Community/Community.qml" lineno="9" title="Community" fulltitle="Community" subtitle=""/>
|
|
||||||
<class name="StomtPlugin" href="stomtplugin.html" status="internal" access="private" location="stomt_plugin.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt_plugin.h" lineno="6">
|
|
||||||
<function name="Q_PLUGIN_METADATA" fullname="StomtPlugin::Q_PLUGIN_METADATA" href="stomtplugin.html#Q_PLUGIN_METADATA" status="internal" access="private" location="stomt_plugin.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt_plugin.h" lineno="9" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PLUGIN_METADATA(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="Feedback" qml-module-name="Feedback" href="qml-feedback.html" status="internal" access="private" location="Feedback.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Community/Feedback.qml" lineno="4" title="Feedback" fulltitle="Feedback" subtitle=""/>
|
|
||||||
<qmlclass name="Slider" qml-module-name="Slider" href="qml-slider.html" status="internal" access="private" location="Slider.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/Slider.qml" lineno="4" title="Slider" fulltitle="Slider" subtitle="">
|
|
||||||
<qmlproperty name="headline" fullname="Slider::headline" href="qml-slider.html#headline-prop" status="internal" access="private" location="Slider.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/Slider.qml" lineno="13" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="iconSource" fullname="Slider::iconSource" href="qml-slider.html#iconSource-prop" status="internal" access="private" location="Slider.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/Slider.qml" lineno="14" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="value" fullname="Slider::value" href="qml-slider.html#value-prop" status="internal" access="private" location="Slider.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/Slider.qml" lineno="15" type="alias" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Tag" qml-module-name="Tag" href="qml-tag.html" status="internal" access="private" location="Tag.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/Tag.qml" lineno="3" title="Tag" fulltitle="Tag" subtitle=""/>
|
|
||||||
<qmlclass name="TagField" qml-module-name="TagField" href="qml-tagfield.html" status="internal" access="private" location="TagField.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Controls/TagField.qml" lineno="3" title="TagField" fulltitle="TagField" subtitle=""/>
|
|
||||||
<qmlclass name="XMLNewsfeed" qml-module-name="XMLNewsfeed" href="qml-xmlnewsfeed.html" status="internal" access="private" location="XMLNewsfeed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Community/XMLNewsfeed.qml" lineno="8" title="XMLNewsfeed" fulltitle="XMLNewsfeed" subtitle=""/>
|
|
||||||
<class name="Stomt" href="stomt.html" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="19">
|
|
||||||
<function name="Q_DISABLE_COPY" fullname="Stomt::Q_DISABLE_COPY" href="stomt.html#Q_DISABLE_COPY" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="21" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_DISABLE_COPY(Stomt )">
|
|
||||||
<parameter type="Stomt" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="Q_PROPERTY" fullname="Stomt::Q_PROPERTY" href="stomt.html#Q_PROPERTY" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="27" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="appIDChanged" fullname="Stomt::appIDChanged" href="stomt.html#appIDChanged" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="51" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void appIDChanged(int appID)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="getTargetID" fullname="Stomt::getTargetID" href="stomt.html#getTargetID" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="59" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int getTargetID()"/>
|
|
||||||
<function name="sendStomt" fullname="Stomt::sendStomt" href="stomt.html#sendStomt" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="57" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void sendStomt(int text, bool isPositive)">
|
|
||||||
<parameter type="int" name="text" default=""/>
|
|
||||||
<parameter type="bool" name="isPositive" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="sendStomtResponse" fullname="Stomt::sendStomtResponse" href="stomt.html#sendStomtResponse" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="58" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void sendStomtResponse(int *reply)">
|
|
||||||
<parameter type="int *" name="reply" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setAppID" fullname="Stomt::setAppID" href="stomt.html#setAppID" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="73" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setAppID(int appID)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setTargetID" fullname="Stomt::setTargetID" href="stomt.html#setTargetID" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="62" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setTargetID(int targetID)">
|
|
||||||
<parameter type="int" name="targetID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setUseTestServer" fullname="Stomt::setUseTestServer" href="stomt.html#setUseTestServer" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="89" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setUseTestServer(bool useTestServer)">
|
|
||||||
<parameter type="bool" name="useTestServer" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setup" fullname="Stomt::setup" href="stomt.html#setup" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="83" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setup()"/>
|
|
||||||
<function name="targetIDChanged" fullname="Stomt::targetIDChanged" href="stomt.html#targetIDChanged" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="50" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void targetIDChanged(int targetID)">
|
|
||||||
<parameter type="int" name="targetID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="useTestServerChanged" fullname="Stomt::useTestServerChanged" href="stomt.html#useTestServerChanged" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="52" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void useTestServerChanged(bool useTestServer)">
|
|
||||||
<parameter type="bool" name="useTestServer" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="~Stomt" fullname="Stomt::~Stomt" href="stomt.html#dtor.Stomt" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="25" meta="destructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="~Stomt()"/>
|
|
||||||
<variable name="m_targetID" fullname="Stomt::m_targetID" href="stomt.html#m_targetID-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="106" type="int" static="false"/>
|
|
||||||
<variable name="m_appIDSet" fullname="Stomt::m_appIDSet" href="stomt.html#m_appIDSet-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="107" type="bool" static="false"/>
|
|
||||||
<variable name="m_useTestServer" fullname="Stomt::m_useTestServer" href="stomt.html#m_useTestServer-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="109" type="bool" static="false"/>
|
|
||||||
<variable name="m_targetIDSet" fullname="Stomt::m_targetIDSet" href="stomt.html#m_targetIDSet-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="108" type="bool" static="false"/>
|
|
||||||
<variable name="m_appID" fullname="Stomt::m_appID" href="stomt.html#m_appID-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="106" type="int" static="false"/>
|
|
||||||
<variable name="m_netManager" fullname="Stomt::m_netManager" href="stomt.html#m_netManager-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="101" type="int *" static="false"/>
|
|
||||||
<variable name="m_accessToken" fullname="Stomt::m_accessToken" href="stomt.html#m_accessToken-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="106" type="int" static="false"/>
|
|
||||||
<variable name="m_netRequest" fullname="Stomt::m_netRequest" href="stomt.html#m_netRequest-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="102" type="int" static="false"/>
|
|
||||||
<variable name="m_profileImageUrl" fullname="Stomt::m_profileImageUrl" href="stomt.html#m_profileImageUrl-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="105" type="int" static="false"/>
|
|
||||||
<variable name="m_baseUrlStomt" fullname="Stomt::m_baseUrlStomt" href="stomt.html#m_baseUrlStomt-var" status="internal" access="private" location="stomt.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/stomt.h" lineno="104" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="SettingsExpander" qml-module-name="SettingsExpander" href="qml-settingsexpander.html" status="internal" access="private" location="SettingsExpander.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsExpander.qml" lineno="6" title="SettingsExpander" fulltitle="SettingsExpander" subtitle="">
|
|
||||||
<function name="toggle" fullname="SettingsExpander::toggle" href="qml-settingsexpander.html#toggle-method" status="internal" access="private" location="SettingsExpander.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsExpander.qml" lineno="38" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="text" fullname="SettingsExpander::text" href="qml-settingsexpander.html#text-prop" status="internal" access="private" location="SettingsExpander.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsExpander.qml" lineno="11" type="alias" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Settings" qml-module-name="Settings" href="qml-settings.html" status="internal" access="private" location="Settings.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/Settings.qml" lineno="8" title="Settings" fulltitle="Settings" subtitle=""/>
|
|
||||||
<qmlclass name="SettingBool" qml-module-name="SettingBool" href="qml-settingbool.html" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="5" title="SettingBool" fulltitle="SettingBool" subtitle="">
|
|
||||||
<function name="checkboxChanged" fullname="SettingBool::checkboxChanged" href="qml-settingbool.html#checkboxChanged-signal" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="20" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="isChecked" fullname="SettingBool::isChecked" href="qml-settingbool.html#isChecked-prop" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="9" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="headline" fullname="SettingBool::headline" href="qml-settingbool.html#headline-prop" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="7" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="description" fullname="SettingBool::description" href="qml-settingbool.html#description-prop" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="8" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="available" fullname="SettingBool::available" href="qml-settingbool.html#available-prop" status="internal" access="private" location="SettingBool.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingBool.qml" lineno="10" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Screen" qml-module-name="Screen" href="qml-screen.html" status="internal" access="private" location="Screen.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Screen/Screen.qml" lineno="7" title="Screen" fulltitle="Screen" subtitle=""/>
|
|
||||||
<qmlclass name="NavigationWallpaperConfiguration" qml-module-name="NavigationWallpaperConfiguration" href="qml-navigationwallpaperconfiguration.html" status="internal" access="private" location="NavigationWallpaperConfiguration.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationWallpaperConfiguration.qml" lineno="5" title="NavigationWallpaperConfiguration" fulltitle="NavigationWallpaperConfiguration" subtitle=""/>
|
|
||||||
<qmlclass name="Window" qml-module-name="Window" href="qml-window.html" status="internal" access="private" location="Window.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Widgets/Window.qml" lineno="7" title="Window" fulltitle="Window" subtitle=""/>
|
|
||||||
<qmlclass name="SettingsHorizontalSeperator" qml-module-name="SettingsHorizontalSeperator" href="qml-settingshorizontalseperator.html" status="internal" access="private" location="SettingsHorizontalSeperator.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHorizontalSeperator.qml" lineno="3" title="SettingsHorizontalSeperator" fulltitle="SettingsHorizontalSeperator" subtitle="">
|
|
||||||
<qmlproperty name="customWidth" fullname="SettingsHorizontalSeperator::customWidth" href="qml-settingshorizontalseperator.html#customWidth-prop" status="internal" access="private" location="SettingsHorizontalSeperator.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHorizontalSeperator.qml" lineno="4" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="customColor" fullname="SettingsHorizontalSeperator::customColor" href="qml-settingshorizontalseperator.html#customColor-prop" status="internal" access="private" location="SettingsHorizontalSeperator.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHorizontalSeperator.qml" lineno="6" type="color" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="customHeight" fullname="SettingsHorizontalSeperator::customHeight" href="qml-settingshorizontalseperator.html#customHeight-prop" status="internal" access="private" location="SettingsHorizontalSeperator.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHorizontalSeperator.qml" lineno="5" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="customMargin" fullname="SettingsHorizontalSeperator::customMargin" href="qml-settingshorizontalseperator.html#customMargin-prop" status="internal" access="private" location="SettingsHorizontalSeperator.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHorizontalSeperator.qml" lineno="7" type="real" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="SettingsComboBox" qml-module-name="SettingsComboBox" href="qml-settingscombobox.html" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="5" title="SettingsComboBox" fulltitle="SettingsComboBox" subtitle="">
|
|
||||||
<function name="checkboxChanged" fullname="SettingsComboBox::checkboxChanged" href="qml-settingscombobox.html#checkboxChanged-signal" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="18" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="headline" fullname="SettingsComboBox::headline" href="qml-settingscombobox.html#headline-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="7" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="comboBoxListModel" fullname="SettingsComboBox::comboBoxListModel" href="qml-settingscombobox.html#comboBoxListModel-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="12" type="ListModel" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isChecked" fullname="SettingsComboBox::isChecked" href="qml-settingscombobox.html#isChecked-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="10" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="description" fullname="SettingsComboBox::description" href="qml-settingscombobox.html#description-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="8" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="currentIndex" fullname="SettingsComboBox::currentIndex" href="qml-settingscombobox.html#currentIndex-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="9" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="enabled" fullname="SettingsComboBox::enabled" href="qml-settingscombobox.html#enabled-prop" status="internal" access="private" location="SettingsComboBox.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsComboBox.qml" lineno="11" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Workshop" qml-module-name="Workshop" href="qml-workshop.html" status="internal" access="private" location="Workshop.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Workshop/Workshop.qml" lineno="7" title="Workshop" fulltitle="Workshop" subtitle=""/>
|
|
||||||
<qmlclass name="WorkshopAvailableTest" qml-module-name="WorkshopAvailableTest" href="qml-workshopavailabletest.html" status="internal" access="private" location="WorkshopAvailableTest.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Workshop/WorkshopAvailableTest.qml" lineno="4" title="WorkshopAvailableTest" fulltitle="WorkshopAvailableTest" subtitle=""/>
|
|
||||||
<qmlclass name="WorkshopLoader" qml-module-name="WorkshopLoader" href="qml-workshoploader.html" status="internal" access="private" location="WorkshopLoader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Workshop/WorkshopLoader.qml" lineno="3" title="WorkshopLoader" fulltitle="WorkshopLoader" subtitle="">
|
|
||||||
<qmlproperty name="available" fullname="WorkshopLoader::available" href="qml-workshoploader.html#available-prop" status="internal" access="private" location="WorkshopLoader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Workshop/WorkshopLoader.qml" lineno="6" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="SettingsButton" qml-module-name="SettingsButton" href="qml-settingsbutton.html" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="6" title="SettingsButton" fulltitle="SettingsButton" subtitle="">
|
|
||||||
<function name="buttonPressed" fullname="SettingsButton::buttonPressed" href="qml-settingsbutton.html#buttonPressed-signal" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="25" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="buttonText" fullname="SettingsButton::buttonText" href="qml-settingsbutton.html#buttonText-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="11" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="headline" fullname="SettingsButton::headline" href="qml-settingsbutton.html#headline-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="available" fullname="SettingsButton::available" href="qml-settingsbutton.html#available-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="14" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="description" fullname="SettingsButton::description" href="qml-settingsbutton.html#description-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="10" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="enabled" fullname="SettingsButton::enabled" href="qml-settingsbutton.html#enabled-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="13" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isChecked" fullname="SettingsButton::isChecked" href="qml-settingsbutton.html#isChecked-prop" status="internal" access="private" location="SettingsButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsButton.qml" lineno="12" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="SettingsHeader" qml-module-name="SettingsHeader" href="qml-settingsheader.html" status="internal" access="private" location="SettingsHeader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHeader.qml" lineno="4" title="SettingsHeader" fulltitle="SettingsHeader" subtitle="">
|
|
||||||
<qmlproperty name="background" fullname="SettingsHeader::background" href="qml-settingsheader.html#background-prop" status="internal" access="private" location="SettingsHeader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHeader.qml" lineno="8" type="color" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="image" fullname="SettingsHeader::image" href="qml-settingsheader.html#image-prop" status="internal" access="private" location="SettingsHeader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHeader.qml" lineno="10" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="text" fullname="SettingsHeader::text" href="qml-settingsheader.html#text-prop" status="internal" access="private" location="SettingsHeader.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Settings/SettingsHeader.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="NavigationItem" qml-module-name="NavigationItem" href="qml-navigationitem.html" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="4" title="NavigationItem" fulltitle="NavigationItem" subtitle="">
|
|
||||||
<function name="pageClicked" fullname="NavigationItem::pageClicked" href="qml-navigationitem.html#pageClicked-signal" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="28" meta="qmlsignal"/>
|
|
||||||
<function name="setActive" fullname="NavigationItem::setActive" href="qml-navigationitem.html#setActive-method" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="30" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="enabled" fullname="NavigationItem::enabled" href="qml-navigationitem.html#enabled-prop" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="12" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="iconSource" fullname="NavigationItem::iconSource" href="qml-navigationitem.html#iconSource-prop" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="26" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="name" fullname="NavigationItem::name" href="qml-navigationitem.html#name-prop" status="internal" access="private" location="NavigationItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/NavigationItem.qml" lineno="11" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Target" qml-module-name="Target" href="qml-target.html" status="internal" access="private" location="Target.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/Target.qml" lineno="4" title="Target" fulltitle="Target" subtitle="">
|
|
||||||
<qmlproperty name="useTestServer" fullname="Target::useTestServer" href="qml-target.html#useTestServer-prop" status="internal" access="private" location="Target.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/Target.qml" lineno="10" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="targetDisplayName" fullname="Target::targetDisplayName" href="qml-target.html#targetDisplayName-prop" status="internal" access="private" location="Target.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/Target.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="targetImageUrl" fullname="Target::targetImageUrl" href="qml-target.html#targetImageUrl-prop" status="internal" access="private" location="Target.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/ThirdParty/stomt-qt-sdk/sdk/qml/Target.qml" lineno="8" type="url" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWallpaperResult" qml-module-name="CreateWallpaperResult" href="qml-createwallpaperresult.html" status="internal" access="private" location="CreateWallpaperResult.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperResult.qml" lineno="9" title="CreateWallpaperResult" fulltitle="CreateWallpaperResult" subtitle=""/>
|
|
||||||
<qmlclass name="FileDropperSingleFile" qml-module-name="FileDropperSingleFile" href="qml-filedroppersinglefile.html" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="4" title="FileDropperSingleFile" fulltitle="FileDropperSingleFile" subtitle="">
|
|
||||||
<function name="reset" fullname="FileDropperSingleFile::reset" href="qml-filedroppersinglefile.html#reset-method" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="21" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="background" fullname="FileDropperSingleFile::background" href="qml-filedroppersinglefile.html#background-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="7" type="color" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="descriptionTitle" fullname="FileDropperSingleFile::descriptionTitle" href="qml-filedroppersinglefile.html#descriptionTitle-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="8" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="imagePath" fullname="FileDropperSingleFile::imagePath" href="qml-filedroppersinglefile.html#imagePath-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="9" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isVideo" fullname="FileDropperSingleFile::isVideo" href="qml-filedroppersinglefile.html#isVideo-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="11" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="externalFilePath" fullname="FileDropperSingleFile::externalFilePath" href="qml-filedroppersinglefile.html#externalFilePath-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="12" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="helpText" fullname="FileDropperSingleFile::helpText" href="qml-filedroppersinglefile.html#helpText-prop" status="internal" access="private" location="FileDropperSingleFile.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropperSingleFile.qml" lineno="13" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="ScreenPlayItem" qml-module-name="ScreenPlayItem" href="qml-screenplayitem.html" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="6" title="ScreenPlayItem" fulltitle="ScreenPlayItem" subtitle="">
|
|
||||||
<function name="itemClicked" fullname="ScreenPlayItem::itemClicked" href="qml-screenplayitem.html#itemClicked-signal" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="20" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="itemIndex" fullname="ScreenPlayItem::itemIndex" href="qml-screenplayitem.html#itemIndex-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="18" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="screenId" fullname="ScreenPlayItem::screenId" href="qml-screenplayitem.html#screenId-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="19" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="customTitle" fullname="ScreenPlayItem::customTitle" href="qml-screenplayitem.html#customTitle-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="13" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="absoluteStoragePath" fullname="ScreenPlayItem::absoluteStoragePath" href="qml-screenplayitem.html#absoluteStoragePath-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="14" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="workshopID" fullname="ScreenPlayItem::workshopID" href="qml-screenplayitem.html#workshopID-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="17" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="hasMenuOpen" fullname="ScreenPlayItem::hasMenuOpen" href="qml-screenplayitem.html#hasMenuOpen-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="16" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="type" fullname="ScreenPlayItem::type" href="qml-screenplayitem.html#type-prop" status="internal" access="private" location="ScreenPlayItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItem.qml" lineno="15" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWidgetButton" qml-module-name="CreateWidgetButton" href="qml-createwidgetbutton.html" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="4" title="CreateWidgetButton" fulltitle="CreateWidgetButton" subtitle="">
|
|
||||||
<function name="clicked" fullname="CreateWidgetButton::clicked" href="qml-createwidgetbutton.html#clicked-signal" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="17" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="imgSource" fullname="CreateWidgetButton::imgSource" href="qml-createwidgetbutton.html#imgSource-prop" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="19" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="buttonActive" fullname="CreateWidgetButton::buttonActive" href="qml-createwidgetbutton.html#buttonActive-prop" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="18" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="animOffset" fullname="CreateWidgetButton::animOffset" href="qml-createwidgetbutton.html#animOffset-prop" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="14" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="text" fullname="CreateWidgetButton::text" href="qml-createwidgetbutton.html#text-prop" status="internal" access="private" location="CreateWidgetButton.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidgetButton.qml" lineno="16" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateNew" qml-module-name="CreateNew" href="qml-createnew.html" status="internal" access="private" location="CreateNew.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateNew.qml" lineno="9" title="CreateNew" fulltitle="CreateNew" subtitle=""/>
|
|
||||||
<qmlclass name="InstalledUserHelper" qml-module-name="InstalledUserHelper" href="qml-installeduserhelper.html" status="internal" access="private" location="InstalledUserHelper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledUserHelper.qml" lineno="6" title="InstalledUserHelper" fulltitle="InstalledUserHelper" subtitle="">
|
|
||||||
<function name="helperButtonPressed" fullname="InstalledUserHelper::helperButtonPressed" href="qml-installeduserhelper.html#helperButtonPressed-signal" status="internal" access="private" location="InstalledUserHelper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledUserHelper.qml" lineno="8" meta="qmlsignal"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWidget" qml-module-name="CreateWidget" href="qml-createwidget.html" status="internal" access="private" location="CreateWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidget.qml" lineno="5" title="CreateWidget" fulltitle="CreateWidget" subtitle="">
|
|
||||||
<function name="buttonPressed" fullname="CreateWidget::buttonPressed" href="qml-createwidget.html#buttonPressed-signal" status="internal" access="private" location="CreateWidget.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWidget.qml" lineno="11" meta="qmlsignal"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Sidebar" qml-module-name="Sidebar" href="qml-sidebar.html" status="internal" access="private" location="Sidebar.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Sidebar.qml" lineno="9" title="Sidebar" fulltitle="Sidebar" subtitle="">
|
|
||||||
<qmlproperty name="navHeight" fullname="Sidebar::navHeight" href="qml-sidebar.html#navHeight-prop" status="internal" access="private" location="Sidebar.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Sidebar.qml" lineno="14" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="type" fullname="Sidebar::type" href="qml-sidebar.html#type-prop" status="internal" access="private" location="Sidebar.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Sidebar.qml" lineno="15" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="activeScreen" fullname="Sidebar::activeScreen" href="qml-sidebar.html#activeScreen-prop" status="internal" access="private" location="Sidebar.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Sidebar.qml" lineno="16" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Monitors" qml-module-name="Monitors" href="qml-monitors.html" status="internal" access="private" location="Monitors.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Monitors.qml" lineno="9" title="Monitors" fulltitle="Monitors" subtitle="">
|
|
||||||
<qmlproperty name="activeMonitorName" fullname="Monitors::activeMonitorName" href="qml-monitors.html#activeMonitorName-prop" status="internal" access="private" location="Monitors.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Monitors.qml" lineno="14" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="activeMonitorIndex" fullname="Monitors::activeMonitorIndex" href="qml-monitors.html#activeMonitorIndex-prop" status="internal" access="private" location="Monitors.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Monitors.qml" lineno="15" type="int" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWallpaperVideoImportConvert" qml-module-name="CreateWallpaperVideoImportConvert" href="qml-createwallpapervideoimportconvert.html" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="12" title="CreateWallpaperVideoImportConvert" fulltitle="CreateWallpaperVideoImportConvert" subtitle="">
|
|
||||||
<function name="checkCanSave" fullname="CreateWallpaperVideoImportConvert::checkCanSave" href="qml-createwallpapervideoimportconvert.html#checkCanSave-method" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="21" meta="qmlmethod"/>
|
|
||||||
<function name="save" fullname="CreateWallpaperVideoImportConvert::save" href="qml-createwallpapervideoimportconvert.html#save-signal" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="19" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="canSave" fullname="CreateWallpaperVideoImportConvert::canSave" href="qml-createwallpapervideoimportconvert.html#canSave-prop" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="16" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="filePath" fullname="CreateWallpaperVideoImportConvert::filePath" href="qml-createwallpapervideoimportconvert.html#filePath-prop" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="17" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="conversionFinishedSuccessful" fullname="CreateWallpaperVideoImportConvert::conversionFinishedSuccessful" href="qml-createwallpapervideoimportconvert.html#conversionFinishedSuccessful-prop" status="internal" access="private" location="CreateWallpaperVideoImportConvert.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperVideoImportConvert.qml" lineno="15" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="FileDropper" qml-module-name="FileDropper" href="qml-filedropper.html" status="internal" access="private" location="FileDropper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/FileDropper.qml" lineno="5" title="FileDropper" fulltitle="FileDropper" subtitle=""/>
|
|
||||||
<qmlclass name="Installed" qml-module-name="Installed" href="qml-installed.html" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="6" title="Installed" fulltitle="Installed" subtitle="">
|
|
||||||
<function name="onPageChanged" fullname="Installed::onPageChanged" href="qml-installed.html#onPageChanged-method" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="183" meta="qmlmethod"/>
|
|
||||||
<function name="setNavigationItem" fullname="Installed::setNavigationItem" href="qml-installed.html#setNavigationItem-signal" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="11" meta="qmlsignal"/>
|
|
||||||
<function name="setSidebarActive" fullname="Installed::setSidebarActive" href="qml-installed.html#setSidebarActive-signal" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="12" meta="qmlsignal"/>
|
|
||||||
<function name="setSidebaractiveItem" fullname="Installed::setSidebaractiveItem" href="qml-installed.html#setSidebaractiveItem-signal" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="10" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="enabled" fullname="Installed::enabled" href="qml-installed.html#enabled-prop" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="15" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="refresh" fullname="Installed::refresh" href="qml-installed.html#refresh-prop" status="internal" access="private" location="Installed.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/Installed.qml" lineno="14" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWallpaperWizard" qml-module-name="CreateWallpaperWizard" href="qml-createwallpaperwizard.html" status="internal" access="private" location="CreateWallpaperWizard.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml" lineno="10" title="CreateWallpaperWizard" fulltitle="CreateWallpaperWizard" subtitle="">
|
|
||||||
<qmlproperty name="canNext" fullname="CreateWallpaperWizard::canNext" href="qml-createwallpaperwizard.html#canNext-prop" status="internal" access="private" location="CreateWallpaperWizard.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml" lineno="16" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="filePath" fullname="CreateWallpaperWizard::filePath" href="qml-createwallpaperwizard.html#filePath-prop" status="internal" access="private" location="CreateWallpaperWizard.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml" lineno="15" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateUpload" qml-module-name="CreateUpload" href="qml-createupload.html" status="internal" access="private" location="CreateUpload.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateUpload.qml" lineno="11" title="CreateUpload" fulltitle="CreateUpload" subtitle="">
|
|
||||||
<qmlproperty name="videoFile" fullname="CreateUpload::videoFile" href="qml-createupload.html#videoFile-prop" status="internal" access="private" location="CreateUpload.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateUpload.qml" lineno="18" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="projectFile" fullname="CreateUpload::projectFile" href="qml-createupload.html#projectFile-prop" status="internal" access="private" location="CreateUpload.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateUpload.qml" lineno="19" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="jsonProjectFile" fullname="CreateUpload::jsonProjectFile" href="qml-createupload.html#jsonProjectFile-prop" status="internal" access="private" location="CreateUpload.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateUpload.qml" lineno="20" type="var" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isVideoPlaying" fullname="CreateUpload::isVideoPlaying" href="qml-createupload.html#isVideoPlaying-prop" status="internal" access="private" location="CreateUpload.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateUpload.qml" lineno="17" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="MonitorSelection" qml-module-name="MonitorSelection" href="qml-monitorselection.html" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="4" title="MonitorSelection" fulltitle="MonitorSelection" subtitle="">
|
|
||||||
<function name="requestProjectSettings" fullname="MonitorSelection::requestProjectSettings" href="qml-monitorselection.html#requestProjectSettings-signal" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="21" meta="qmlsignal"/>
|
|
||||||
<function name="resize" fullname="MonitorSelection::resize" href="qml-monitorselection.html#resize-method" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="60" meta="qmlmethod"/>
|
|
||||||
<function name="setActiveMonitorIndex" fullname="MonitorSelection::setActiveMonitorIndex" href="qml-monitorselection.html#setActiveMonitorIndex-method" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="24" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="fontSize" fullname="MonitorSelection::fontSize" href="qml-monitorselection.html#fontSize-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="18" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="cornerRadius" fullname="MonitorSelection::cornerRadius" href="qml-monitorselection.html#cornerRadius-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="13" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="availableWidth" fullname="MonitorSelection::availableWidth" href="qml-monitorselection.html#availableWidth-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="15" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="activeMonitorIndex" fullname="MonitorSelection::activeMonitorIndex" href="qml-monitorselection.html#activeMonitorIndex-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="17" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="background" fullname="MonitorSelection::background" href="qml-monitorselection.html#background-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="12" type="color" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="availableHeight" fullname="MonitorSelection::availableHeight" href="qml-monitorselection.html#availableHeight-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="16" type="real" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="activeMonitorID" fullname="MonitorSelection::activeMonitorID" href="qml-monitorselection.html#activeMonitorID-prop" status="internal" access="private" location="MonitorSelection.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelection.qml" lineno="19" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="MonitorsProjectSettingItem" qml-module-name="MonitorsProjectSettingItem" href="qml-monitorsprojectsettingitem.html" status="internal" access="private" location="MonitorsProjectSettingItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorsProjectSettingItem.qml" lineno="7" title="MonitorsProjectSettingItem" fulltitle="MonitorsProjectSettingItem" subtitle="">
|
|
||||||
<qmlproperty name="selectedMonitor" fullname="MonitorsProjectSettingItem::selectedMonitor" href="qml-monitorsprojectsettingitem.html#selectedMonitor-prop" status="internal" access="private" location="MonitorsProjectSettingItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorsProjectSettingItem.qml" lineno="13" type="int" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Navigation" qml-module-name="Navigation" href="qml-navigation.html" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="8" title="Navigation" fulltitle="Navigation" subtitle="">
|
|
||||||
<function name="changePage" fullname="Navigation::changePage" href="qml-navigation.html#changePage-signal" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="15" meta="qmlsignal"/>
|
|
||||||
<function name="onPageChanged" fullname="Navigation::onPageChanged" href="qml-navigation.html#onPageChanged-method" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="36" meta="qmlmethod"/>
|
|
||||||
<function name="setActive" fullname="Navigation::setActive" href="qml-navigation.html#setActive-method" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="27" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="navArray" fullname="Navigation::navArray" href="qml-navigation.html#navArray-prop" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="17" type="var" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="navActive" fullname="Navigation::navActive" href="qml-navigation.html#navActive-prop" status="internal" access="private" location="Navigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Navigation.qml" lineno="18" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="InstalledNavigation" qml-module-name="InstalledNavigation" href="qml-installednavigation.html" status="internal" access="private" location="InstalledNavigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledNavigation.qml" lineno="4" title="InstalledNavigation" fulltitle="InstalledNavigation" subtitle="">
|
|
||||||
<function name="pageClicked" fullname="InstalledNavigation::pageClicked" href="qml-installednavigation.html#pageClicked-signal" status="internal" access="private" location="InstalledNavigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledNavigation.qml" lineno="20" meta="qmlsignal"/>
|
|
||||||
<function name="setActive" fullname="InstalledNavigation::setActive" href="qml-installednavigation.html#setActive-method" status="internal" access="private" location="InstalledNavigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledNavigation.qml" lineno="22" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="iconSource" fullname="InstalledNavigation::iconSource" href="qml-installednavigation.html#iconSource-prop" status="internal" access="private" location="InstalledNavigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledNavigation.qml" lineno="18" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="name" fullname="InstalledNavigation::name" href="qml-installednavigation.html#name-prop" status="internal" access="private" location="InstalledNavigation.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/InstalledNavigation.qml" lineno="11" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Create" qml-module-name="Create" href="qml-create.html" status="internal" access="private" location="Create.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Create.qml" lineno="11" title="Create" fulltitle="Create" subtitle="">
|
|
||||||
<qmlproperty name="activeFolder" fullname="Create::activeFolder" href="qml-create.html#activeFolder-prop" status="internal" access="private" location="Create.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Create.qml" lineno="19" type="url" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="activeVideoFile" fullname="Create::activeVideoFile" href="qml-create.html#activeVideoFile-prop" status="internal" access="private" location="Create.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/Create.qml" lineno="18" type="url" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="ScreenPlayItemImage" qml-module-name="ScreenPlayItemImage" href="qml-screenplayitemimage.html" status="internal" access="private" location="ScreenPlayItemImage.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItemImage.qml" lineno="3" title="ScreenPlayItemImage" fulltitle="ScreenPlayItemImage" subtitle="">
|
|
||||||
<function name="enter" fullname="ScreenPlayItemImage::enter" href="qml-screenplayitemimage.html#enter-method" status="internal" access="private" location="ScreenPlayItemImage.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItemImage.qml" lineno="12" meta="qmlmethod"/>
|
|
||||||
<function name="exit" fullname="ScreenPlayItemImage::exit" href="qml-screenplayitemimage.html#exit-method" status="internal" access="private" location="ScreenPlayItemImage.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItemImage.qml" lineno="18" meta="qmlmethod"/>
|
|
||||||
<qmlproperty name="sourceImageGIF" fullname="ScreenPlayItemImage::sourceImageGIF" href="qml-screenplayitemimage.html#sourceImageGIF-prop" status="internal" access="private" location="ScreenPlayItemImage.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItemImage.qml" lineno="10" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="sourceImage" fullname="ScreenPlayItemImage::sourceImage" href="qml-screenplayitemimage.html#sourceImage-prop" status="internal" access="private" location="ScreenPlayItemImage.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Installed/ScreenPlayItemImage.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="MonitorSelectionItem" qml-module-name="MonitorSelectionItem" href="qml-monitorselectionitem.html" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="4" title="MonitorSelectionItem" fulltitle="MonitorSelectionItem" subtitle="">
|
|
||||||
<function name="monitorSelected" fullname="MonitorSelectionItem::monitorSelected" href="qml-monitorselectionitem.html#monitorSelected-signal" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="21" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="monitorID" fullname="MonitorSelectionItem::monitorID" href="qml-monitorselectionitem.html#monitorID-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="10" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="previewImage" fullname="MonitorSelectionItem::previewImage" href="qml-monitorselectionitem.html#previewImage-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="11" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isSelected" fullname="MonitorSelectionItem::isSelected" href="qml-monitorselectionitem.html#isSelected-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="19" type="bool" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="monitorModel" fullname="MonitorSelectionItem::monitorModel" href="qml-monitorselectionitem.html#monitorModel-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="7" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="monitorManufacturer" fullname="MonitorSelectionItem::monitorManufacturer" href="qml-monitorselectionitem.html#monitorManufacturer-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="8" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="monitorSize" fullname="MonitorSelectionItem::monitorSize" href="qml-monitorselectionitem.html#monitorSize-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="6" type="rect" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="monitorName" fullname="MonitorSelectionItem::monitorName" href="qml-monitorselectionitem.html#monitorName-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="9" type="string" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="fontSize" fullname="MonitorSelectionItem::fontSize" href="qml-monitorselectionitem.html#fontSize-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="17" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="index" fullname="MonitorSelectionItem::index" href="qml-monitorselectionitem.html#index-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="18" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="isWallpaperActive" fullname="MonitorSelectionItem::isWallpaperActive" href="qml-monitorselectionitem.html#isWallpaperActive-prop" status="internal" access="private" location="MonitorSelectionItem.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/MonitorSelectionItem.qml" lineno="20" type="bool" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="CreateWallpaper" qml-module-name="CreateWallpaper" href="qml-createwallpaper.html" status="internal" access="private" location="CreateWallpaper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWallpaper.qml" lineno="9" title="CreateWallpaper" fulltitle="CreateWallpaper" subtitle="">
|
|
||||||
<function name="projectFileSelected" fullname="CreateWallpaper::projectFileSelected" href="qml-createwallpaper.html#projectFileSelected-signal" status="internal" access="private" location="CreateWallpaper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWallpaper.qml" lineno="16" meta="qmlsignal"/>
|
|
||||||
<function name="videoImportConvertFileSelected" fullname="CreateWallpaper::videoImportConvertFileSelected" href="qml-createwallpaper.html#videoImportConvertFileSelected-signal" status="internal" access="private" location="CreateWallpaper.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Create/CreateWallpaper.qml" lineno="15" meta="qmlsignal"/>
|
|
||||||
</qmlclass>
|
|
||||||
<class name="Create" href="create.html" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="29">
|
|
||||||
<function name="Q_PROPERTY" fullname="Create::Q_PROPERTY" href="create.html#Q_PROPERTY" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="34" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="abortAndCleanup" fullname="Create::abortAndCleanup" href="create.html#abortAndCleanup" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="60" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void abortAndCleanup()"/>
|
|
||||||
<function name="abortCreateWallpaper" fullname="Create::abortCreateWallpaper" href="create.html#abortCreateWallpaper" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="54" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void abortCreateWallpaper()"/>
|
|
||||||
<function name="processOutput" fullname="Create::processOutput" href="create.html#processOutput" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="52" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void processOutput(int text)">
|
|
||||||
<parameter type="int" name="text" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="progressChanged" fullname="Create::progressChanged" href="create.html#progressChanged" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="53" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void progressChanged(float progress)">
|
|
||||||
<parameter type="float" name="progress" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="saveWallpaper" fullname="Create::saveWallpaper" href="create.html#saveWallpaper" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="59" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void saveWallpaper(int title, int description, int filePath, int previewImagePath, int youtube, int tags)">
|
|
||||||
<parameter type="int" name="title" default=""/>
|
|
||||||
<parameter type="int" name="description" default=""/>
|
|
||||||
<parameter type="int" name="filePath" default=""/>
|
|
||||||
<parameter type="int" name="previewImagePath" default=""/>
|
|
||||||
<parameter type="int" name="youtube" default=""/>
|
|
||||||
<parameter type="int" name="tags" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setProgress" fullname="Create::setProgress" href="create.html#setProgress" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="62" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setProgress(float progress)">
|
|
||||||
<parameter type="float" name="progress" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setWorkingDir" fullname="Create::setWorkingDir" href="create.html#setWorkingDir" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="71" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setWorkingDir(int workingDir)">
|
|
||||||
<parameter type="int" name="workingDir" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="workingDirChanged" fullname="Create::workingDirChanged" href="create.html#workingDirChanged" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="55" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void workingDirChanged(int workingDir)">
|
|
||||||
<parameter type="int" name="workingDir" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_createImportVideo" fullname="Create::m_createImportVideo" href="create.html#m_createImportVideo-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="81" type="CreateImportVideo *" static="false"/>
|
|
||||||
<variable name="m_settings" fullname="Create::m_settings" href="create.html#m_settings-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="82" type="Settings *" static="false"/>
|
|
||||||
<variable name="m_createImportVideoThread" fullname="Create::m_createImportVideoThread" href="create.html#m_createImportVideoThread-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="83" type="int *" static="false"/>
|
|
||||||
<variable name="m_utils" fullname="Create::m_utils" href="create.html#m_utils-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="84" type="QMLUtilities *" static="false"/>
|
|
||||||
<variable name="m_progress" fullname="Create::m_progress" href="create.html#m_progress-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="86" type="float" static="false"/>
|
|
||||||
<variable name="m_workingDir" fullname="Create::m_workingDir" href="create.html#m_workingDir-var" status="internal" access="private" location="create.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/create.h" lineno="87" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="TagSelector" qml-module-name="TagSelector" href="qml-tagselector.html" status="internal" access="private" location="TagSelector.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/TagSelector.qml" lineno="6" title="TagSelector" fulltitle="TagSelector" subtitle="">
|
|
||||||
<function name="getTags" fullname="TagSelector::getTags" href="qml-tagselector.html#getTags-method" status="internal" access="private" location="TagSelector.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/TagSelector.qml" lineno="18" meta="qmlmethod"/>
|
|
||||||
</qmlclass>
|
|
||||||
<class name="Profile" href="profile.html" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="13">
|
|
||||||
<function name="Profile" fullname="Profile::Profile" href="profile.html#Profile" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="15" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="Profile()"/>
|
|
||||||
<function name="Profile" fullname="Profile::Profile" href="profile.html#Profile-1" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="16" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" overload="true" overload-number="1" type="" signature="Profile(int absolutePath, int id, int version, int wallpaperId, int rect, bool isLooping)">
|
|
||||||
<parameter type="int" name="absolutePath" default=""/>
|
|
||||||
<parameter type="int" name="id" default=""/>
|
|
||||||
<parameter type="int" name="version" default=""/>
|
|
||||||
<parameter type="int" name="wallpaperId" default=""/>
|
|
||||||
<parameter type="int" name="rect" default=""/>
|
|
||||||
<parameter type="bool" name="isLooping" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_isLooping" fullname="Profile::m_isLooping" href="profile.html#m_isLooping-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="23" type="bool" static="false"/>
|
|
||||||
<variable name="m_rect" fullname="Profile::m_rect" href="profile.html#m_rect-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="22" type="int" static="false"/>
|
|
||||||
<variable name="m_id" fullname="Profile::m_id" href="profile.html#m_id-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="19" type="int" static="false"/>
|
|
||||||
<variable name="m_version" fullname="Profile::m_version" href="profile.html#m_version-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="20" type="int" static="false"/>
|
|
||||||
<variable name="m_absolutePath" fullname="Profile::m_absolutePath" href="profile.html#m_absolutePath-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="18" type="int" static="false"/>
|
|
||||||
<variable name="m_wallpaperId" fullname="Profile::m_wallpaperId" href="profile.html#m_wallpaperId-var" status="internal" access="private" location="profile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profile.h" lineno="21" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="ProjectSettingsListItem" href="projectsettingslistitem.html" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="16">
|
|
||||||
<function name="ProjectSettingsListItem" fullname="ProjectSettingsListItem::ProjectSettingsListItem" href="projectsettingslistitem.html#ProjectSettingsListItem" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="20" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="ProjectSettingsListItem(int name, bool isHeadline, int value)">
|
|
||||||
<parameter type="int" name="name" default=""/>
|
|
||||||
<parameter type="bool" name="isHeadline" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="ProjectSettingsListItem" fullname="ProjectSettingsListItem::ProjectSettingsListItem" href="projectsettingslistitem.html#ProjectSettingsListItem-1" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="21" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" overload="true" overload-number="1" type="" signature="ProjectSettingsListItem()"/>
|
|
||||||
<function name="~ProjectSettingsListItem" fullname="ProjectSettingsListItem::~ProjectSettingsListItem" href="projectsettingslistitem.html#dtor.ProjectSettingsListItem" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="22" meta="destructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="~ProjectSettingsListItem()"/>
|
|
||||||
<variable name="m_value" fullname="ProjectSettingsListItem::m_value" href="projectsettingslistitem.html#m_value-var" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="25" type="int" static="false"/>
|
|
||||||
<variable name="m_name" fullname="ProjectSettingsListItem::m_name" href="projectsettingslistitem.html#m_name-var" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="23" type="int" static="false"/>
|
|
||||||
<variable name="m_isHeadline" fullname="ProjectSettingsListItem::m_isHeadline" href="projectsettingslistitem.html#m_isHeadline-var" status="internal" access="private" location="projectsettingslistitem.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistitem.h" lineno="24" type="bool" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="SDKConnector" href="sdkconnector.html" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="18">
|
|
||||||
<function name="closeAllWallpapers" fullname="SDKConnector::closeAllWallpapers" href="sdkconnector.html#closeAllWallpapers" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="28" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void closeAllWallpapers()"/>
|
|
||||||
<function name="closeWallpapersAt" fullname="SDKConnector::closeWallpapersAt" href="sdkconnector.html#closeWallpapersAt" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="29" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void closeWallpapersAt(int at)">
|
|
||||||
<parameter type="int" name="at" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="newConnection" fullname="SDKConnector::newConnection" href="sdkconnector.html#newConnection" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="27" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void newConnection()"/>
|
|
||||||
<function name="setSceneValue" fullname="SDKConnector::setSceneValue" href="sdkconnector.html#setSceneValue" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="31" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setSceneValue(int appID, int key, int value)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
<parameter type="int" name="key" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setWallpaperValue" fullname="SDKConnector::setWallpaperValue" href="sdkconnector.html#setWallpaperValue" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="30" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setWallpaperValue(int appID, int key, int value)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
<parameter type="int" name="key" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_server" fullname="SDKConnector::m_server" href="sdkconnector.html#m_server-var" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="34" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="SDKConnection" href="sdkconnection.html" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="38">
|
|
||||||
<function name="Q_PROPERTY" fullname="SDKConnection::Q_PROPERTY" href="sdkconnection.html#Q_PROPERTY" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="40" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="appIDChanged" fullname="SDKConnection::appIDChanged" href="sdkconnection.html#appIDChanged" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="74" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void appIDChanged(int appID)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="monitor" fullname="SDKConnection::monitor" href="sdkconnection.html#monitor" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="67" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int monitor() const"/>
|
|
||||||
<function name="monitorChanged" fullname="SDKConnection::monitorChanged" href="sdkconnection.html#monitorChanged" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="75" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void monitorChanged(int monitor)">
|
|
||||||
<parameter type="int" name="monitor" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_appID" fullname="SDKConnection::m_appID" href="sdkconnection.html#m_appID-var" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="127" type="int" static="false"/>
|
|
||||||
<variable name="m_monitor" fullname="SDKConnection::m_monitor" href="sdkconnection.html#m_monitor-var" status="internal" access="private" location="sdkconnector.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/sdkconnector.h" lineno="128" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="Settings" href="settings.html" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="50">
|
|
||||||
<function name="Q_PROPERTY" fullname="Settings::Q_PROPERTY" href="settings.html#Q_PROPERTY" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="57" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="activeWallpaperCounterChanged" fullname="Settings::activeWallpaperCounterChanged" href="settings.html#activeWallpaperCounterChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="132" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void activeWallpaperCounterChanged(int activeWallpaperCounter)">
|
|
||||||
<parameter type="int" name="activeWallpaperCounter" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="allDataProtectionLoaded" fullname="Settings::allDataProtectionLoaded" href="settings.html#allDataProtectionLoaded" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="136" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void allDataProtectionLoaded(int dataProtectionText)">
|
|
||||||
<parameter type="int" name="dataProtectionText" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="allLicenseLoaded" fullname="Settings::allLicenseLoaded" href="settings.html#allLicenseLoaded" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="135" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void allLicenseLoaded(int licensesText)">
|
|
||||||
<parameter type="int" name="licensesText" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="autostart" fullname="Settings::autostart" href="settings.html#autostart" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="150" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool autostart() const"/>
|
|
||||||
<function name="checkForOtherFullscreenApplication" fullname="Settings::checkForOtherFullscreenApplication" href="settings.html#checkForOtherFullscreenApplication" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="141" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void checkForOtherFullscreenApplication()"/>
|
|
||||||
<function name="createDefaultConfig" fullname="Settings::createDefaultConfig" href="settings.html#createDefaultConfig" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="296" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void createDefaultConfig()"/>
|
|
||||||
<function name="decoder" fullname="Settings::decoder" href="settings.html#decoder" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="165" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int decoder() const"/>
|
|
||||||
<function name="decoderChanged" fullname="Settings::decoderChanged" href="settings.html#decoderChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="130" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void decoderChanged(int decoder)">
|
|
||||||
<parameter type="int" name="decoder" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="decreaseActiveWallpaperCounter" fullname="Settings::decreaseActiveWallpaperCounter" href="settings.html#decreaseActiveWallpaperCounter" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="268" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void decreaseActiveWallpaperCounter()"/>
|
|
||||||
<function name="getOfflineMode" fullname="Settings::getOfflineMode" href="settings.html#getOfflineMode" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="122" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool getOfflineMode() const"/>
|
|
||||||
<function name="getScreenPlayBasePath" fullname="Settings::getScreenPlayBasePath" href="settings.html#getScreenPlayBasePath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="116" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int getScreenPlayBasePath() const"/>
|
|
||||||
<function name="getScreenPlayWidgetPath" fullname="Settings::getScreenPlayWidgetPath" href="settings.html#getScreenPlayWidgetPath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="119" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int getScreenPlayWidgetPath() const"/>
|
|
||||||
<function name="hasWorkshopBannerSeenChanged" fullname="Settings::hasWorkshopBannerSeenChanged" href="settings.html#hasWorkshopBannerSeenChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="129" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void hasWorkshopBannerSeenChanged(bool hasWorkshopBannerSeen)">
|
|
||||||
<parameter type="bool" name="hasWorkshopBannerSeen" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="highPriorityStart" fullname="Settings::highPriorityStart" href="settings.html#highPriorityStart" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="155" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool highPriorityStart() const"/>
|
|
||||||
<function name="highPriorityStartChanged" fullname="Settings::highPriorityStartChanged" href="settings.html#highPriorityStartChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="126" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void highPriorityStartChanged(bool highPriorityStart)">
|
|
||||||
<parameter type="bool" name="highPriorityStart" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="increaseActiveWallpaperCounter" fullname="Settings::increaseActiveWallpaperCounter" href="settings.html#increaseActiveWallpaperCounter" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="262" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void increaseActiveWallpaperCounter()"/>
|
|
||||||
<function name="loadProject" fullname="Settings::loadProject" href="settings.html#loadProject" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="215" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int loadProject(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="localStoragePathChanged" fullname="Settings::localStoragePathChanged" href="settings.html#localStoragePathChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="128" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void localStoragePathChanged(int localStoragePath)">
|
|
||||||
<parameter type="int" name="localStoragePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="offlineMode" fullname="Settings::offlineMode" href="settings.html#offlineMode" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="111" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool offlineMode() const"/>
|
|
||||||
<function name="offlineModeChanged" fullname="Settings::offlineModeChanged" href="settings.html#offlineModeChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="134" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void offlineModeChanged(bool offlineMode)">
|
|
||||||
<parameter type="bool" name="offlineMode" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="pauseWallpaperWhenIngame" fullname="Settings::pauseWallpaperWhenIngame" href="settings.html#pauseWallpaperWhenIngame" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="106" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool pauseWallpaperWhenIngame() const"/>
|
|
||||||
<function name="pauseWallpaperWhenIngameChanged" fullname="Settings::pauseWallpaperWhenIngameChanged" href="settings.html#pauseWallpaperWhenIngameChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="133" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void pauseWallpaperWhenIngameChanged(bool pauseWallpaperWhenIngame)">
|
|
||||||
<parameter type="bool" name="pauseWallpaperWhenIngame" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="requestAllLDataProtection" fullname="Settings::requestAllLDataProtection" href="settings.html#requestAllLDataProtection" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="146" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestAllLDataProtection()"/>
|
|
||||||
<function name="requestAllLicenses" fullname="Settings::requestAllLicenses" href="settings.html#requestAllLicenses" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="145" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestAllLicenses()"/>
|
|
||||||
<function name="saveWallpaper" fullname="Settings::saveWallpaper" href="settings.html#saveWallpaper" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="147" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void saveWallpaper(int monitorIndex, int absoluteStoragePath, int properties, int type)">
|
|
||||||
<parameter type="int" name="monitorIndex" default=""/>
|
|
||||||
<parameter type="int" name="absoluteStoragePath" default=""/>
|
|
||||||
<parameter type="int" name="properties" default=""/>
|
|
||||||
<parameter type="int" name="type" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="sendStatistics" fullname="Settings::sendStatistics" href="settings.html#sendStatistics" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="160" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="bool" signature="bool sendStatistics() const"/>
|
|
||||||
<function name="sendStatisticsChanged" fullname="Settings::sendStatisticsChanged" href="settings.html#sendStatisticsChanged" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="127" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void sendStatisticsChanged(bool status)">
|
|
||||||
<parameter type="bool" name="status" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setActiveWallpaperCounter" fullname="Settings::setActiveWallpaperCounter" href="settings.html#setActiveWallpaperCounter" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="253" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setActiveWallpaperCounter(int activeWallpaperCounter)">
|
|
||||||
<parameter type="int" name="activeWallpaperCounter" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setAutostart" fullname="Settings::setAutostart" href="settings.html#setAutostart" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="170" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setAutostart(bool autostart)">
|
|
||||||
<parameter type="bool" name="autostart" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setDecoder" fullname="Settings::setDecoder" href="settings.html#setDecoder" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="234" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setDecoder(int decoder)">
|
|
||||||
<parameter type="int" name="decoder" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setGlobalFillMode" fullname="Settings::setGlobalFillMode" href="settings.html#setGlobalFillMode" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="143" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setGlobalFillMode(int fillMode)">
|
|
||||||
<parameter type="int" name="fillMode" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setGlobalVolume" fullname="Settings::setGlobalVolume" href="settings.html#setGlobalVolume" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="142" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setGlobalVolume(float volume)">
|
|
||||||
<parameter type="float" name="volume" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setHasWorkshopBannerSeen" fullname="Settings::setHasWorkshopBannerSeen" href="settings.html#setHasWorkshopBannerSeen" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="244" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setHasWorkshopBannerSeen(bool hasWorkshopBannerSeen)">
|
|
||||||
<parameter type="bool" name="hasWorkshopBannerSeen" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setHighPriorityStart" fullname="Settings::setHighPriorityStart" href="settings.html#setHighPriorityStart" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="194" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setHighPriorityStart(bool highPriorityStart)">
|
|
||||||
<parameter type="bool" name="highPriorityStart" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setLocalStoragePath" fullname="Settings::setLocalStoragePath" href="settings.html#setLocalStoragePath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="217" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setLocalStoragePath(int localStoragePath)">
|
|
||||||
<parameter type="int" name="localStoragePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setMainWindowVisible" fullname="Settings::setMainWindowVisible" href="settings.html#setMainWindowVisible" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="131" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setMainWindowVisible(bool visible)">
|
|
||||||
<parameter type="bool" name="visible" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setOfflineMode" fullname="Settings::setOfflineMode" href="settings.html#setOfflineMode" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="286" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setOfflineMode(bool offlineMode)">
|
|
||||||
<parameter type="bool" name="offlineMode" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setPauseWallpaperWhenIngame" fullname="Settings::setPauseWallpaperWhenIngame" href="settings.html#setPauseWallpaperWhenIngame" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="277" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setPauseWallpaperWhenIngame(bool pauseWallpaperWhenIngame)">
|
|
||||||
<parameter type="bool" name="pauseWallpaperWhenIngame" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setPlayAll" fullname="Settings::setPlayAll" href="settings.html#setPlayAll" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="140" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setPlayAll(bool isPlaying)">
|
|
||||||
<parameter type="bool" name="isPlaying" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setScreenPlayBasePath" fullname="Settings::setScreenPlayBasePath" href="settings.html#setScreenPlayBasePath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="117" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setScreenPlayBasePath(int screenPlayBasePath)">
|
|
||||||
<parameter type="int" name="screenPlayBasePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setScreenPlayWidgetPath" fullname="Settings::setScreenPlayWidgetPath" href="settings.html#setScreenPlayWidgetPath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="120" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setScreenPlayWidgetPath(const int &screenPlayWidgetPath)">
|
|
||||||
<parameter type="const int &" name="screenPlayWidgetPath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setScreenPlayWindowPath" fullname="Settings::setScreenPlayWindowPath" href="settings.html#setScreenPlayWindowPath" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="104" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setScreenPlayWindowPath(const int &screenPlayWindowPath)">
|
|
||||||
<parameter type="const int &" name="screenPlayWindowPath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setSendStatistics" fullname="Settings::setSendStatistics" href="settings.html#setSendStatistics" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="204" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setSendStatistics(bool sendStatistics)">
|
|
||||||
<parameter type="bool" name="sendStatistics" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setqSetting" fullname="Settings::setqSetting" href="settings.html#setqSetting" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="148" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setqSetting(const int &key, const int &value)">
|
|
||||||
<parameter type="const int &" name="key" default=""/>
|
|
||||||
<parameter type="const int &" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setupWidgetAndWindowPaths" fullname="Settings::setupWidgetAndWindowPaths" href="settings.html#setupWidgetAndWindowPaths" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="297" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setupWidgetAndWindowPaths()"/>
|
|
||||||
<function name="writeSingleSettingConfig" fullname="Settings::writeSingleSettingConfig" href="settings.html#writeSingleSettingConfig" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="144" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void writeSingleSettingConfig(int name, int value)">
|
|
||||||
<parameter type="int" name="name" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="~Settings" fullname="Settings::~Settings" href="settings.html#dtor.Settings" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="55" meta="destructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="~Settings()"/>
|
|
||||||
<variable name="m_autostart" fullname="Settings::m_autostart" href="settings.html#m_autostart-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="317" type="bool" static="false"/>
|
|
||||||
<variable name="m_activeWallpaperCounter" fullname="Settings::m_activeWallpaperCounter" href="settings.html#m_activeWallpaperCounter-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="322" type="int" static="false"/>
|
|
||||||
<variable name="m_version" fullname="Settings::m_version" href="settings.html#m_version-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="299" type="int" static="false"/>
|
|
||||||
<variable name="m_translator" fullname="Settings::m_translator" href="settings.html#m_translator-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="301" type="int" static="false"/>
|
|
||||||
<variable name="m_offlineMode" fullname="Settings::m_offlineMode" href="settings.html#m_offlineMode-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="325" type="bool" static="false"/>
|
|
||||||
<variable name="m_decoder" fullname="Settings::m_decoder" href="settings.html#m_decoder-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="321" type="int" static="false"/>
|
|
||||||
<variable name="m_hasWorkshopBannerSeen" fullname="Settings::m_hasWorkshopBannerSeen" href="settings.html#m_hasWorkshopBannerSeen-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="315" type="bool" static="false"/>
|
|
||||||
<variable name="m_highPriorityStart" fullname="Settings::m_highPriorityStart" href="settings.html#m_highPriorityStart-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="318" type="bool" static="false"/>
|
|
||||||
<variable name="m_app" fullname="Settings::m_app" href="settings.html#m_app-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="323" type="int *" static="false"/>
|
|
||||||
<variable name="m_qSettings" fullname="Settings::m_qSettings" href="settings.html#m_qSettings-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="300" type="int" static="false"/>
|
|
||||||
<variable name="m_mlm" fullname="Settings::m_mlm" href="settings.html#m_mlm-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="304" type="MonitorListModel *" static="false"/>
|
|
||||||
<variable name="m_sdkc" fullname="Settings::m_sdkc" href="settings.html#m_sdkc-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="305" type="SDKConnector *" static="false"/>
|
|
||||||
<variable name="m_screenPlayWindowPath" fullname="Settings::m_screenPlayWindowPath" href="settings.html#m_screenPlayWindowPath-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="311" type="int" static="false"/>
|
|
||||||
<variable name="m_screenPlayWidgetPath" fullname="Settings::m_screenPlayWidgetPath" href="settings.html#m_screenPlayWidgetPath-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="312" type="int" static="false"/>
|
|
||||||
<enum name="LocalCopyResult" fullname="Settings::LocalCopyResult" href="settings.html#LocalCopyResult-enum" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="70">
|
|
||||||
<value name="NoError" value="0"/>
|
|
||||||
<value name="CopyError" value="1"/>
|
|
||||||
<value name="NotEnoughDiskSpace" value="2"/>
|
|
||||||
<value name="NameCollision" value="3"/>
|
|
||||||
</enum>
|
|
||||||
<variable name="m_sendStatistics" fullname="Settings::m_sendStatistics" href="settings.html#m_sendStatistics-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="319" type="bool" static="false"/>
|
|
||||||
<variable name="m_ilm" fullname="Settings::m_ilm" href="settings.html#m_ilm-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="303" type="InstalledListModel *" static="false"/>
|
|
||||||
<variable name="m_checkForOtherFullscreenApplicationTimer" fullname="Settings::m_checkForOtherFullscreenApplicationTimer" href="settings.html#m_checkForOtherFullscreenApplicationTimer-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="307" type="int *" static="false"/>
|
|
||||||
<variable name="m_plm" fullname="Settings::m_plm" href="settings.html#m_plm-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="302" type="ProfileListModel *" static="false"/>
|
|
||||||
<variable name="m_localStoragePath" fullname="Settings::m_localStoragePath" href="settings.html#m_localStoragePath-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="309" type="int" static="false"/>
|
|
||||||
<variable name="m_localSettingsPath" fullname="Settings::m_localSettingsPath" href="settings.html#m_localSettingsPath-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="310" type="int" static="false"/>
|
|
||||||
<variable name="m_screenPlayBasePath" fullname="Settings::m_screenPlayBasePath" href="settings.html#m_screenPlayBasePath-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="313" type="int" static="false"/>
|
|
||||||
<variable name="m_pauseWallpaperWhenIngame" fullname="Settings::m_pauseWallpaperWhenIngame" href="settings.html#m_pauseWallpaperWhenIngame-var" status="internal" access="private" location="settings.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/settings.h" lineno="316" type="bool" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="MonitorListModel" href="monitorlistmodel.html" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="24">
|
|
||||||
<function name="data" fullname="MonitorListModel::data" href="monitorlistmodel.html#data" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="48" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int data(const int &, int ) const override">
|
|
||||||
<parameter type="const int &" name="" default=""/>
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="getMonitorListItemAt" fullname="MonitorListModel::getMonitorListItemAt" href="monitorlistmodel.html#getMonitorListItemAt" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="50" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool getMonitorListItemAt(int position, Monitor *monitor)">
|
|
||||||
<parameter type="int" name="position" default=""/>
|
|
||||||
<parameter type="Monitor *" name="monitor" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="loadMonitors" fullname="MonitorListModel::loadMonitors" href="monitorlistmodel.html#loadMonitors" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="51" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void loadMonitors()"/>
|
|
||||||
<function name="reloadMonitors" fullname="MonitorListModel::reloadMonitors" href="monitorlistmodel.html#reloadMonitors" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="60" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void reloadMonitors()"/>
|
|
||||||
<function name="reset" fullname="MonitorListModel::reset" href="monitorlistmodel.html#reset" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="54" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void reset()"/>
|
|
||||||
<function name="roleNames" fullname="MonitorListModel::roleNames" href="monitorlistmodel.html#roleNames" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="30" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int roleNames() const override"/>
|
|
||||||
<function name="screenAdded" fullname="MonitorListModel::screenAdded" href="monitorlistmodel.html#screenAdded" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="52" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void screenAdded(int *screen)">
|
|
||||||
<parameter type="int *" name="screen" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="screenRemoved" fullname="MonitorListModel::screenRemoved" href="monitorlistmodel.html#screenRemoved" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="53" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void screenRemoved(int *screen)">
|
|
||||||
<parameter type="int *" name="screen" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setNewActiveMonitor" fullname="MonitorListModel::setNewActiveMonitor" href="monitorlistmodel.html#setNewActiveMonitor" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="71" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setNewActiveMonitor(int index, int path)">
|
|
||||||
<parameter type="int" name="index" default=""/>
|
|
||||||
<parameter type="int" name="path" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setWallpaperActiveMonitor" fullname="MonitorListModel::setWallpaperActiveMonitor" href="monitorlistmodel.html#setWallpaperActiveMonitor" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="56" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setWallpaperActiveMonitor(int *screen, int fullPreviewImagePath)">
|
|
||||||
<parameter type="int *" name="screen" default=""/>
|
|
||||||
<parameter type="int" name="fullPreviewImagePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="size" fullname="MonitorListModel::size" href="monitorlistmodel.html#size" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="61" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int size()"/>
|
|
||||||
<function name="wallpaperRemoved" fullname="MonitorListModel::wallpaperRemoved" href="monitorlistmodel.html#wallpaperRemoved" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="62" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void wallpaperRemoved()"/>
|
|
||||||
<variable name="m_monitorList" fullname="MonitorListModel::m_monitorList" href="monitorlistmodel.html#m_monitorList-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="65" type="int" static="false"/>
|
|
||||||
<variable name="m_qGuiApplication" fullname="MonitorListModel::m_qGuiApplication" href="monitorlistmodel.html#m_qGuiApplication-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="66" type="int *" static="false"/>
|
|
||||||
<enum name="MonitorRole" fullname="MonitorListModel::MonitorRole" href="monitorlistmodel.html#MonitorRole-enum" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="32">
|
|
||||||
<value name="IDRole" value="0"/>
|
|
||||||
<value name="NameRole" value="1"/>
|
|
||||||
<value name="SizeRole" value="2"/>
|
|
||||||
<value name="AvailableGeometryRole" value="3"/>
|
|
||||||
<value name="AvailableVirtualGeometryRole" value="4"/>
|
|
||||||
<value name="NumberRole" value="5"/>
|
|
||||||
<value name="GeometryRole" value="6"/>
|
|
||||||
<value name="ModelRole" value="7"/>
|
|
||||||
<value name="ManufacturerRole" value="8"/>
|
|
||||||
<value name="PreviewImageRole" value="9"/>
|
|
||||||
<value name="IsWallpaperActiveRole" value="10"/>
|
|
||||||
</enum>
|
|
||||||
</class>
|
|
||||||
<class name="InstalledListModel" href="installedlistmodel.html" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="29">
|
|
||||||
<function name="Q_PROPERTY" fullname="InstalledListModel::Q_PROPERTY" href="installedlistmodel.html#Q_PROPERTY" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="42" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="absoluteStoragePathChanged" fullname="InstalledListModel::absoluteStoragePathChanged" href="installedlistmodel.html#absoluteStoragePathChanged" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="94" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void absoluteStoragePathChanged(int absoluteStoragePath)">
|
|
||||||
<parameter type="int" name="absoluteStoragePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="addInstalledItem" fullname="InstalledListModel::addInstalledItem" href="installedlistmodel.html#addInstalledItem" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="95" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void addInstalledItem(const int QJsonObject, const int )">
|
|
||||||
<parameter type="const int" name="QJsonObject" default=""/>
|
|
||||||
<parameter type="const int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="append" fullname="InstalledListModel::append" href="installedlistmodel.html#append" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="70" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void append(const int QJsonObject, const int )">
|
|
||||||
<parameter type="const int" name="QJsonObject" default=""/>
|
|
||||||
<parameter type="const int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="data" fullname="InstalledListModel::data" href="installedlistmodel.html#data" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="37" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int data(const int &, int ) const override">
|
|
||||||
<parameter type="const int &" name="" default=""/>
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="get" fullname="InstalledListModel::get" href="installedlistmodel.html#get" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="69" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int get(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="getAmountItemLoaded" fullname="InstalledListModel::getAmountItemLoaded" href="installedlistmodel.html#getAmountItemLoaded" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="79" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int getAmountItemLoaded()"/>
|
|
||||||
<function name="getProjectByAbsoluteStoragePath" fullname="InstalledListModel::getProjectByAbsoluteStoragePath" href="installedlistmodel.html#getProjectByAbsoluteStoragePath" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="40" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool getProjectByAbsoluteStoragePath(int *path, ProjectFile *spf)">
|
|
||||||
<parameter type="int *" name="path" default=""/>
|
|
||||||
<parameter type="ProjectFile *" name="spf" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="installedLoadingFinished" fullname="InstalledListModel::installedLoadingFinished" href="installedlistmodel.html#installedLoadingFinished" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="96" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void installedLoadingFinished()"/>
|
|
||||||
<function name="isLoadingContentChanged" fullname="InstalledListModel::isLoadingContentChanged" href="installedlistmodel.html#isLoadingContentChanged" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="98" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void isLoadingContentChanged(bool isLoadingContent)">
|
|
||||||
<parameter type="bool" name="isLoadingContent" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="reset" fullname="InstalledListModel::reset" href="installedlistmodel.html#reset" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="80" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void reset()"/>
|
|
||||||
<function name="roleNames" fullname="InstalledListModel::roleNames" href="installedlistmodel.html#roleNames" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="38" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int roleNames() const override"/>
|
|
||||||
<function name="rowCount" fullname="InstalledListModel::rowCount" href="installedlistmodel.html#rowCount" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="36" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int rowCount(const int &parent) const override">
|
|
||||||
<parameter type="const int &" name="parent" default="..."/>
|
|
||||||
</function>
|
|
||||||
<function name="setIsLoadingContent" fullname="InstalledListModel::setIsLoadingContent" href="installedlistmodel.html#setIsLoadingContent" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="82" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setIsLoadingContent(bool isLoadingContent)">
|
|
||||||
<parameter type="bool" name="isLoadingContent" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setScreenToVideo" fullname="InstalledListModel::setScreenToVideo" href="installedlistmodel.html#setScreenToVideo" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="93" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setScreenToVideo(int absolutePath)">
|
|
||||||
<parameter type="int" name="absolutePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setabsoluteStoragePath" fullname="InstalledListModel::setabsoluteStoragePath" href="installedlistmodel.html#setabsoluteStoragePath" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="71" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setabsoluteStoragePath(int absoluteStoragePath)">
|
|
||||||
<parameter type="int" name="absoluteStoragePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="InstalledRole" fullname="InstalledListModel::InstalledRole" href="installedlistmodel.html#InstalledRole-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="55" type="int" static="false"/>
|
|
||||||
<variable name="m_screenPlayFiles" fullname="InstalledListModel::m_screenPlayFiles" href="installedlistmodel.html#m_screenPlayFiles-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="101" type="int" static="false"/>
|
|
||||||
<variable name="m_absoluteStoragePath" fullname="InstalledListModel::m_absoluteStoragePath" href="installedlistmodel.html#m_absoluteStoragePath-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="102" type="int" static="false"/>
|
|
||||||
<variable name="m_loadScreenFuture" fullname="InstalledListModel::m_loadScreenFuture" href="installedlistmodel.html#m_loadScreenFuture-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="103" type="int" static="false"/>
|
|
||||||
<variable name="m_isLoadingContent" fullname="InstalledListModel::m_isLoadingContent" href="installedlistmodel.html#m_isLoadingContent-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="107" type="bool" static="false"/>
|
|
||||||
<variable name="m_loadScreenWatcher" fullname="InstalledListModel::m_loadScreenWatcher" href="installedlistmodel.html#m_loadScreenWatcher-var" status="internal" access="private" location="installedlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistmodel.h" lineno="104" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="ProjectFile" href="projectfile.html" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="16">
|
|
||||||
<function name="ProjectFile" fullname="ProjectFile::ProjectFile" href="projectfile.html#ProjectFile" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="19" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="ProjectFile(int obj, int folderName, int absolutePath)">
|
|
||||||
<parameter type="int" name="obj" default=""/>
|
|
||||||
<parameter type="int" name="folderName" default=""/>
|
|
||||||
<parameter type="int" name="absolutePath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="ProjectFile" fullname="ProjectFile::ProjectFile" href="projectfile.html#ProjectFile-1" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="20" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" overload="true" overload-number="1" type="" signature="ProjectFile()"/>
|
|
||||||
<function name="~ProjectFile" fullname="ProjectFile::~ProjectFile" href="projectfile.html#dtor.ProjectFile" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="21" meta="destructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="~ProjectFile()"/>
|
|
||||||
<variable name="m_description" fullname="ProjectFile::m_description" href="projectfile.html#m_description-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="23" type="int" static="false"/>
|
|
||||||
<variable name="m_file" fullname="ProjectFile::m_file" href="projectfile.html#m_file-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="24" type="int" static="false"/>
|
|
||||||
<variable name="m_preview" fullname="ProjectFile::m_preview" href="projectfile.html#m_preview-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="25" type="int" static="false"/>
|
|
||||||
<variable name="m_type" fullname="ProjectFile::m_type" href="projectfile.html#m_type-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="30" type="int" static="false"/>
|
|
||||||
<variable name="m_workshopID" fullname="ProjectFile::m_workshopID" href="projectfile.html#m_workshopID-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="32" type="int" static="false"/>
|
|
||||||
<variable name="m_settings" fullname="ProjectFile::m_settings" href="projectfile.html#m_settings-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="31" type="int" static="false"/>
|
|
||||||
<variable name="m_tags" fullname="ProjectFile::m_tags" href="projectfile.html#m_tags-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="34" type="int" static="false"/>
|
|
||||||
<variable name="m_folderId" fullname="ProjectFile::m_folderId" href="projectfile.html#m_folderId-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="28" type="int" static="false"/>
|
|
||||||
<variable name="m_absoluteStoragePath" fullname="ProjectFile::m_absoluteStoragePath" href="projectfile.html#m_absoluteStoragePath-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="29" type="int" static="false"/>
|
|
||||||
<variable name="m_title" fullname="ProjectFile::m_title" href="projectfile.html#m_title-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="27" type="int" static="false"/>
|
|
||||||
<variable name="m_previewGIF" fullname="ProjectFile::m_previewGIF" href="projectfile.html#m_previewGIF-var" status="internal" access="private" location="projectfile.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectfile.h" lineno="26" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="ScreenPlay" href="screenplay.html" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="27">
|
|
||||||
<function name="createWidget" fullname="ScreenPlay::createWidget" href="screenplay.html#createWidget" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="47" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void createWidget(int absoluteStoragePath, int previewImage)">
|
|
||||||
<parameter type="int" name="absoluteStoragePath" default=""/>
|
|
||||||
<parameter type="int" name="previewImage" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="generateID" fullname="ScreenPlay::generateID" href="screenplay.html#generateID" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="54" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int generateID()"/>
|
|
||||||
<function name="getMonitorByAppID" fullname="ScreenPlay::getMonitorByAppID" href="screenplay.html#getMonitorByAppID" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="53" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int getMonitorByAppID(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="projectSettingsListModelFound" fullname="ScreenPlay::projectSettingsListModelFound" href="screenplay.html#projectSettingsListModelFound" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="42" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void projectSettingsListModelFound(ProjectSettingsListModel *li, int type)">
|
|
||||||
<parameter type="ProjectSettingsListModel *" name="li" default=""/>
|
|
||||||
<parameter type="int" name="type" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="projectSettingsListModelNotFound" fullname="ScreenPlay::projectSettingsListModelNotFound" href="screenplay.html#projectSettingsListModelNotFound" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="43" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void projectSettingsListModelNotFound()"/>
|
|
||||||
<function name="removeAllWallpaper" fullname="ScreenPlay::removeAllWallpaper" href="screenplay.html#removeAllWallpaper" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="48" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void removeAllWallpaper()"/>
|
|
||||||
<function name="removeWallpaperAt" fullname="ScreenPlay::removeWallpaperAt" href="screenplay.html#removeWallpaperAt" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="52" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void removeWallpaperAt(int at)">
|
|
||||||
<parameter type="int" name="at" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="requestProjectSettingsListModelAt" fullname="ScreenPlay::requestProjectSettingsListModelAt" href="screenplay.html#requestProjectSettingsListModelAt" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="49" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestProjectSettingsListModelAt(int index)">
|
|
||||||
<parameter type="int" name="index" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setAllWallpaperValue" fullname="ScreenPlay::setAllWallpaperValue" href="screenplay.html#setAllWallpaperValue" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="51" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setAllWallpaperValue(int key, int value)">
|
|
||||||
<parameter type="int" name="key" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setWallpaperValue" fullname="ScreenPlay::setWallpaperValue" href="screenplay.html#setWallpaperValue" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="50" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setWallpaperValue(int at, int key, int value)">
|
|
||||||
<parameter type="int" name="at" default=""/>
|
|
||||||
<parameter type="int" name="key" default=""/>
|
|
||||||
<parameter type="int" name="value" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="settings" fullname="ScreenPlay::settings" href="screenplay.html#settings" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="32" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="Settings *" signature="Settings * settings() const"/>
|
|
||||||
<variable name="m_settings" fullname="ScreenPlay::m_settings" href="screenplay.html#m_settings-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="35" type="Settings *" static="false"/>
|
|
||||||
<variable name="m_qGuiApplication" fullname="ScreenPlay::m_qGuiApplication" href="screenplay.html#m_qGuiApplication-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="37" type="int *" static="false"/>
|
|
||||||
<variable name="m_mlm" fullname="ScreenPlay::m_mlm" href="screenplay.html#m_mlm-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="36" type="MonitorListModel *" static="false"/>
|
|
||||||
<variable name="m_sdkc" fullname="ScreenPlay::m_sdkc" href="screenplay.html#m_sdkc-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="38" type="SDKConnector *" static="false"/>
|
|
||||||
<variable name="m_ilm" fullname="ScreenPlay::m_ilm" href="screenplay.html#m_ilm-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="34" type="InstalledListModel *" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="QMLUtilities" href="qmlutilities.html" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="19">
|
|
||||||
<function name="fixWindowsPath" fullname="QMLUtilities::fixWindowsPath" href="qmlutilities.html#fixWindowsPath" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="36" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int fixWindowsPath(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="openFolderInExplorer" fullname="QMLUtilities::openFolderInExplorer" href="qmlutilities.html#openFolderInExplorer" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="34" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void openFolderInExplorer(int url)">
|
|
||||||
<parameter type="int" name="url" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="requestNavigationActive" fullname="QMLUtilities::requestNavigationActive" href="qmlutilities.html#requestNavigationActive" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="26" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestNavigationActive(bool isActive)">
|
|
||||||
<parameter type="bool" name="isActive" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="requestToggleWallpaperConfiguration" fullname="QMLUtilities::requestToggleWallpaperConfiguration" href="qmlutilities.html#requestToggleWallpaperConfiguration" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="27" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void requestToggleWallpaperConfiguration()"/>
|
|
||||||
<function name="setNavigationActive" fullname="QMLUtilities::setNavigationActive" href="qmlutilities.html#setNavigationActive" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="31" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setNavigationActive(bool isActive)">
|
|
||||||
<parameter type="bool" name="isActive" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="setToggleWallpaperConfiguration" fullname="QMLUtilities::setToggleWallpaperConfiguration" href="qmlutilities.html#setToggleWallpaperConfiguration" status="internal" access="private" location="qmlutilities.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/qmlutilities.h" lineno="33" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void setToggleWallpaperConfiguration()"/>
|
|
||||||
</class>
|
|
||||||
<class name="ScreenPlayWidget" href="screenplaywidget.html" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="202">
|
|
||||||
<function name="Q_PROPERTY" fullname="ScreenPlayWidget::Q_PROPERTY" href="screenplaywidget.html#Q_PROPERTY" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="205" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="appIDChanged" fullname="ScreenPlayWidget::appIDChanged" href="screenplaywidget.html#appIDChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="272" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void appIDChanged(int appID)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="fullPathChanged" fullname="ScreenPlayWidget::fullPathChanged" href="screenplaywidget.html#fullPathChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="270" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void fullPathChanged(int fullPath)">
|
|
||||||
<parameter type="int" name="fullPath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="positionChanged" fullname="ScreenPlayWidget::positionChanged" href="screenplaywidget.html#positionChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="268" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void positionChanged(int position)">
|
|
||||||
<parameter type="int" name="position" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="previewImageChanged" fullname="ScreenPlayWidget::previewImageChanged" href="screenplaywidget.html#previewImageChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="266" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void previewImageChanged(int previewImage)">
|
|
||||||
<parameter type="int" name="previewImage" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_previewImage" fullname="ScreenPlayWidget::m_previewImage" href="screenplaywidget.html#m_previewImage-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="323" type="int" static="false"/>
|
|
||||||
<variable name="m_position" fullname="ScreenPlayWidget::m_position" href="screenplaywidget.html#m_position-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="324" type="int" static="false"/>
|
|
||||||
<variable name="m_process" fullname="ScreenPlayWidget::m_process" href="screenplaywidget.html#m_process-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="325" type="int *" static="false"/>
|
|
||||||
<variable name="m_appID" fullname="ScreenPlayWidget::m_appID" href="screenplaywidget.html#m_appID-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="327" type="int" static="false"/>
|
|
||||||
<variable name="m_fullPath" fullname="ScreenPlayWidget::m_fullPath" href="screenplaywidget.html#m_fullPath-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="326" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="main" qml-module-name="main" href="qml-main.html" status="internal" access="private" location="main.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/main.qml" lineno="12" title="main" fulltitle="main" subtitle="">
|
|
||||||
<function name="switchPage" fullname="main::switchPage" href="qml-main.html#switchPage-method" status="internal" access="private" location="main.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/main.qml" lineno="28" meta="qmlmethod"/>
|
|
||||||
</qmlclass>
|
|
||||||
<class name="Monitor" href="monitor.html" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="74">
|
|
||||||
<function name="Monitor" fullname="Monitor::Monitor" href="monitor.html#Monitor" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="77" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="Monitor()"/>
|
|
||||||
<function name="Monitor" fullname="Monitor::Monitor" href="monitor.html#Monitor-1" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="78" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" overload="true" overload-number="1" type="" signature="Monitor(int manufacturer, int model, int name, int size, int availableGeometry, int number, int availableVirtualGeometry, int geometry, int *screen)">
|
|
||||||
<parameter type="int" name="manufacturer" default=""/>
|
|
||||||
<parameter type="int" name="model" default=""/>
|
|
||||||
<parameter type="int" name="name" default=""/>
|
|
||||||
<parameter type="int" name="size" default=""/>
|
|
||||||
<parameter type="int" name="availableGeometry" default=""/>
|
|
||||||
<parameter type="int" name="number" default=""/>
|
|
||||||
<parameter type="int" name="availableVirtualGeometry" default=""/>
|
|
||||||
<parameter type="int" name="geometry" default=""/>
|
|
||||||
<parameter type="int *" name="screen" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_id" fullname="Monitor::m_id" href="monitor.html#m_id-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="80" type="int" static="false"/>
|
|
||||||
<variable name="m_size" fullname="Monitor::m_size" href="monitor.html#m_size-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="84" type="int" static="false"/>
|
|
||||||
<variable name="m_availableGeometry" fullname="Monitor::m_availableGeometry" href="monitor.html#m_availableGeometry-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="85" type="int" static="false"/>
|
|
||||||
<variable name="m_number" fullname="Monitor::m_number" href="monitor.html#m_number-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="88" type="int" static="false"/>
|
|
||||||
<variable name="m_model" fullname="Monitor::m_model" href="monitor.html#m_model-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="83" type="int" static="false"/>
|
|
||||||
<variable name="m_isVirtualDesktop" fullname="Monitor::m_isVirtualDesktop" href="monitor.html#m_isVirtualDesktop-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="89" type="bool" static="false"/>
|
|
||||||
<variable name="m_name" fullname="Monitor::m_name" href="monitor.html#m_name-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="81" type="int" static="false"/>
|
|
||||||
<variable name="m_availableVirtualGeometry" fullname="Monitor::m_availableVirtualGeometry" href="monitor.html#m_availableVirtualGeometry-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="86" type="int" static="false"/>
|
|
||||||
<variable name="m_manufacturer" fullname="Monitor::m_manufacturer" href="monitor.html#m_manufacturer-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="82" type="int" static="false"/>
|
|
||||||
<variable name="m_geometry" fullname="Monitor::m_geometry" href="monitor.html#m_geometry-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="87" type="int" static="false"/>
|
|
||||||
<variable name="m_isWallpaperActive" fullname="Monitor::m_isWallpaperActive" href="monitor.html#m_isWallpaperActive-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="91" type="bool" static="false"/>
|
|
||||||
<variable name="m_wallpaperPreviewPath" fullname="Monitor::m_wallpaperPreviewPath" href="monitor.html#m_wallpaperPreviewPath-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="92" type="int" static="false"/>
|
|
||||||
<variable name="m_screen" fullname="Monitor::m_screen" href="monitor.html#m_screen-var" status="internal" access="private" location="monitorlistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/monitorlistmodel.h" lineno="94" type="int *" static="false"/>
|
|
||||||
</class>
|
|
||||||
<class name="InstalledListFilter" href="installedlistfilter.html" status="internal" access="private" location="installedlistfilter.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistfilter.h" lineno="13">
|
|
||||||
<function name="resetFilter" fullname="InstalledListFilter::resetFilter" href="installedlistfilter.html#resetFilter" status="internal" access="private" location="installedlistfilter.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistfilter.h" lineno="21" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void resetFilter()"/>
|
|
||||||
<function name="sortByName" fullname="InstalledListFilter::sortByName" href="installedlistfilter.html#sortByName" status="internal" access="private" location="installedlistfilter.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/installedlistfilter.h" lineno="20" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void sortByName(int name)">
|
|
||||||
<parameter type="int" name="name" default=""/>
|
|
||||||
</function>
|
|
||||||
</class>
|
|
||||||
<class name="ProjectSettingsListModel" href="projectsettingslistmodel.html" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="20">
|
|
||||||
<function name="ProjectSettingsListModel" fullname="ProjectSettingsListModel::ProjectSettingsListModel" href="projectsettingslistmodel.html#ProjectSettingsListModel" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="27" meta="constructor" virtual="non" const="false" static="false" final="false" override="false" type="" signature="ProjectSettingsListModel()"/>
|
|
||||||
<function name="data" fullname="ProjectSettingsListModel::data" href="projectsettingslistmodel.html#data" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="29" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int data(const int &, int ) const override">
|
|
||||||
<parameter type="const int &" name="" default=""/>
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="roleNames" fullname="ProjectSettingsListModel::roleNames" href="projectsettingslistmodel.html#roleNames" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="30" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int roleNames() const override"/>
|
|
||||||
<function name="rowCount" fullname="ProjectSettingsListModel::rowCount" href="projectsettingslistmodel.html#rowCount" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="28" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int rowCount(const int &parent) const override">
|
|
||||||
<parameter type="const int &" name="parent" default="..."/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_projectSettings" fullname="ProjectSettingsListModel::m_projectSettings" href="projectsettingslistmodel.html#m_projectSettings-var" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="46" type="int" static="false"/>
|
|
||||||
<enum name="ProjectSettingsRole" fullname="ProjectSettingsListModel::ProjectSettingsRole" href="projectsettingslistmodel.html#ProjectSettingsRole-enum" status="internal" access="private" location="projectsettingslistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/projectsettingslistmodel.h" lineno="32">
|
|
||||||
<value name="NameRole" value="0"/>
|
|
||||||
<value name="IsHeadlineRole" value="1"/>
|
|
||||||
<value name="ValueRole" value="2"/>
|
|
||||||
</enum>
|
|
||||||
</class>
|
|
||||||
<class name="ScreenPlayWallpaper" href="screenplaywallpaper.html" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="61">
|
|
||||||
<function name="Q_PROPERTY" fullname="ScreenPlayWallpaper::Q_PROPERTY" href="screenplaywallpaper.html#Q_PROPERTY" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="64" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="int" signature="int Q_PROPERTY(int )">
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="appID" fullname="ScreenPlayWallpaper::appID" href="screenplaywallpaper.html#appID" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="125" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int appID() const"/>
|
|
||||||
<function name="appIDChanged" fullname="ScreenPlayWallpaper::appIDChanged" href="screenplaywallpaper.html#appIDChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="140" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void appIDChanged(int appID)">
|
|
||||||
<parameter type="int" name="appID" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="previewImage" fullname="ScreenPlayWallpaper::previewImage" href="screenplaywallpaper.html#previewImage" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="120" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int previewImage() const"/>
|
|
||||||
<function name="previewImageChanged" fullname="ScreenPlayWallpaper::previewImageChanged" href="screenplaywallpaper.html#previewImageChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="138" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void previewImageChanged(int previewImage)">
|
|
||||||
<parameter type="int" name="previewImage" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="projectPath" fullname="ScreenPlayWallpaper::projectPath" href="screenplaywallpaper.html#projectPath" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="115" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int projectPath() const"/>
|
|
||||||
<function name="projectPathChanged" fullname="ScreenPlayWallpaper::projectPathChanged" href="screenplaywallpaper.html#projectPathChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="137" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void projectPathChanged(int projectPath)">
|
|
||||||
<parameter type="int" name="projectPath" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="projectSettingsListModelAt" fullname="ScreenPlayWallpaper::projectSettingsListModelAt" href="screenplaywallpaper.html#projectSettingsListModelAt" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="139" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void projectSettingsListModelAt(ProjectSettingsListModel *li)">
|
|
||||||
<parameter type="ProjectSettingsListModel *" name="li" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="screenNumber" fullname="ScreenPlayWallpaper::screenNumber" href="screenplaywallpaper.html#screenNumber" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="110" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int screenNumber() const"/>
|
|
||||||
<function name="type" fullname="ScreenPlayWallpaper::type" href="screenplaywallpaper.html#type" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="130" meta="plain" virtual="non" const="true" static="false" final="false" override="false" type="int" signature="int type() const"/>
|
|
||||||
<function name="typeChanged" fullname="ScreenPlayWallpaper::typeChanged" href="screenplaywallpaper.html#typeChanged" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="141" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void typeChanged(int type)">
|
|
||||||
<parameter type="int" name="type" default=""/>
|
|
||||||
</function>
|
|
||||||
<variable name="m_previewImage" fullname="ScreenPlayWallpaper::m_previewImage" href="screenplaywallpaper.html#m_previewImage-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="193" type="int" static="false"/>
|
|
||||||
<variable name="m_appID" fullname="ScreenPlayWallpaper::m_appID" href="screenplaywallpaper.html#m_appID-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="198" type="int" static="false"/>
|
|
||||||
<variable name="m_type" fullname="ScreenPlayWallpaper::m_type" href="screenplaywallpaper.html#m_type-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="199" type="int" static="false"/>
|
|
||||||
<variable name="m_projectPath" fullname="ScreenPlayWallpaper::m_projectPath" href="screenplaywallpaper.html#m_projectPath-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="192" type="int" static="false"/>
|
|
||||||
<variable name="m_projectSettingsListModel" fullname="ScreenPlayWallpaper::m_projectSettingsListModel" href="screenplaywallpaper.html#m_projectSettingsListModel-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="196" type="int" static="false"/>
|
|
||||||
<variable name="m_process" fullname="ScreenPlayWallpaper::m_process" href="screenplaywallpaper.html#m_process-var" status="internal" access="private" location="screenplay.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/screenplay.h" lineno="194" type="int *" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlclass name="Background" qml-module-name="Background" href="qml-background.html" status="internal" access="private" location="Background.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Background.qml" lineno="6" title="Background" fulltitle="Background" subtitle="">
|
|
||||||
<qmlproperty name="myDate" fullname="Background::myDate" href="qml-background.html#myDate-prop" status="internal" access="private" location="Background.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Background.qml" lineno="23" type="var" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="ImageSelector" qml-module-name="ImageSelector" href="qml-imageselector.html" status="active" access="public" since="ScreenPlay 0.2" title="ImageSelector" fulltitle="ImageSelector" subtitle="" brief="A image selector with popup preview">
|
|
||||||
<contents name="example-usage" title="Example Usage" level="1"/>
|
|
||||||
<qmlproperty name="imageSource" fullname="ImageSelector::imageSource" href="qml-imageselector.html#imageSource-prop" status="active" access="public" type="string" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<qmlclass name="Tag" qml-module-name="Tag" href="qml-tag.html" status="internal" access="private" location="Tag.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/Tag.qml" lineno="5" title="Tag" fulltitle="Tag" subtitle="">
|
|
||||||
<function name="removeThis" fullname="Tag::removeThis" href="qml-tag.html#removeThis-signal" status="internal" access="private" location="Tag.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/Tag.qml" lineno="12" meta="qmlsignal"/>
|
|
||||||
<qmlproperty name="itemIndex" fullname="Tag::itemIndex" href="qml-tag.html#itemIndex-prop" status="internal" access="private" location="Tag.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/Tag.qml" lineno="10" type="int" attached="false" writable="true"/>
|
|
||||||
<qmlproperty name="text" fullname="Tag::text" href="qml-tag.html#text-prop" status="internal" access="private" location="Tag.qml" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/qml/Common/Tag.qml" lineno="11" type="alias" attached="false" writable="true"/>
|
|
||||||
</qmlclass>
|
|
||||||
<class name="ProfileListModel" href="profilelistmodel.html" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="23">
|
|
||||||
<function name="data" fullname="ProfileListModel::data" href="profilelistmodel.html#data" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="36" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int data(const int &, int ) const override">
|
|
||||||
<parameter type="const int &" name="" default=""/>
|
|
||||||
<parameter type="int" name="" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="getProfileByName" fullname="ProfileListModel::getProfileByName" href="profilelistmodel.html#getProfileByName" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="39" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="bool" signature="bool getProfileByName(int id, Profile *profile)">
|
|
||||||
<parameter type="int" name="id" default=""/>
|
|
||||||
<parameter type="Profile *" name="profile" default=""/>
|
|
||||||
</function>
|
|
||||||
<function name="loadProfiles" fullname="ProfileListModel::loadProfiles" href="profilelistmodel.html#loadProfiles" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="38" meta="plain" virtual="non" const="false" static="false" final="false" override="false" type="void" signature="void loadProfiles()"/>
|
|
||||||
<function name="roleNames" fullname="ProfileListModel::roleNames" href="profilelistmodel.html#roleNames" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="37" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int roleNames() const override"/>
|
|
||||||
<function name="rowCount" fullname="ProfileListModel::rowCount" href="profilelistmodel.html#rowCount" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="35" meta="plain" virtual="non" const="true" static="false" final="false" override="true" type="int" signature="int rowCount(const int &parent) const override">
|
|
||||||
<parameter type="const int &" name="parent" default="..."/>
|
|
||||||
</function>
|
|
||||||
<enum name="RoleNames" fullname="ProfileListModel::RoleNames" href="profilelistmodel.html#RoleNames-enum" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="29">
|
|
||||||
<value name="NameRole" value="0"/>
|
|
||||||
<value name="NumberRole" value="1"/>
|
|
||||||
</enum>
|
|
||||||
<variable name="m_localStoragePath" fullname="ProfileListModel::m_localStoragePath" href="profilelistmodel.html#m_localStoragePath-var" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="40" type="int" static="false"/>
|
|
||||||
<variable name="m_roleNames" fullname="ProfileListModel::m_roleNames" href="profilelistmodel.html#m_roleNames-var" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="43" type="int" static="false"/>
|
|
||||||
<variable name="m_profileList" fullname="ProfileListModel::m_profileList" href="profilelistmodel.html#m_profileList-var" status="internal" access="private" location="profilelistmodel.h" filepath="C:/Users/Eli/Code/Qt/ScreenPlayInternal/ScreenPlay/ScreenPlay/src/profilelistmodel.h" lineno="44" type="int" static="false"/>
|
|
||||||
</class>
|
|
||||||
<qmlmodule name=""Common"" qml-module-name=""Common"" qml-module-version="." href="common-qmlmodule.html" status="internal" seen="false" title="" members="ImageSelector"/>
|
|
||||||
</namespace>
|
|
||||||
</INDEX>
|
|
Binary file not shown.
Before Width: | Height: | Size: 13 KiB |
@ -1,19 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<!-- ImageSelector.qml -->
|
|
||||||
<title>List of All Members for ImageSelector | Qt </title>
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
|
||||||
<link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css"/>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container-fullwidth nav"><p class="logo">ScreenPlay Code Docs</p></div>
|
|
||||||
<div class="wrapper container">
|
|
||||||
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
|
|
||||||
<h1 class="title">List of All Members for ImageSelector</h1>
|
|
||||||
<p>This is the complete list of members for <a href="qml-imageselector.html">ImageSelector</a>, including inherited members.</p>
|
|
||||||
<hr/><p class="footer center">Copyright Aimber GBR</p>
|
|
||||||
</div></body>
|
|
||||||
</html>
|
|
Binary file not shown.
Before Width: | Height: | Size: 13 KiB |
@ -1,48 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<!-- ImageSelector.qml -->
|
|
||||||
<title>ImageSelector QML Type | Qt </title>
|
|
||||||
<link rel="stylesheet" type="text/css" href="css/style.css"/>
|
|
||||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container-fullwidth nav">
|
|
||||||
<div class="container navWrapper"><span class="logo">ScreenPlay Code Docs </span>
|
|
||||||
<span class="navHome"><a href= "index.html">Home</a></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="wrapper container">
|
|
||||||
<h2>C++</h2>
|
|
||||||
<hr/>
|
|
||||||
<ul>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>QML</h2>
|
|
||||||
<hr/>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
<li><a href="html/qml-imageselector.html">Image Selector</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr/>
|
|
||||||
<p class="footer center">Copyright Aimber GBR</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
|||||||
#include "app.h"
|
|
||||||
#include <QGuiApplication>
|
#include <QGuiApplication>
|
||||||
|
|
||||||
|
#include "app.h"
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||||
@ -8,6 +9,8 @@ int main(int argc, char* argv[])
|
|||||||
|
|
||||||
QGuiApplication qtGuiApp(argc, argv);
|
QGuiApplication qtGuiApp(argc, argv);
|
||||||
|
|
||||||
|
using namespace ScreenPlay;
|
||||||
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
||||||
qmlRegisterSingletonType<App>("ScreenPlay", 1, 0, "ScreenPlay", [](QQmlEngine* engine, QJSEngine*) -> QObject* {
|
qmlRegisterSingletonType<App>("ScreenPlay", 1, 0, "ScreenPlay", [](QQmlEngine* engine, QJSEngine*) -> QObject* {
|
||||||
engine->setObjectOwnership(App::instance(), QQmlEngine::ObjectOwnership::CppOwnership);
|
engine->setObjectOwnership(App::instance(), QQmlEngine::ObjectOwnership::CppOwnership);
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
#include "create.h"
|
#include "create.h"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class Create
|
\class ScreenPlay::Create
|
||||||
\since 1.0
|
\inmodule ScreenPlay
|
||||||
\brief Baseclass for creating wallapers, widgets and the corresponding
|
\brief Baseclass for creating wallapers, widgets and the corresponding
|
||||||
wizards. As for this writing (April 2019) it is solely used to
|
wizards. As for this writing (April 2019) it is solely used to
|
||||||
import webm wallpaper and create the gif/web 5 second previews.
|
import webm wallpaper and create the gif/web 5 second previews.
|
||||||
\todo
|
|
||||||
- This class would need to be refactored to be used in more creation types.
|
|
||||||
*/
|
*/
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
Create::Create(const shared_ptr<GlobalVariables>& globalVariables, QObject* parent)
|
Create::Create(const shared_ptr<GlobalVariables>& globalVariables, QObject* parent)
|
||||||
|
@ -3,15 +3,14 @@
|
|||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class CreateImportVideo
|
\class ScreenPlay::CreateImportVideo
|
||||||
\brief This class imports (copies) and creates wallaper previews. This
|
\inmodule ScreenPlay
|
||||||
class only exsits as long as the user creates a wallpaper and gets
|
\brief This class imports (copies) and creates wallaper previews.
|
||||||
destroyed if the creation was successful or not.
|
|
||||||
|
|
||||||
The state get propagated via createWallpaperStateChanged(ImportVideoState state);
|
This lass only exsits as long as the user creates a wallpaper and gets
|
||||||
|
destroyed if the creation was successful or not.
|
||||||
|
The state get propagated via createWallpaperStateChanged(ImportVideoState state);
|
||||||
|
|
||||||
\todo
|
|
||||||
- Maybe: Replace with QThread to avoid running QCoreApplication::processEvents();?
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
CreateImportVideo::CreateImportVideo(QObject* parent)
|
CreateImportVideo::CreateImportVideo(QObject* parent)
|
||||||
|
@ -3,6 +3,15 @@
|
|||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
#include <QVersionNumber>
|
#include <QVersionNumber>
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::GlobalVariables
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief GlobalVariables.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
class GlobalVariables : public QObject {
|
class GlobalVariables : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
@ -94,3 +103,4 @@ private:
|
|||||||
QUrl m_widgetExecutablePath;
|
QUrl m_widgetExecutablePath;
|
||||||
QVersionNumber m_version {1,0,0};
|
QVersionNumber m_version {1,0,0};
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#include "installedlistfilter.h"
|
#include "installedlistfilter.h"
|
||||||
|
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class Installed List Filder
|
\class ScreenPlay::InstalledListFilter
|
||||||
|
\inmodule ScreenPlay
|
||||||
\brief Proxy between Installed List Model and QML view to filter items.
|
\brief Proxy between Installed List Model and QML view to filter items.
|
||||||
Maybe this class could be merged with the InstalledListModel...
|
Maybe this class could be merged with the InstalledListModel...
|
||||||
|
|
||||||
\todo
|
|
||||||
- Expand filter functionality
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
namespace ScreenPlay {
|
|
||||||
InstalledListFilter::InstalledListFilter(const shared_ptr<InstalledListModel>& ilm)
|
InstalledListFilter::InstalledListFilter(const shared_ptr<InstalledListModel>& ilm)
|
||||||
: QSortFilterProxyModel()
|
: QSortFilterProxyModel()
|
||||||
, m_ilm(ilm)
|
, m_ilm(ilm)
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
#include "installedlistmodel.h"
|
#include "installedlistmodel.h"
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class Installed List Model
|
\class ScreenPlay::InstalledListModel
|
||||||
|
\inmodule ScreenPlay
|
||||||
\brief Lists all installed wallpapers, widgets etc. from a given Path
|
\brief Lists all installed wallpapers, widgets etc. from a given Path
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace ScreenPlay {
|
|
||||||
|
|
||||||
InstalledListModel::InstalledListModel(
|
InstalledListModel::InstalledListModel(
|
||||||
const shared_ptr<GlobalVariables>& globalVariables,
|
const shared_ptr<GlobalVariables>& globalVariables,
|
||||||
QObject* parent)
|
QObject* parent)
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::MonitorListModel
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief MonitorListModel.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
MonitorListModel::MonitorListModel(QObject* parent)
|
MonitorListModel::MonitorListModel(QObject* parent)
|
||||||
: QAbstractListModel(parent)
|
: QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
|
@ -8,6 +8,13 @@
|
|||||||
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::ProfileListModel
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief ProfileListModel.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
ProfileListModel::ProfileListModel(const shared_ptr<GlobalVariables>& globalVariables, QObject* parent)
|
ProfileListModel::ProfileListModel(const shared_ptr<GlobalVariables>& globalVariables, QObject* parent)
|
||||||
: QAbstractListModel(parent)
|
: QAbstractListModel(parent)
|
||||||
, m_globalVariables { globalVariables }
|
, m_globalVariables { globalVariables }
|
||||||
|
@ -1,13 +1,19 @@
|
|||||||
#include "projectsettingslistmodel.h"
|
#include "projectsettingslistmodel.h"
|
||||||
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::ProjectSettingsListModel
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief ProjectSettingsListModel.
|
||||||
|
|
||||||
|
*/
|
||||||
ProjectSettingsListModel::ProjectSettingsListModel(QString file, QObject* parent)
|
ProjectSettingsListModel::ProjectSettingsListModel(QString file, QObject* parent)
|
||||||
: QAbstractListModel(parent)
|
: QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
init(file);
|
init(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int ProjectSettingsListModel::rowCount(const QModelIndex& parent) const
|
int ProjectSettingsListModel::rowCount(const QModelIndex& parent) const
|
||||||
{
|
{
|
||||||
// For list models only the root node (an invalid parent) should return the list's size. For all
|
// For list models only the root node (an invalid parent) should return the list's size. For all
|
||||||
@ -40,7 +46,7 @@ QVariant ProjectSettingsListModel::data(const QModelIndex& index, int role) cons
|
|||||||
|
|
||||||
QHash<int, QByteArray> ProjectSettingsListModel::roleNames() const
|
QHash<int, QByteArray> ProjectSettingsListModel::roleNames() const
|
||||||
{
|
{
|
||||||
static const QHash<int, QByteArray> roles{
|
static const QHash<int, QByteArray> roles {
|
||||||
{ NameRole, "name" },
|
{ NameRole, "name" },
|
||||||
{ IsHeadlineRole, "isHeadline" },
|
{ IsHeadlineRole, "isHeadline" },
|
||||||
{ ValueRole, "value" },
|
{ ValueRole, "value" },
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::ScreenPlayManager
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief ScreenPlayManager.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
ScreenPlayManager::ScreenPlayManager(
|
ScreenPlayManager::ScreenPlayManager(
|
||||||
const shared_ptr<GlobalVariables>& globalVariables,
|
const shared_ptr<GlobalVariables>& globalVariables,
|
||||||
const shared_ptr<MonitorListModel>& mlm,
|
const shared_ptr<MonitorListModel>& mlm,
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
#include "screenplaywallpaper.h"
|
#include "screenplaywallpaper.h"
|
||||||
|
|
||||||
/*!
|
|
||||||
\class ScreenPlayWallpaper
|
|
||||||
\brief Used for ...
|
|
||||||
*/
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::ScreenPlayWallpaper
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief ScreenPlayWallpaper.
|
||||||
|
*/
|
||||||
|
|
||||||
ScreenPlayWallpaper::ScreenPlayWallpaper(
|
ScreenPlayWallpaper::ScreenPlayWallpaper(
|
||||||
const QVector<int>& screenNumber,
|
const QVector<int>& screenNumber,
|
||||||
const shared_ptr<GlobalVariables>& globalVariables,
|
const shared_ptr<GlobalVariables>& globalVariables,
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
#include "screenplaywidget.h"
|
#include "screenplaywidget.h"
|
||||||
|
|
||||||
/*!
|
|
||||||
\class ScreenPlayWidget
|
|
||||||
\brief Used for ...
|
|
||||||
*/
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::ScreenPlayWidget
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief ScreenPlayWidget.
|
||||||
|
*/
|
||||||
|
|
||||||
ScreenPlayWidget::ScreenPlayWidget(
|
ScreenPlayWidget::ScreenPlayWidget(
|
||||||
const QString& appID,
|
const QString& appID,
|
||||||
const shared_ptr<GlobalVariables>& globalVariables,
|
const shared_ptr<GlobalVariables>& globalVariables,
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
#include "sdkconnector.h"
|
#include "sdkconnector.h"
|
||||||
|
|
||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ScreenPlay::SDKConnector
|
||||||
|
\inmodule ScreenPlay
|
||||||
|
\brief SDKConnector.
|
||||||
|
*/
|
||||||
|
|
||||||
SDKConnector::SDKConnector(QObject* parent)
|
SDKConnector::SDKConnector(QObject* parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
, m_server { make_unique<QLocalServer>() }
|
, m_server { make_unique<QLocalServer>() }
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
|
|
||||||
|
namespace ScreenPlay {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class Settings
|
\class ScreenPlay::Settings
|
||||||
|
\inmodule ScreenPlay
|
||||||
\brief Used for:
|
\brief Used for:
|
||||||
\list
|
\list
|
||||||
\i User configuration
|
\i User configuration
|
||||||
@ -10,8 +14,6 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace ScreenPlay {
|
|
||||||
|
|
||||||
Settings::Settings(const shared_ptr<GlobalVariables>& globalVariables,
|
Settings::Settings(const shared_ptr<GlobalVariables>& globalVariables,
|
||||||
QObject* parent)
|
QObject* parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
namespace ScreenPlay {
|
namespace ScreenPlay {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class Global QML Utilities
|
\class ScreenPlay::Util
|
||||||
|
\inmodule ScreenPlay
|
||||||
\brief Easy to use global object to use to:
|
\brief Easy to use global object to use to:
|
||||||
\list
|
\list
|
||||||
\i Navigate the main menu
|
\i Navigate the main menu
|
||||||
@ -166,7 +167,6 @@ void Util::openFolderInExplorer(const QString& url) const
|
|||||||
explorer.setArguments({ QDir::toNativeSeparators(parameter) });
|
explorer.setArguments({ QDir::toNativeSeparators(parameter) });
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
qDebug() << explorer.arguments();
|
|
||||||
explorer.startDetached();
|
explorer.startDetached();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
setlocal EnableExtensions
|
|
||||||
|
|
||||||
set PATH=%PATH%;C:\Qt\Tools\QtCreator\bin
|
|
||||||
set PATH=%PATH%;C:\Qt\5.14.0\msvc2017_64\bin
|
|
||||||
set root=%cd%
|
|
||||||
|
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsx86_amd64.bat"
|
|
||||||
|
|
||||||
mkdir BUILD
|
|
||||||
cd BUILD
|
|
||||||
|
|
||||||
echo "Begin build of ScreenPlay "
|
|
||||||
qmake.exe ../ScreenPlay.pro -spec win32-msvc "CONFIG+=release"
|
|
||||||
jom.exe qmake_all
|
|
||||||
jom.exe -j8
|
|
||||||
jom.exe install
|
|
||||||
echo "Build ScreenPlay finished!"
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
setlocal EnableExtensions
|
|
||||||
|
|
||||||
set PATH=%PATH%;C:\Qt\Tools\QtCreator\bin
|
|
||||||
set PATH=%PATH%;C:\Qt\5.14.0\msvc2017_64\bin
|
|
||||||
set root=%cd%
|
|
||||||
|
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsx86_amd64.bat"
|
|
||||||
|
|
||||||
echo "Begin packaging"
|
|
||||||
|
|
||||||
mkdir PACKAGE
|
|
||||||
cd BUILD
|
|
||||||
|
|
||||||
echo "Copy ScreenPlay"
|
|
||||||
xcopy /s /y ScreenPlay\release ..\PACKAGE
|
|
||||||
echo "Copy ScreenPlaySDK"
|
|
||||||
xcopy /s /y ScreenPlaySDK\release ..\PACKAGE
|
|
||||||
echo "Copy ScreenPlayWidget"
|
|
||||||
xcopy /s /y ScreenPlayWidget\release ..\PACKAGE
|
|
||||||
echo "Copy ScreenPlayWallpaper"
|
|
||||||
xcopy /s /y ScreenPlayWallpaper\release ..\PACKAGE
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
windeployqt.exe --release --qmldir ScreenPlay/qml PACKAGE/ScreenPlay.exe
|
|
||||||
windeployqt.exe --release --qmldir ScreenPlayWallpaper/qml PACKAGE/ScreenPlayWallpaper.exe
|
|
||||||
|
|
||||||
cd PACKAGE
|
|
||||||
|
|
||||||
del /f *.cpp
|
|
||||||
del /f *.moc
|
|
||||||
del /f *.h
|
|
||||||
del /f *.obj
|
|
||||||
del /f *.res
|
|
||||||
del /f *.exp
|
|
||||||
del /f *.lib
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user