""" * LogarithmPlotter - Create graphs with logarithm scales. * Copyright (C) 2021 Ad5001 * * 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 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 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 . """ from PySide2.QtWidgets import QApplication, QFileDialog from PySide2.QtQml import QQmlApplicationEngine, qmlRegisterType from PySide2.QtCore import Qt, QObject, Signal, Slot, Property from PySide2.QtGui import QIcon, QImage, QKeySequence from PySide2 import __version__ as PySide2_version import os import tempfile from platform import release as os_release from json import dumps, loads from sys import platform, argv, version as sys_version import webbrowser tempfile = tempfile.mkstemp(suffix='.png')[1] pwd = os.getcwd() def get_linux_theme(): des = { "KDE": "org.kde.desktop", "gnome": "default", "lxqt": "fusion", "mate": "fusion", } if "XDG_SESSION_DESKTOP" in os.environ: return des[os.environ["XDG_SESSION_DESKTOP"]] if os.environ["XDG_SESSION_DESKTOP"] in des else "fusion" else: # Android return "Material" class Helper(QObject): @Slot(str, str) def write(self, filename, filedata): os.chdir(pwd) if os.path.exists(os.path.dirname(os.path.realpath(filename))): if filename.split(".")[-1] == "lpf": # Add header to file filedata = "LPFv1" + filedata f = open(os.path.realpath(filename), 'w', -1, 'utf8') f.write(filedata) f.close() os.chdir(os.path.dirname(os.path.realpath(__file__))) @Slot(str, result=str) def load(self, filename): os.chdir(pwd) data = '{}' if os.path.exists(os.path.realpath(filename)): f = open(os.path.realpath(filename), 'r', -1, 'utf8') data = f.read() f.close() try: if data[:5] == "LPFv1": # V1 version of the file data = data[5:] elif data[0] == "{" and "type" in loads(data) and loads(data)["type"] == "logplotv1": pass else: raise Exception("Invalid LogarithmPlotter file.") except Exception as e: # If file can't be loaded from PySide2.QtWidgets import QMessageBox QMessageBox.warning(None, 'LogarithmPlotter', 'Could not open file "{}":\n{}'.format(filename, e), QMessageBox.Ok) # Cannot parse file else: QMessageBox.warning(None, 'LogarithmPlotter', 'Could not open file: "{}"\nFile does not exist.'.format(filename), QMessageBox.Ok) # Cannot parse file os.chdir(os.path.dirname(os.path.realpath(__file__))) return data @Slot(result=str) def gettmpfile(self): global tempfile return tempfile @Slot() def copyImageToClipboard(self): global tempfile clipboard = QApplication.clipboard() clipboard.setImage(QImage(tempfile)) @Slot(result=str) def getVersion(self): from . import __VERSION__ return __VERSION__ @Slot(result=str) def getDebugInfos(self): """ Returns the version info about Qt, PySide2 & Python """ return "Built with PySide2 (Qt) v{} and python v{}".format(PySide2_version, sys_version.split("\n")[0]) @Slot(str) def openUrl(self, url): webbrowser.open(url) def run(): os.chdir(os.path.dirname(os.path.realpath(__file__))) os.environ["QT_QUICK_CONTROLS_STYLE"] = { "linux": get_linux_theme(), "freebsd": get_linux_theme(), "win32": "universal" if os_release == "10" else "fusion", "cygwin": "fusion", "darwin": "default" }[platform] icon_fallbacks = QIcon.fallbackSearchPaths(); icon_fallbacks.append(os.path.realpath(os.path.join(os.getcwd(), "qml", "eu", "ad5001", "LogarithmPlotter", "icons"))) icon_fallbacks.append(os.path.realpath(os.path.join(os.getcwd(), "qml", "eu", "ad5001", "LogarithmPlotter", "icons", "settings"))) icon_fallbacks.append(os.path.realpath(os.path.join(os.getcwd(), "qml", "eu", "ad5001", "LogarithmPlotter", "icons", "settings", "custom"))) QIcon.setFallbackSearchPaths(icon_fallbacks); app = QApplication(argv) app.setApplicationName("LogarithmPlotter") app.setOrganizationName("Ad5001") app.setWindowIcon(QIcon(os.path.realpath(os.path.join(os.getcwd(), "logarithmplotter.svg")))) engine = QQmlApplicationEngine() helper = Helper() engine.rootContext().setContextProperty("Helper", helper) engine.rootContext().setContextProperty("TestBuild", "--test-build" in argv) engine.addImportPath(os.path.realpath(os.path.join(os.getcwd(), "qml"))) engine.load(os.path.realpath(os.path.join(os.getcwd(), "qml", "eu", "ad5001", "LogarithmPlotter", "LogarithmPlotter.qml"))) os.chdir(pwd) if len(argv) > 0 and os.path.exists(argv[-1]) and argv[-1].split('.')[-1] in ['json', 'lgg', 'lpf']: engine.rootObjects()[0].loadDiagram(argv[-1]) os.chdir(os.path.dirname(os.path.realpath(__file__))) if not engine.rootObjects(): print("No root object") exit(-1) exit_code = app.exec_() os.remove(tempfile) exit(exit_code) if __name__ == "__main__": run()