mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Cleanup
This commit is contained in:
parent
a6f15329d0
commit
2ba8aff42b
@ -14,7 +14,6 @@
|
||||
#include <QQuickView>
|
||||
#include <QScreen>
|
||||
#include <QStringList>
|
||||
#include <QTimer>
|
||||
#include <QTransform>
|
||||
#include <QUrl>
|
||||
#include <QVariant>
|
||||
@ -138,6 +137,7 @@ int main(int argc, char* argv[])
|
||||
settings.loadActiveProfiles();
|
||||
|
||||
QQmlApplicationEngine mainWindowEngine;
|
||||
|
||||
qmlRegisterType<GAnalytics>("analytics", 0, 1, "Tracker");
|
||||
mainWindowEngine.rootContext()->setContextProperty("screenPlay", &screenPlay);
|
||||
mainWindowEngine.rootContext()->setContextProperty("screenPlayCreate", &create);
|
||||
|
@ -38,14 +38,14 @@ Rectangle {
|
||||
}
|
||||
}
|
||||
|
||||
Connections {
|
||||
target: screenPlayCreate
|
||||
onLocalWorkshopCreationStatusChanged: {
|
||||
if (status === Create.State.Started) {
|
||||
loader.setSource("CreateImportStatus.qml")
|
||||
}
|
||||
}
|
||||
}
|
||||
// Connections {
|
||||
// target: screenPlayCreate
|
||||
// onLocalWorkshopCreationStatusChanged: {
|
||||
// if (status === Create.State.Started) {
|
||||
// loader.setSource("CreateImportStatus.qml")
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
Connections {
|
||||
target: loader.item
|
||||
|
@ -23,7 +23,9 @@ Item {
|
||||
onCreateWallpaperStateChanged: {
|
||||
print(state)
|
||||
if (state === Create.State.ConvertingPreviewGifError
|
||||
|| state === Create.State.ConvertingPreviewVideoError) {
|
||||
|| state === Create.State.ConvertingPreviewVideoError
|
||||
|| state === Create.State.AnalyseVideoError)
|
||||
{
|
||||
createNew.state = "error"
|
||||
}
|
||||
}
|
||||
@ -269,6 +271,7 @@ Item {
|
||||
|
||||
Flickable {
|
||||
anchors.fill: parent
|
||||
clip: true
|
||||
contentHeight: txtFFMPEG.paintedHeight
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
snapMode: ScrollBar.SnapOnRelease
|
||||
@ -277,7 +280,9 @@ Item {
|
||||
Text {
|
||||
id: txtFFMPEG
|
||||
anchors {
|
||||
fill: parent
|
||||
top: parent.top
|
||||
right: parent.right
|
||||
left: parent.left
|
||||
margins: 20
|
||||
}
|
||||
wrapMode: Text.WordWrap
|
||||
@ -285,6 +290,12 @@ Item {
|
||||
renderType: Text.NativeRendering
|
||||
height: txtFFMPEG.paintedHeight
|
||||
}
|
||||
Connections {
|
||||
target: screenPlayCreate
|
||||
onProcessOutput: {
|
||||
txtFFMPEG.text = text
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -73,6 +73,7 @@ Rectangle {
|
||||
onCreateWallpaperStateChanged: {
|
||||
if (state === Create.State.ConvertingPreviewGif) {
|
||||
txtConvert.text = qsTr("Generating preview gif...")
|
||||
|
||||
}
|
||||
|
||||
if (state === Create.State.ConvertingPreviewGifFinished) {
|
||||
|
@ -17,6 +17,7 @@ Item {
|
||||
|
||||
Flickable {
|
||||
anchors.fill: parent
|
||||
focus: true
|
||||
contentHeight: txtFFMPEG.paintedHeight
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
snapMode: ScrollBar.SnapOnRelease
|
||||
@ -25,13 +26,16 @@ Item {
|
||||
Text {
|
||||
id: txtFFMPEG
|
||||
anchors {
|
||||
fill: parent
|
||||
top: parent.top
|
||||
right: parent.right
|
||||
left: parent.left
|
||||
margins: 20
|
||||
}
|
||||
wrapMode: Text.WordWrap
|
||||
color: "#626262"
|
||||
renderType: Text.NativeRendering
|
||||
height: txtFFMPEG.paintedHeight
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,8 @@ void ScreenPlay::removeAllWallpaper()
|
||||
|
||||
void ScreenPlay::requestProjectSettingsListModelAt(int index)
|
||||
{
|
||||
Q_ASSERT(index < m_screenPlayWallpaperList.size());
|
||||
qDebug() << index << m_mlm->size();
|
||||
//Q_ASSERT(index > m_mlm->size());
|
||||
for (int i = 0; i < m_screenPlayWallpaperList.count(); ++i) {
|
||||
if (m_screenPlayWallpaperList.at(i).data()->screenNumber().at(0) == index) {
|
||||
emit projectSettingsListModelFound(m_screenPlayWallpaperList.at(i).data()->projectSettingsListModel().data(), m_screenPlayWallpaperList.at(i).data()->type());
|
||||
|
Loading…
Reference in New Issue
Block a user