-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add project-level option to disable the Execute project button
- Renamed SpineToolboxProject.settings to app_settings, since settings now means project-level settings - Implemented a ProjectSettings class which holds the settings - The settings are now stored in project.json bumping LATEST_PROJECT_VERSION to 11 - The only project setting available is enable_execute_all which enables or disables the Execute Project button. - Implemented the enable_execute_all setting - Improved tooltips on the execute buttons Currently, there is no interface in Toolbox to change the project settings so it must be done through editing project.json by hand. This is intended. Re #2237
- Loading branch information
Showing
20 changed files
with
695 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
###################################################################################################################### | ||
# Copyright (C) 2017-2022 Spine project consortium | ||
# This file is part of Spine Toolbox. | ||
# Spine Toolbox is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General | ||
# Public License as published by the Free Software Foundation, either version 3 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 Lesser General | ||
# Public License for more details. You should have received a copy of the GNU Lesser General Public License along with | ||
# this program. If not, see <http://www.gnu.org/licenses/>. | ||
###################################################################################################################### | ||
"""Contains project-specific settings.""" | ||
|
||
import dataclasses | ||
|
||
|
||
@dataclasses.dataclass | ||
class ProjectSettings: | ||
"""Spine Toolbox project settings.""" | ||
|
||
enable_execute_all: bool = True | ||
|
||
def to_dict(self): | ||
"""Serializes the settings into a dictionary. | ||
Returns: | ||
dict: serialized settings | ||
""" | ||
return dataclasses.asdict(self) | ||
|
||
@staticmethod | ||
def from_dict(settings_dict): | ||
"""Deserializes settings from dictionary. | ||
Args: | ||
settings_dict (dict): serialized settings | ||
Returns: | ||
ProjectSettings: deserialized settings | ||
""" | ||
return ProjectSettings(**settings_dict) |
Oops, something went wrong.