<file>src/gui/filedetails/FileDetailsView.qml</file>
<file>src/gui/filedetails/FileDetailsWindow.qml</file>
<file>src/gui/filedetails/FileTag.qml</file>
+ <file>src/gui/filedetails/NCInputDateField.qml</file>
<file>src/gui/filedetails/NCInputTextEdit.qml</file>
<file>src/gui/filedetails/NCInputTextField.qml</file>
<file>src/gui/filedetails/NCTabButton.qml</file>
<file>src/gui/ResolveConflictsDialog.qml</file>
<file>src/gui/ConflictDelegate.qml</file>
<file>src/gui/ConflictItemFileInfo.qml</file>
- <file>src/gui/filedetails/NCInputDateField.qml</file>
+ <file>src/gui/macOS/ui/FileProviderSettings.qml</file>
</qresource>
</RCC>
--- /dev/null
+/*
+ * Copyright (C) 2022 by Claudio Cambra <claudio.cambra@nextcloud.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ */
+
+import QtQuick 2.15
+
+Item {
+ Rectangle {
+ color: "red"
+ width: 100
+ height: 100
+ }
+}
const auto macVfsSettingsContainer = QWidget::createWindowContainer(macVfsSettingsView);
_ui->stack->addWidget(macVfsSettingsContainer);
- //macVfsSettingsView->setSource()
+ const auto qmlSourceUrl = QUrl("qrc:/qml/src/gui/macOS/ui/FileProviderSettings.qml");
+ macVfsSettingsView->setSource(qmlSourceUrl);
connect(_ui->stack, &QStackedWidget::currentChanged,
this, &SettingsDialog::currentPageChanged);