Source code for spinetoolbox.config

######################################################################################################################
# Copyright (C) 2017-2021 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/>.
######################################################################################################################

"""
Application constants and style sheets

:author: P. Savolainen (VTT)
:date:   2.1.2018
"""

import sys
import os
from pathlib import Path

[docs]REQUIRED_SPINE_ENGINE_VERSION = "0.10.0"
[docs]REQUIRED_SPINEDB_API_VERSION = "0.12.1"
[docs]PREFERRED_SPINE_ITEMS_VERSION = "0.7.5"
[docs]LATEST_PROJECT_VERSION = 6
# For the Add/Update SpineOpt wizard
[docs]REQUIRED_SPINE_OPT_VERSION = "0.5.3"
# Invalid characters for directory names # NOTE: "." is actually valid in a directory name but this is # to prevent the user from creating directories like /..../
[docs]INVALID_CHARS = ["<", ">", ":", "\"", "/", "\\", "|", "?", "*", "."]
# Invalid characters for file names
[docs]INVALID_FILENAME_CHARS = ["<", ">", ":", "\"", "/", "\\", "|", "?", "*"]
# Paths to application, configuration file, default project and work dirs, and documentation index page
[docs]_frozen = getattr(sys, "frozen", False)
[docs]_path_to_executable = os.path.dirname(sys.executable if _frozen else __file__)
[docs]APPLICATION_PATH = os.path.realpath(_path_to_executable)
[docs]_program_root = APPLICATION_PATH if _frozen else os.path.join(APPLICATION_PATH, os.path.pardir)
[docs]DEFAULT_WORK_DIR = os.path.abspath(os.path.join(_program_root, "work"))
if _frozen:
[docs] DOCUMENTATION_PATH = os.path.abspath(os.path.join(_program_root, "docs", "html"))
else: DOCUMENTATION_PATH = os.path.abspath(os.path.join(_program_root, "docs", "build", "html"))
[docs]ONLINE_DOCUMENTATION_URL = "https://spine-toolbox.readthedocs.io/en/release-0.6"
[docs]PLUGINS_PATH = os.path.abspath(os.path.join(str(Path.home()), ".spinetoolbox", "plugins"))
[docs]PLUGIN_REGISTRY_URL = "https://spine-project.github.io/PluginRegistry/registry.json"
# Jupyter kernel constants
[docs]JUPYTER_KERNEL_TIME_TO_DEAD = 8.0
# Project constants
[docs]PROJECT_FILENAME = "project.json"
# Stylesheets
[docs]STATUSBAR_SS = "QStatusBar{background-color: #EBEBE0; border-width: 1px; border-color: gray; border-style: groove;}"
[docs]SETTINGS_SS = ( "#SettingsForm{background-color: ghostwhite;}"
"QLabel{color: black;}" "QLineEdit{font-size: 12px;}" "QGroupBox{border: 2px solid gray; " "background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #80B0FF, stop: 1 #e6efff);" "border-radius: 5px;" "margin-top: 0.5em;}" "QGroupBox:title{border-radius: 2px; " "background-color: ghostwhite;" "subcontrol-origin: margin;" "subcontrol-position: top center;" "padding-top: 0px;" "padding-bottom: 0px;" "padding-right: 3px;" "padding-left: 3px;}" "QCheckBox{outline-style: dashed; outline-width: 1px; outline-color: white;}" "QPushButton{background-color: #505F69; border: 1px solid #29353d; color: #F0F0F0; border-radius: 4px; padding: 3px; outline: none; min-width:80px}" "QPushButton:disabled {background-color: #32414B; border: 1px solid #29353d; color: #787878; border-radius: 4px; padding: 3px;}" "QPushButton::menu-indicator {subcontrol-origin: padding; subcontrol-position: bottom right; bottom: 4px;}" "QPushButton:focus{background-color: #637683; border: 1px solid #148CD2;}" "QPushButton:hover{border: 1px solid #148CD2; color: #F0F0F0;}" "QPushButton:pressed{background-color: #19232D; border: 1px solid #19232D;}" "QSlider::groove:horizontal{background: #e1e1e1; border: 1px solid #a4a4a4; height: 5px; margin: 2px 0; border-radius: 2px;}" "QSlider::handle:horizontal{background: #fafafa; border: 1px solid #a4a4a4; width: 12px; margin: -5px 0; border-radius: 2px;}" "QSlider::add-page:horizontal{background: transparent;}" "QSlider::sub-page:horizontal{background: transparent;}" )
[docs]ICON_BACKGROUND = "qlineargradient(x1: 1, y1: 1, x2: 0, y2: 0, stop: 0 #cce0ff, stop: 1 #66a1ff);"
[docs]ICON_TOOLBAR_SS = f"QToolBar{{spacing: 6px; background: {ICON_BACKGROUND}; padding: 3px; border-style: solid;}}"
[docs]def _make_text_browser_ss(color): return ( f"QTextBrowser {{background-color: {color}; border: 1px solid #32414B; color: #F0F0F0; border-radius: 2px;}}"
"QTextBrowser:hover," "QTextBrowser:selected," "QTextBrowser:pressed {border: 1px solid #668599;}" )
[docs]TEXTBROWSER_SS = _make_text_browser_ss("#19232D")
[docs]TEXTBROWSER_OVERRIDE_SS = _make_text_browser_ss("#2d2119")
# ToolboxUI stylesheet. A lot of widgets inherit this sheet.
[docs]MAINWINDOW_SS = ( "QMainWindow::separator{width: 3px; background-color: lightgray; border: 1px solid white;}"
"QPushButton{background-color: #505F69; border: 1px solid #29353d; color: #F0F0F0; " "border-radius: 4px; padding: 3px; outline: none; min-width: 75px;}" "QPushButton:disabled {background-color: #32414B; border: 1px solid #29353d; color: #787878; border-radius: 4px; padding: 3px;}" "QPushButton::menu-indicator {subcontrol-origin: padding; subcontrol-position: bottom right; bottom: 4px;}" "QPushButton:focus{background-color: #637683; border: 1px solid #148CD2;}" "QPushButton:hover{border: 1px solid #148CD2; color: #F0F0F0;}" "QPushButton:pressed{background-color: #19232D; border: 1px solid #19232D;}" "QToolButton:focus{border-color: black; border-width: 1px; border-style: ridge;}" "QToolButton:pressed{background-color: #f2f2f2;}" "QToolButton::menu-indicator{width: 0px;}" "QCheckBox{padding: 2px; spacing: 10px; outline-style: dashed; outline-width: 1px; outline-color: black;}" "QComboBox:focus{border-color: black; border-width: 1px; border-style: ridge;}" "QLineEdit:focus{border-color: black; border-width: 1px; border-style: ridge;}" "QTextEdit:focus{border-color: black; border-width: 1px; border-style: ridge;}" "QTreeView:focus{border-color: darkslategray; border-width: 2px; border-style: ridge;}" )
[docs]TREEVIEW_HEADER_SS = "QHeaderView::section{background-color: #ecd8c6; font-size: 12px;}"
[docs]PIVOT_TABLE_HEADER_COLOR = "#efefef"