MuseScore/src/project/iprojectconfiguration.h
RomanPudashkin 5264afad5c
Merge pull request #11479 from nikolaosginos/file-dialog-default-path
fix #11082: Changed file open/save dialog's default path
2022-05-01 17:04:06 +02:00

115 lines
4.3 KiB
C++

/*
* SPDX-License-Identifier: GPL-3.0-only
* MuseScore-CLA-applies
*
* MuseScore
* Music Composition & Notation
*
* Copyright (C) 2021 MuseScore BVBA and others
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef MU_PROJECT_IPROJECTCONFIGURATION_H
#define MU_PROJECT_IPROJECTCONFIGURATION_H
#include <QStringList>
#include <QColor>
#include "modularity/imoduleexport.h"
#include "io/path.h"
#include "async/channel.h"
#include "async/notification.h"
#include "inotationproject.h"
#include "projecttypes.h"
namespace mu::project {
class IProjectConfiguration : MODULE_EXPORT_INTERFACE
{
INTERFACE_ID(IProjectConfiguration)
public:
virtual ~IProjectConfiguration() = default;
virtual io::paths recentProjectPaths() const = 0;
virtual void setRecentProjectPaths(const io::paths& recentScorePaths) = 0;
virtual async::Channel<io::paths> recentProjectPathsChanged() const = 0;
virtual io::path myFirstProjectPath() const = 0;
virtual io::paths availableTemplateDirs() const = 0;
virtual io::path templateCategoriesJsonPath(const io::path& templatesDir) const = 0;
virtual io::path userTemplatesPath() const = 0;
virtual void setUserTemplatesPath(const io::path& path) = 0;
virtual async::Channel<io::path> userTemplatesPathChanged() const = 0;
virtual io::path defaultProjectsPath() const = 0;
virtual void setDefaultProjectsPath(const io::path& path) = 0;
virtual io::path lastOpenedProjectsPath() const = 0;
virtual void setLastOpenedProjectsPath(const io::path& path) = 0;
virtual io::path lastSavedProjectsPath() const = 0;
virtual void setLastSavedProjectsPath(const io::path& path) = 0;
virtual io::path userProjectsPath() const = 0;
virtual void setUserProjectsPath(const io::path& path) = 0;
virtual async::Channel<io::path> userProjectsPathChanged() const = 0;
virtual io::path cloudProjectsPath() const = 0;
virtual bool isCloudProject(const io::path& path) const = 0;
virtual io::path defaultSavingFilePath(INotationProjectPtr project,
const QString& filenameAddition = QString(), const QString& suffix = QString()) const = 0;
virtual bool shouldAskSaveLocationType() const = 0;
virtual void setShouldAskSaveLocationType(bool shouldAsk) = 0;
virtual SaveLocationType lastUsedSaveLocationType() const = 0;
virtual void setLastUsedSaveLocationType(SaveLocationType type) = 0;
virtual bool shouldWarnBeforePublishing() const = 0;
virtual void setShouldWarnBeforePublishing(bool shouldWarn) = 0;
virtual QColor templatePreviewBackgroundColor() const = 0;
virtual async::Notification templatePreviewBackgroundChanged() const = 0;
enum class PreferredScoreCreationMode {
FromInstruments,
FromTemplate
};
virtual PreferredScoreCreationMode preferredScoreCreationMode() const = 0;
virtual void setPreferredScoreCreationMode(PreferredScoreCreationMode mode) = 0;
virtual MigrationOptions migrationOptions(MigrationType type) const = 0;
virtual void setMigrationOptions(MigrationType type, const MigrationOptions& opt, bool persistent = true) = 0;
virtual bool isAutoSaveEnabled() const = 0;
virtual void setAutoSaveEnabled(bool enabled) = 0;
virtual async::Channel<bool> autoSaveEnabledChanged() const = 0;
virtual int autoSaveIntervalMinutes() const = 0;
virtual void setAutoSaveInterval(int minutes) = 0;
virtual async::Channel<int> autoSaveIntervalChanged() const = 0;
virtual io::path newProjectTemporaryPath() const = 0;
virtual bool isAccessibleEnabled() const = 0;
virtual bool shouldDestinationFolderBeOpenedOnExport() const = 0;
virtual void setShouldDestinationFolderBeOpenedOnExport(bool shouldDestinationFolderBeOpenedOnExport) = 0;
};
}
#endif // MU_PROJECT_IPROJECTCONFIGURATION_H