commit b8b5decc119d7dfcb34a282f811fe55d27d52701 Author: Philipp Rauch Date: Sun Nov 28 11:58:25 2021 +0100 feat: :tada: init project diff --git a/.env b/.env new file mode 100644 index 0000000..42bf310 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +PYTHONPATH=src +GEVENT_SUPPORT=True \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6f23cd2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +src/family_register/_version.py export-subst diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c51fa15 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +.env*/ +.venv*/ +__pycache__/ +build/ +dist/ +*.egg-info/ +.ropeproject/ + +*.py[cod] +*$py.class +*.log \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b6284d8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + // Verwendet IntelliSense zum Ermitteln möglicher Attribute. + // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. + // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Family Register", + "type": "python", + "request": "launch", + "module": "family_register", + "envFile": "${workspaceFolder}/.env" + }, + { + "name": "Python: Aktuelle Datei", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "envFile": "${workspaceFolder}/.env" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..8f86715 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,22 @@ +{ + "editor.rulers": [ + 80 + ], + "python.formatting.provider": "yapf", + "python.sortImports.args": [ + "--project=family_register" + ], + "python.linting.pylintEnabled": true, + "python.linting.pylintArgs": [ + "--extension-pkg-whitelist=wx,numpy,lxml.etree,win32security", + "--generated-members=git", + "--disable=C0114,C0115,C0116,W0614,W0401,C0103" + ], + "editor.formatOnSave": true, + "[python]": { + "editor.codeActionsOnSave": { + "source.organizeImports": true + } + }, + "python.pythonPath": ".venv\\Scripts\\python.exe" +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..48d725e --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,66 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "make", + "type": "shell", + "windows": { + // "command": "${config:python.pythonPath}", + "command": "${command:python.interpreterPath}", + "args": [ + "${workspaceFolder}\\tools\\pycompile.py", + "${workspaceFolder}" + ] + }, + "linux": { + // "command": "${config:python.pythonPath}", + "command": "${command:python.interpreterPath}", + "args": [ + "${workspaceFolder}/tools/pycompile.py", + "${workspaceFolder}" + ] + }, + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "silent", + "focus": false, + "clear": true + }, + "problemMatcher": [] + }, + { + "label": "gen i18n", + "type": "shell", + "windows": { + "command": "py", + "args": [ + "${workspaceFolder}\\tools\\geni18n.py" + ] + }, + "linux": { + "command": "${command:python.interpreterPath}", + "args": [ + "${workspaceFolder}/tools/geni18n.py" + ] + }, + "group": "none", + "presentation": { + "reveal": "silent", + "focus": false, + "clear": true + }, + "problemMatcher": [], + "options": { + "cwd": "${workspaceFolder}/src/family_register", + "env": { + "PYTHONPATH": "${workspaceFolder}/src" + } + } + }, + ] +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2071b23 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..34bb7c6 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include versioneer.py +include src/tsi_manager/_version.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..621ebb9 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# family-regsiter + diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..7991ed8 --- /dev/null +++ b/build.bat @@ -0,0 +1,10 @@ +@echo off +setlocal +setlocal enabledelayedexpansion + +For /D %%G IN (*env*3*9*) do set VENV=%%G + +echo python virtualenv: %~dp0%VENV% +%VENV%\Scripts\python %~dp0tools\pycompile.py %~dp0 + +pause diff --git a/build.spec b/build.spec new file mode 100644 index 0000000..90950ff --- /dev/null +++ b/build.spec @@ -0,0 +1,96 @@ +# -*- mode: python ; coding: utf-8 -*- + +from packaging.version import parse +from PyInstaller.building.api import EXE, PYZ +from PyInstaller.building.build_main import Analysis +from PyInstaller.utils.win32.versioninfo import (FixedFileInfo, StringFileInfo, + StringStruct, StringTable, + VarFileInfo, VarStruct, + VSVersionInfo) + +import versioneer + +# Update Version Hook +# exec(open('updateVersion.py').read()) + +block_cipher = None +added_files = [ + ('src/family_register/locale', 'locale'), +] + +print(versioneer.get_versions()['dirty']) +release = parse(versioneer.get_version()) +release_tuple = (release.major, release.minor, release.micro, 0) + +version = VSVersionInfo( + ffi=FixedFileInfo( + # filevers and prodvers should be always a Tuple with four items: (1, 2, 3, 4) + # Set not needed items to zero 0. + filevers=release_tuple, + prodvers=release_tuple, + # Contains a bitmask that specifies the valid bits 'flags'r + mask=0x3f, + # Contains a bitmask that specifies the Boolean attributes of the file. + flags=0x0, + # The operating system for which this file was designed. + # 0x4 - NT and there is no need to change it. + OS=0x4, + # The general type of file. + # 0x1 - the file is an application. + fileType=0x1, + # The function of the file. + # 0x0 - the function is not defined for this fileType + subtype=0x0, + # Creation date and time stamp. + date=(0, 0)), + kids=[ + StringFileInfo([ + StringTable('040904B0', [ + StringStruct('CompanyName', ''), + StringStruct('FileDescription', 'Family Register'), + StringStruct('FileVersion', f'{release}'), + StringStruct('InternalName', 'family_register'), + StringStruct('LegalCopyright', 'Copyright (c) Philipp Rauch'), + StringStruct('OriginalFilename', 'Family-Register.exe'), + StringStruct('ProductName', 'Family Register'), + StringStruct('ProductVersion', f'{release}') + ]) + ]), + VarFileInfo([ + VarStruct('Translation', [1031, 1252]), + VarStruct('Translation', [1033, 1252]) + ]) + ]) + +a = Analysis(['pyinstaller\\run_family_register.py'], + pathex=['build\\lib'], + binaries=[], + datas=added_files, + hiddenimports=["pkg_resources.py2_warn"], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) + +pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name=f'Family-Register {release}', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False, + # icon='[logo].ico', + version=version, +) diff --git a/dev-requirements.in b/dev-requirements.in new file mode 100644 index 0000000..e04a313 --- /dev/null +++ b/dev-requirements.in @@ -0,0 +1,12 @@ +-c requirements.txt + +inquirerpy +isort +packaging +pip-licenses +pip-tools +pipreqs +pyinstaller +pylint +yapf +rope diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..6baebd0 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,88 @@ +# +# This file is autogenerated by pip-compile with python 3.9 +# To update, run: +# +# pip-compile --output-file=dev-requirements.txt dev-requirements.in +# +altgraph==0.17.2 + # via pyinstaller +astroid==2.8.2 + # via pylint +certifi==2021.5.30 + # via requests +charset-normalizer==2.0.6 + # via requests +click==8.0.3 + # via pip-tools +docopt==0.6.2 + # via pipreqs +idna==3.2 + # via requests +inquirerpy==0.3.0 + # via -r dev-requirements.in +isort==5.9.3 + # via + # -r dev-requirements.in + # pylint +lazy-object-proxy==1.6.0 + # via astroid +mccabe==0.6.1 + # via pylint +packaging==21.3 + # via + # -c requirements.txt + # -r dev-requirements.in +pep517==0.11.0 + # via pip-tools +pfzy==0.3.3 + # via inquirerpy +pip-licenses==3.5.3 + # via -r dev-requirements.in +pip-tools==6.4.0 + # via -r dev-requirements.in +pipreqs==0.4.10 + # via -r dev-requirements.in +platformdirs==2.4.0 + # via pylint +prompt-toolkit==3.0.20 + # via inquirerpy +ptable==0.9.2 + # via pip-licenses +pyinstaller==4.5.1 + # via -r dev-requirements.in +pyinstaller-hooks-contrib==2021.3 + # via pyinstaller +pylint==2.11.1 + # via -r dev-requirements.in +pyparsing==2.4.7 + # via + # -c requirements.txt + # packaging +requests==2.26.0 + # via yarg +rope==0.20.1 + # via -r dev-requirements.in +toml==0.10.2 + # via pylint +tomli==1.2.1 + # via pep517 +typing-extensions==3.10.0.2 + # via + # astroid + # pylint +urllib3==1.26.6 + # via requests +wcwidth==0.2.5 + # via prompt-toolkit +wheel==0.37.0 + # via pip-tools +wrapt==1.12.1 + # via astroid +yapf==0.31.0 + # via -r dev-requirements.in +yarg==0.1.9 + # via pipreqs + +# The following packages are considered to be unsafe in a requirements file: +# pip +# setuptools diff --git a/gui.fbp b/gui.fbp new file mode 100644 index 0000000..6c21060 --- /dev/null +++ b/gui.fbp @@ -0,0 +1,2069 @@ + + + + + ; + Python + 1 + source_name + 0 + 0 + res + UTF-8 + connect + __template__ + 1000 + none + + + 1 + Familienregister + + src/family_register/gui + + 1 + 1 + 1 + 1 + UI + 0 + 0 + 0 + + 0 + wxAUI_MGR_DEFAULT + + wxBOTH + + 1 + 1 + impl_virtual + + + + 0 + wxID_ANY + + + MainFrame + + 938,526 + wxDEFAULT_FRAME_STYLE + ; ; forward_declare + Family Register + + 0 + + + wxTAB_TRAVERSAL + 1 + + + mainSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + + buttonSizer + wxHORIZONTAL + none + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + 0 + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + MyButton + + 0 + + 0 + + + 0 + + 1 + m_button1 + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + 0 + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + MyButton + + 0 + + 0 + + + 0 + + 1 + m_button2 + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + 0 + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + MyButton + + 0 + + 0 + + + 0 + + 1 + m_button3 + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + 0 + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + MyButton + + 0 + + 0 + + + 0 + + 1 + m_button4 + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + 1 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + search_box + 1 + + + protected + 1 + + Resizable + 1 + 1 + -1,25 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALL|wxEXPAND + 1 + + + + 1 + 1 + + + 0 + wxID_ANY + + + register_dataViewCtrl + protected + + + wxDV_HORIZ_RULES|wxDV_ROW_LINES|wxDV_VERT_RULES + ; ; forward_declare + + + + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + Name + wxDATAVIEW_CELL_INERT + 0 + name_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + Address + wxDATAVIEW_CELL_INERT + 0 + adress_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + Zip code + wxDATAVIEW_CELL_INERT + 0 + zip_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + City + wxDATAVIEW_CELL_INERT + 0 + city_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + Phone + wxDATAVIEW_CELL_INERT + 0 + phone_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + Mobile + wxDATAVIEW_CELL_INERT + 0 + mobile_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + E-mail + wxDATAVIEW_CELL_INERT + 0 + mail_dataViewColumn + protected + Text + -1 + + + wxALIGN_LEFT + + wxDATAVIEW_COL_RESIZABLE + + wxDATAVIEW_CELL_INERT + 0 + empty_dataViewColumn + protected + Text + -1 + + + + + + + 0 + wxAUI_MGR_DEFAULT + + wxBOTH + + 1 + 1 + impl_virtual + + + + 0 + wxID_ANY + + + PersonDialog + + 825,502 + wxDEFAULT_DIALOG_STYLE + ; ; forward_declare + Person + + 0 + + + + + + mainSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + + contentSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER|wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_NEW; wxART_CMN_DIALOG + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + icon_bitmap + 1 + + + protected + 1 + + Resizable + 1 + -1,-1 + ; ; forward_declare + 0 + + + + + + + + 5 + wxEXPAND + 2 + + + wxBOTH + 1,2 + + 0 + + addressSizer + wxFLEX_GROWMODE_SPECIFIED + none + 0 + + 5 + 2 + 0 + wxLEFT|wxTOP + 0 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + First name + 0 + + 0 + + + 0 + + 1 + firstname_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 2 + 2 + wxLEFT|wxTOP + 0 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Last name + 0 + + 0 + + + 0 + + 1 + lastname_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 2 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + firstname_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 150,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 2 + 2 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + lastname_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 150,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 3 + 0 + wxLEFT|wxTOP + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Street + 0 + + 0 + + + 0 + + 1 + street_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 3 + wxLEFT|wxTOP + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Nr. + 0 + + 0 + + + 0 + + 1 + housenumber_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 3 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 3 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + street_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 1 + 3 + wxBOTTOM|wxLEFT|wxRIGHT + 3 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + housenumber_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 75,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 1 + 0 + wxLEFT|wxTOP + 4 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Zip code + 0 + + 0 + + + 0 + + 1 + zip_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 3 + 1 + wxLEFT|wxTOP + 4 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + City + 0 + + 0 + + + 0 + + 1 + city_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 0 + wxBOTTOM|wxLEFT|wxRIGHT + 5 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + zip_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 80,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 3 + 1 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 5 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + city_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 4 + 0 + wxLEFT|wxTOP + 6 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Country + 0 + + 0 + + + 0 + + 1 + country_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 4 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 7 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + country_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_DROPDOWN|wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 4 + 0 + wxALL|wxEXPAND + 8 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + m_staticline1 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + 4 + 0 + wxLEFT|wxTOP + 9 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Phone + 0 + + 0 + + + 0 + + 1 + phone_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 4 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 10 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + phone_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 4 + 0 + wxEXPAND|wxLEFT|wxTOP + 11 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Mobile + 0 + + 0 + + + 0 + + 1 + mobile_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 4 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 12 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + mobile_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 4 + 0 + wxLEFT|wxTOP + 13 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + E-mail + 0 + + 0 + + + 0 + + 1 + mail_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 4 + 0 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 14 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + mail_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + + m_sdbSizer1 + protected + + + + + + diff --git a/pyinstaller/run_family_register.py b/pyinstaller/run_family_register.py new file mode 100644 index 0000000..0f8c7a4 --- /dev/null +++ b/pyinstaller/run_family_register.py @@ -0,0 +1,7 @@ +#! python3 -m flashtool +# -*- coding: utf-8 -*- + +import family_register.app + +if __name__ == '__main__': + family_register.app.run() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6b9c0c8 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +# +# This file is autogenerated by pip-compile with python 3.9 +# To update, run: +# +# pip-compile +# +numpy==1.21.2 + # via wxpython +packaging==21.3 + # via TSI-Manager (setup.py) +pillow==8.3.2 + # via wxpython +pyparsing==2.4.7 + # via packaging +six==1.16.0 + # via wxpython +wxpython==4.1.1 + # via TSI-Manager (setup.py) diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..9849c04 --- /dev/null +++ b/run.bat @@ -0,0 +1,13 @@ +@echo off +setlocal +setlocal enabledelayedexpansion + +For /D %%G IN (*env*3*9*) do set VENV=%%G + +echo python virtualenv: %~dp0%VENV% +set PYTHONPATH=src + +call %VENV%\Scripts\activate.bat +python -m family_register +call %VENV%\Scripts\deactivate.bat +endlocal diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..5d7b851 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,63 @@ + +[metadata] +name = Family Register +# version = attr: tsi_manager.__version__ +author = Philipp Rauch +author_email = smokephil@gmail.com +description = Family address and relationship management program +long_description = file: README.md +license = MIT License +classifiers = + Development Status :: 4 - Beta + Environment :: Win32 (MS Windows) + Intended Audience :: Developers + Intended Audience :: Manufacturing + License :: OSI Approved :: MIT License + Natural Language :: English + Natural Language :: German + Operating System :: Microsoft :: Windows :: Windows 10 + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.9 + +[options] +python_requires = >=3.9 +setup_requires = + setuptools >=38.3.0 +install_requires = + wxPython >=4.1.1 + packaging >=21.3.0 + + + +package_dir= + =src +packages = find: +include_package_data = true +zip_safe = false + + +[options.packages.find] +where=src + +# [flake8] +# exclude = build,dist,.git,.tox,.env38,.vscode +# ignore = W504,W601 +# max-line-length = 119 + +# [isort] +# combine_as_imports = true +# default_section = THIRDPARTY +# include_trailing_comma = true +# known_first_party = family_register +# line_length = 79 +# multi_line_output = 5 + +[versioneer] +VCS = git +style = pep440 +versionfile_source = src/family_register/_version.py +versionfile_build = family_register/_version.py +tag_prefix = +parentdir_prefix = diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..01cfba1 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +from setuptools import setup + +import versioneer + +setup( + version=versioneer.get_version(), + cmdclass=versioneer.get_cmdclass(), +) diff --git a/src/family_register/__init__.py b/src/family_register/__init__.py new file mode 100644 index 0000000..efa6331 --- /dev/null +++ b/src/family_register/__init__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +import re +import sys + +from packaging.version import parse + +from ._version import get_versions + +__frozen__ = bool(hasattr(sys, 'frozen') and hasattr(sys, '_MEIPASS')) +__tool_name__ = 'Family Register' +__version__ = get_versions()['version'] +__base_version__ = parse(__version__).base_version + +# # https://gitlab.com/alelec/python-certifi-win32/-/issues/11#note_603320530 +# if getattr(sys, 'frozen', False) and sys.platform == 'win32': +# import certifi +# import certifi_win32.wincerts + +# certifi_win32.wincerts.CERTIFI_PEM = certifi.where() + +# certifi.where = certifi_win32.wincerts.where + +# from certifi_win32.wincerts import generate_pem, verify_combined_pem +# if not verify_combined_pem(): +# generate_pem() + +del re +del sys +del parse +del get_versions diff --git a/src/family_register/__main__.py b/src/family_register/__main__.py new file mode 100644 index 0000000..b8d0059 --- /dev/null +++ b/src/family_register/__main__.py @@ -0,0 +1,7 @@ +#! python3 -m tsi_manager +# -*- coding: utf-8 -*- + +from family_register import app + +if __name__ == '__main__': + app.run() diff --git a/src/family_register/_version.py b/src/family_register/_version.py new file mode 100644 index 0000000..fdf4d61 --- /dev/null +++ b/src/family_register/_version.py @@ -0,0 +1,623 @@ + +# This file helps to compute a version number in source trees obtained from +# git-archive tarball (such as those provided by githubs download-from-tag +# feature). Distribution tarballs (built by setup.py sdist) and build +# directories (produced by setup.py build) will contain a much shorter file +# that just contains the computed version number. + +# This file is released into the public domain. Generated by +# versioneer-0.20 (https://github.com/python-versioneer/python-versioneer) + +"""Git implementation of _version.py.""" + +import errno +import os +import re +import subprocess +import sys + + +def get_keywords(): + """Get the keywords needed to look up the version information.""" + # these strings will be replaced by git during git-archive. + # setup.py/versioneer.py will grep for the variable names, so they must + # each be defined on a line of their own. _version.py will just call + # get_keywords(). + git_refnames = "$Format:%d$" + git_full = "$Format:%H$" + git_date = "$Format:%ci$" + keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} + return keywords + + +class VersioneerConfig: # pylint: disable=too-few-public-methods + """Container for Versioneer configuration parameters.""" + + +def get_config(): + """Create, populate and return the VersioneerConfig() object.""" + # these strings are filled in when 'setup.py versioneer' creates + # _version.py + cfg = VersioneerConfig() + cfg.VCS = "git" + cfg.style = "pep440" + cfg.tag_prefix = "" + cfg.parentdir_prefix = "" + cfg.versionfile_source = "src/tsi_manager/_version.py" + cfg.verbose = False + return cfg + + +class NotThisMethod(Exception): + """Exception raised if a method is not valid for the current scenario.""" + + +LONG_VERSION_PY = {} +HANDLERS = {} + + +def register_vcs_handler(vcs, method): # decorator + """Create decorator to mark a method as the handler of a VCS.""" + def decorate(f): + """Store f in HANDLERS[vcs][method].""" + if vcs not in HANDLERS: + HANDLERS[vcs] = {} + HANDLERS[vcs][method] = f + return f + return decorate + + +# pylint:disable=too-many-arguments,consider-using-with # noqa +def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False, + env=None): + """Call the given command(s).""" + assert isinstance(commands, list) + process = None + for command in commands: + try: + dispcmd = str([command] + args) + # remember shell=False, so use git.cmd on windows, not just git + process = subprocess.Popen([command] + args, cwd=cwd, env=env, + stdout=subprocess.PIPE, + stderr=(subprocess.PIPE if hide_stderr + else None)) + break + except EnvironmentError: + e = sys.exc_info()[1] + if e.errno == errno.ENOENT: + continue + if verbose: + print("unable to run %s" % dispcmd) + print(e) + return None, None + else: + if verbose: + print("unable to find command, tried %s" % (commands,)) + return None, None + stdout = process.communicate()[0].strip().decode() + if process.returncode != 0: + if verbose: + print("unable to run %s (error)" % dispcmd) + print("stdout was %s" % stdout) + return None, process.returncode + return stdout, process.returncode + + +def versions_from_parentdir(parentdir_prefix, root, verbose): + """Try to determine the version from the parent directory name. + + Source tarballs conventionally unpack into a directory that includes both + the project name and a version string. We will also support searching up + two directory levels for an appropriately named parent directory + """ + rootdirs = [] + + for _ in range(3): + dirname = os.path.basename(root) + if dirname.startswith(parentdir_prefix): + return {"version": dirname[len(parentdir_prefix):], + "full-revisionid": None, + "dirty": False, "error": None, "date": None} + rootdirs.append(root) + root = os.path.dirname(root) # up a level + + if verbose: + print("Tried directories %s but none started with prefix %s" % + (str(rootdirs), parentdir_prefix)) + raise NotThisMethod("rootdir doesn't start with parentdir_prefix") + + +@register_vcs_handler("git", "get_keywords") +def git_get_keywords(versionfile_abs): + """Extract version information from the given file.""" + # the code embedded in _version.py can just fetch the value of these + # keywords. When used from setup.py, we don't want to import _version.py, + # so we do it with a regexp instead. This function is not used from + # _version.py. + keywords = {} + try: + with open(versionfile_abs, "r") as fobj: + for line in fobj: + if line.strip().startswith("git_refnames ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["refnames"] = mo.group(1) + if line.strip().startswith("git_full ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["full"] = mo.group(1) + if line.strip().startswith("git_date ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["date"] = mo.group(1) + except EnvironmentError: + pass + return keywords + + +@register_vcs_handler("git", "keywords") +def git_versions_from_keywords(keywords, tag_prefix, verbose): + """Get version information from git keywords.""" + if "refnames" not in keywords: + raise NotThisMethod("Short version file found") + date = keywords.get("date") + if date is not None: + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + + # git-2.2.0 added "%cI", which expands to an ISO-8601 -compliant + # datestamp. However we prefer "%ci" (which expands to an "ISO-8601 + # -like" string, which we must then edit to make compliant), because + # it's been around since git-1.5.3, and it's too difficult to + # discover which version we're using, or to work around using an + # older one. + date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + refnames = keywords["refnames"].strip() + if refnames.startswith("$Format"): + if verbose: + print("keywords are unexpanded, not using") + raise NotThisMethod("unexpanded keywords, not a git-archive tarball") + refs = {r.strip() for r in refnames.strip("()").split(",")} + # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of + # just "foo-1.0". If we see a "tag: " prefix, prefer those. + TAG = "tag: " + tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} + if not tags: + # Either we're using git < 1.8.3, or there really are no tags. We use + # a heuristic: assume all version tags have a digit. The old git %d + # expansion behaves like git log --decorate=short and strips out the + # refs/heads/ and refs/tags/ prefixes that would let us distinguish + # between branches and tags. By ignoring refnames without digits, we + # filter out many common branch names like "release" and + # "stabilization", as well as "HEAD" and "master". + tags = {r for r in refs if re.search(r'\d', r)} + if verbose: + print("discarding '%s', no digits" % ",".join(refs - tags)) + if verbose: + print("likely tags: %s" % ",".join(sorted(tags))) + for ref in sorted(tags): + # sorting will prefer e.g. "2.0" over "2.0rc1" + if ref.startswith(tag_prefix): + r = ref[len(tag_prefix):] + # Filter out refs that exactly match prefix or that don't start + # with a number once the prefix is stripped (mostly a concern + # when prefix is '') + if not re.match(r'\d', r): + continue + if verbose: + print("picking %s" % r) + return {"version": r, + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": None, + "date": date} + # no suitable tags, so version is "0+unknown", but full hex is still there + if verbose: + print("no suitable tags, using unknown + full revision id") + return {"version": "0+unknown", + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": "no suitable tags", "date": None} + + +@register_vcs_handler("git", "pieces_from_vcs") +def git_pieces_from_vcs(tag_prefix, root, verbose, runner=run_command): + """Get version from 'git describe' in the root of the source tree. + + This only gets called if the git-archive 'subst' keywords were *not* + expanded, and _version.py hasn't already been rewritten with a short + version string, meaning we're inside a checked out source tree. + """ + GITS = ["git"] + if sys.platform == "win32": + GITS = ["git.cmd", "git.exe"] + + _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, + hide_stderr=True) + if rc != 0: + if verbose: + print("Directory %s not under git control" % root) + raise NotThisMethod("'git rev-parse --git-dir' returned error") + + # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] + # if there isn't one, this yields HEX[-dirty] (no NUM) + describe_out, rc = runner(GITS, ["describe", "--tags", "--dirty", + "--always", "--long", + "--match", "%s*" % tag_prefix], + cwd=root) + # --long was added in git-1.5.5 + if describe_out is None: + raise NotThisMethod("'git describe' failed") + describe_out = describe_out.strip() + full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) + if full_out is None: + raise NotThisMethod("'git rev-parse' failed") + full_out = full_out.strip() + + pieces = {} + pieces["long"] = full_out + pieces["short"] = full_out[:7] # maybe improved later + pieces["error"] = None + + branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], + cwd=root) + # --abbrev-ref was added in git-1.6.3 + if rc != 0 or branch_name is None: + raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") + branch_name = branch_name.strip() + + if branch_name == "HEAD": + # If we aren't exactly on a branch, pick a branch which represents + # the current commit. If all else fails, we are on a branchless + # commit. + branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) + # --contains was added in git-1.5.4 + if rc != 0 or branches is None: + raise NotThisMethod("'git branch --contains' returned error") + branches = branches.split("\n") + + # Remove the first line if we're running detached + if "(" in branches[0]: + branches.pop(0) + + # Strip off the leading "* " from the list of branches. + branches = [branch[2:] for branch in branches] + if "master" in branches: + branch_name = "master" + elif not branches: + branch_name = None + else: + # Pick the first branch that is returned. Good or bad. + branch_name = branches[0] + + pieces["branch"] = branch_name + + # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] + # TAG might have hyphens. + git_describe = describe_out + + # look for -dirty suffix + dirty = git_describe.endswith("-dirty") + pieces["dirty"] = dirty + if dirty: + git_describe = git_describe[:git_describe.rindex("-dirty")] + + # now we have TAG-NUM-gHEX or HEX + + if "-" in git_describe: + # TAG-NUM-gHEX + mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) + if not mo: + # unparseable. Maybe git-describe is misbehaving? + pieces["error"] = ("unable to parse git-describe output: '%s'" + % describe_out) + return pieces + + # tag + full_tag = mo.group(1) + if not full_tag.startswith(tag_prefix): + if verbose: + fmt = "tag '%s' doesn't start with prefix '%s'" + print(fmt % (full_tag, tag_prefix)) + pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" + % (full_tag, tag_prefix)) + return pieces + pieces["closest-tag"] = full_tag[len(tag_prefix):] + + # distance: number of commits since tag + pieces["distance"] = int(mo.group(2)) + + # commit: short hex revision ID + pieces["short"] = mo.group(3) + + else: + # HEX: no tags + pieces["closest-tag"] = None + count_out, rc = runner(GITS, ["rev-list", "HEAD", "--count"], cwd=root) + pieces["distance"] = int(count_out) # total number of commits + + # commit date: see ISO-8601 comment in git_versions_from_keywords() + date = runner(GITS, ["show", "-s", "--format=%ci", "HEAD"], cwd=root)[0].strip() + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + + return pieces + + +def plus_or_dot(pieces): + """Return a + if we don't already have one, else return a .""" + if "+" in pieces.get("closest-tag", ""): + return "." + return "+" + + +def render_pep440(pieces): + """Build up version string, with post-release "local version identifier". + + Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you + get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty + + Exceptions: + 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += plus_or_dot(pieces) + rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0+untagged.%d.g%s" % (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_branch(pieces): + """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . + + The ".dev0" means not master branch. Note that .dev0 sorts backwards + (a feature branch will appear "older" than the master branch). + + Exceptions: + 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0" + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+untagged.%d.g%s" % (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_pre(pieces): + """TAG[.post0.devDISTANCE] -- No -dirty. + + Exceptions: + 1: no tags. 0.post0.devDISTANCE + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += ".post0.dev%d" % pieces["distance"] + else: + # exception #1 + rendered = "0.post0.dev%d" % pieces["distance"] + return rendered + + +def render_pep440_post(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX] . + + The ".dev0" means dirty. Note that .dev0 sorts backwards + (a dirty tree will appear "older" than the corresponding clean one), + but you shouldn't be releasing software with -dirty anyways. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%s" % pieces["short"] + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += "+g%s" % pieces["short"] + return rendered + + +def render_pep440_post_branch(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . + + The ".dev0" means not master branch. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%s" % pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+g%s" % pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_old(pieces): + """TAG[.postDISTANCE[.dev0]] . + + The ".dev0" means dirty. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + return rendered + + +def render_git_describe(pieces): + """TAG[-DISTANCE-gHEX][-dirty]. + + Like 'git describe --tags --dirty --always'. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render_git_describe_long(pieces): + """TAG-DISTANCE-gHEX[-dirty]. + + Like 'git describe --tags --dirty --always -long'. + The distance/hash is unconditional. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render(pieces, style): + """Render the given version pieces into the requested style.""" + if pieces["error"]: + return {"version": "unknown", + "full-revisionid": pieces.get("long"), + "dirty": None, + "error": pieces["error"], + "date": None} + + if not style or style == "default": + style = "pep440" # the default + + if style == "pep440": + rendered = render_pep440(pieces) + elif style == "pep440-branch": + rendered = render_pep440_branch(pieces) + elif style == "pep440-pre": + rendered = render_pep440_pre(pieces) + elif style == "pep440-post": + rendered = render_pep440_post(pieces) + elif style == "pep440-post-branch": + rendered = render_pep440_post_branch(pieces) + elif style == "pep440-old": + rendered = render_pep440_old(pieces) + elif style == "git-describe": + rendered = render_git_describe(pieces) + elif style == "git-describe-long": + rendered = render_git_describe_long(pieces) + else: + raise ValueError("unknown style '%s'" % style) + + return {"version": rendered, "full-revisionid": pieces["long"], + "dirty": pieces["dirty"], "error": None, + "date": pieces.get("date")} + + +def get_versions(): + """Get version information or return default if unable to do so.""" + # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have + # __file__, we can work backwards from there to the root. Some + # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which + # case we can only use expanded keywords. + + cfg = get_config() + verbose = cfg.verbose + + try: + return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, + verbose) + except NotThisMethod: + pass + + try: + root = os.path.realpath(__file__) + # versionfile_source is the relative path from the top of the source + # tree (where the .git directory might live) to this file. Invert + # this to find the root from __file__. + for _ in cfg.versionfile_source.split('/'): + root = os.path.dirname(root) + except NameError: + return {"version": "0+unknown", "full-revisionid": None, + "dirty": None, + "error": "unable to find root of source tree", + "date": None} + + try: + pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) + return render(pieces, cfg.style) + except NotThisMethod: + pass + + try: + if cfg.parentdir_prefix: + return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) + except NotThisMethod: + pass + + return {"version": "0+unknown", "full-revisionid": None, + "dirty": None, + "error": "unable to compute version", "date": None} diff --git a/src/family_register/app.py b/src/family_register/app.py new file mode 100644 index 0000000..5b600f8 --- /dev/null +++ b/src/family_register/app.py @@ -0,0 +1,52 @@ +#! python3 -m tsi-manager +# -*- coding: utf-8 -*- +import gettext +import locale +import os +import sys + +import wx + +import family_register.app_constants +import family_register.config +import family_register.controller +import family_register.gui +import family_register.utils.log +from family_register import __tool_name__, __version__ + +_conf_ = family_register.config.get_conf() + +sys.displayhook = lambda obj: print(repr(obj)) if obj is not None else None + +# setup language +gettext.bindtextdomain(family_register.app_constants.LANG_DOMAIN, + family_register.app_constants.LOCALE_PATH) +gettext.textdomain(family_register.app_constants.LANG_DOMAIN) + +try: + _lang_id_ = _conf_.get(family_register.config.GLOBAL, 'language') + language = family_register.app_constants.LANG[_lang_id_] +except ValueError: + language = family_register.app_constants.LANG.en +os.environ['LANG'] = language.name + +# setup logging +file_log = _conf_.getboolean(family_register.config.GLOBAL, 'logging') +family_register.utils.log.init_logging(file=file_log, shell=True) + + +def run() -> None: + app = wx.App() + + # reset locale to fix heap corruption [https://bugs.python.org/issue36792] + locale.setlocale(locale.LC_ALL, '') + + title = f'{__tool_name__} - {__version__}' + frm = family_register.controller.MainFrame(title) + frm.locale = wx.Locale(language.locale) + frm.Show() + app.MainLoop() + + +if __name__ == '__main__': + run() diff --git a/src/family_register/app_constants.py b/src/family_register/app_constants.py new file mode 100644 index 0000000..37aef28 --- /dev/null +++ b/src/family_register/app_constants.py @@ -0,0 +1,51 @@ +import enum +import os +import sys +import tempfile +from pathlib import Path +from typing import Final + +import wx + +from family_register import __tool_name__ + +# language domain +LANG_DOMAIN = "I18N_famreg" +BUNDLE_DIR = getattr(sys, '_MEIPASS', + os.path.abspath(os.path.dirname(__file__))) +LOCALE_PATH = os.path.join(BUNDLE_DIR, 'locale') + + +class LANG(enum.Enum): + def __new__(cls, text, locale=None): + obj = object.__new__(cls) + obj._value_ = text + obj.locale = locale + return obj + + de = ('Deutsch', wx.LANGUAGE_GERMAN) + en = ('English', wx.LANGUAGE_ENGLISH) + + +# base folders and paths +if sys.platform == 'win32': + APPDATA: Final[str] = os.getenv('APPDATA') +else: + APPDATA: Final[str] = os.path.join(Path.home(), '.config') +TEMP: Final[str] = tempfile.gettempdir() +TOOL_FOLDER: Final[str] = f'{__tool_name__}' + +STORAGE_PATH: Final[str] = os.path.join(APPDATA, TOOL_FOLDER) +TEMP_PATH: Final[str] = os.path.join(TEMP, TOOL_FOLDER) + +# filenames +FILE_CONFIG: Final[str] = 'settings.ini' +FILE_LOG: Final[str] = f'{__tool_name__}.log' + +# filepaths +FILEPATH_CONFIG: Final[str] = os.path.join(STORAGE_PATH, FILE_CONFIG) +FILEPATH_LOG: Final[str] = os.path.join(TEMP_PATH, FILE_LOG) + +# init path +os.makedirs(STORAGE_PATH, exist_ok=True) +os.makedirs(TEMP_PATH, exist_ok=True) diff --git a/src/family_register/config/__init__.py b/src/family_register/config/__init__.py new file mode 100644 index 0000000..5bc1366 --- /dev/null +++ b/src/family_register/config/__init__.py @@ -0,0 +1,3 @@ +from .handler import GLOBAL, get_conf + +__all__ = ['GLOBAL', 'get_conf'] diff --git a/src/family_register/config/handler.py b/src/family_register/config/handler.py new file mode 100644 index 0000000..5e0efa1 --- /dev/null +++ b/src/family_register/config/handler.py @@ -0,0 +1,118 @@ +# -*- conding=utf-8 -*- +from __future__ import annotations + +import os +import re +from configparser import _UNSET, ConfigParser, ExtendedInterpolation +from uuid import uuid4 + +from family_register.app_constants import FILEPATH_CONFIG +from family_register.utils.decorater import singleton + +ENCODING = 'UTF-8' +DEFAULT_CONFIG = { + (GLOBAL := 'Global'): { + 'language': 'de', + 'logging': True, + 'loglevel': 'DEBUG', + 'note': '', + } +} + + +@singleton +class Config(ConfigParser): + def __init__(self, converters=_UNSET) -> None: + """initialize Config object + """ + self.filename = '' + self.read_lock = False + super().__init__(converters=converters, + interpolation=ExtendedInterpolation()) + self.read_dict(DEFAULT_CONFIG) + + def _convert_to_list(self, value: str, delimiter=',') -> list: + if value.strip() != '': + data = re.split(rf'\s*{delimiter}\s*|\s*,\s*|\s*;\s*', value) + return [i.strip() for i in data] + + return [] + + def setfromdefault(self, section: str, option: str): + self.set(section, option, DEFAULT_CONFIG[section][option]) + + def setlist(self, + section: str, + option: str, + value: list, + *, + delimiter: str = ',') -> None: + self.set(section, option, delimiter.join(value)) + + def appendlist(self, + section: str, + option: str, + value: str, + *, + delimiter: str = ',', + in_order: bool = False, + position: int = None) -> None: + value_list = self.getlist(section, option) + if position is None: + position = len(value_list) + value_list.insert(position, value) + if in_order: + value_list.sort() + self.setlist(section, option, value_list, delimiter=delimiter) + + def getlist(self, section: str, option: str, *, fallback=_UNSET) -> list: + fallback = [] if fallback is _UNSET else fallback + value_list = self._get_conv(section, + option, + self._convert_to_list, + fallback=fallback) + return [] if value_list == [''] else value_list + + def set_config_file(self, filename: str) -> None: + """set configurationfile + + Arguments: + filename {str} -- path to tool configuration file + """ + self.filename = filename + if not os.path.isfile(self.filename): + self.write2file() + self.read(self.filename, encoding=ENCODING) + + def _read(self, fp, fpname) -> None: + """overwrite _read methode for locking this function + + Arguments: + fp {io} -- + fpname {[type]} -- [description] + """ + if self.read_lock: + return None + self.read_lock = True + return super()._read(fp, fpname) + + def write2file(self) -> None: + """write config to file + """ + os.makedirs(os.path.dirname(self.filename), exist_ok=True) + with open(self.filename, 'w', encoding=ENCODING) as cfg: + self.write(cfg) + + +def migrate_conf(conf: Config): + pass + + +def get_conf(filename: str = FILEPATH_CONFIG, force: bool = False) -> Config: + if force is True and Config in singleton.instances: + del singleton.instances[Config] + conf = Config() + if filename != conf.filename: + conf.set_config_file(filename) + migrate_conf(conf) + return conf diff --git a/src/family_register/controller/MainFrameController.py b/src/family_register/controller/MainFrameController.py new file mode 100644 index 0000000..d63f57b --- /dev/null +++ b/src/family_register/controller/MainFrameController.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +import family_register.config +import family_register.gui + + +class MainFrame(family_register.gui.MainFrame): + def __init__(self, title: str): + super().__init__(None, title=title) + self.conf = family_register.config.get_conf() diff --git a/src/family_register/controller/__init__.py b/src/family_register/controller/__init__.py new file mode 100644 index 0000000..dc12cfd --- /dev/null +++ b/src/family_register/controller/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +from .MainFrameController import MainFrame + +__all__ = ['MainFrame'] diff --git a/src/family_register/gui/__events__.py b/src/family_register/gui/__events__.py new file mode 100644 index 0000000..372f510 --- /dev/null +++ b/src/family_register/gui/__events__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +import wx.lib.newevent diff --git a/src/family_register/gui/__init__.py b/src/family_register/gui/__init__.py new file mode 100644 index 0000000..a25a1c0 --- /dev/null +++ b/src/family_register/gui/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +import wx +import wx.lib.art.img2pyartprov + +from . import __events__ as events +from . import _imgCatalog +from .frame_main import MainFrame + +wx.ArtProvider.Push( + wx.lib.art.img2pyartprov.Img2PyArtProvider(_imgCatalog, + artIdPrefix='myART_')) +del _imgCatalog + +__all__ = ['events', 'MainFrame'] diff --git a/src/family_register/gui/__template__.py b/src/family_register/gui/__template__.py new file mode 100644 index 0000000..9869bf6 --- /dev/null +++ b/src/family_register/gui/__template__.py @@ -0,0 +1,206 @@ +# -*- coding: utf-8 -*- + +########################################################################### +## Python code generated with wxFormBuilder (version 3.9.0 Aug 5 2021) +## http://www.wxformbuilder.org/ +## +## PLEASE DO *NOT* EDIT THIS FILE! +########################################################################### + +import wx +import wx.xrc +import wx.dataview + +import gettext +_ = gettext.gettext + +########################################################################### +## Class MainFrame +########################################################################### + +class MainFrame ( wx.Frame ): + + def __init__( self, parent ): + wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = _(u"Family Register"), pos = wx.DefaultPosition, size = wx.Size( 938,526 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL ) + + self.SetSizeHints( wx.DefaultSize, wx.DefaultSize ) + + mainSizer = wx.BoxSizer( wx.VERTICAL ) + + buttonSizer = wx.BoxSizer( wx.HORIZONTAL ) + + self.m_button1 = wx.Button( self, wx.ID_ANY, _(u"MyButton"), wx.DefaultPosition, wx.DefaultSize, 0 ) + buttonSizer.Add( self.m_button1, 1, wx.ALL|wx.EXPAND, 5 ) + + self.m_button2 = wx.Button( self, wx.ID_ANY, _(u"MyButton"), wx.DefaultPosition, wx.DefaultSize, 0 ) + buttonSizer.Add( self.m_button2, 1, wx.ALL|wx.EXPAND, 5 ) + + self.m_button3 = wx.Button( self, wx.ID_ANY, _(u"MyButton"), wx.DefaultPosition, wx.DefaultSize, 0 ) + buttonSizer.Add( self.m_button3, 1, wx.ALL|wx.EXPAND, 5 ) + + self.m_button4 = wx.Button( self, wx.ID_ANY, _(u"MyButton"), wx.DefaultPosition, wx.DefaultSize, 0 ) + buttonSizer.Add( self.m_button4, 1, wx.ALL|wx.EXPAND, 5 ) + + + mainSizer.Add( buttonSizer, 0, wx.EXPAND, 5 ) + + self.search_box = wx.SearchCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( -1,25 ), 0 ) + self.search_box.ShowSearchButton( True ) + self.search_box.ShowCancelButton( True ) + mainSizer.Add( self.search_box, 0, wx.ALL|wx.EXPAND, 5 ) + + self.register_dataViewCtrl = wx.dataview.DataViewCtrl( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.dataview.DV_HORIZ_RULES|wx.dataview.DV_ROW_LINES|wx.dataview.DV_VERT_RULES ) + self.name_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"Name"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.adress_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"Address"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.zip_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"Zip code"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.city_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"City"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.phone_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"Phone"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.mobile_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"Mobile"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.mail_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( _(u"E-mail"), 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + self.empty_dataViewColumn = self.register_dataViewCtrl.AppendTextColumn( wx.EmptyString, 0, wx.dataview.DATAVIEW_CELL_INERT, -1, wx.ALIGN_LEFT, wx.dataview.DATAVIEW_COL_RESIZABLE ) + mainSizer.Add( self.register_dataViewCtrl, 1, wx.ALL|wx.EXPAND, 5 ) + + + self.SetSizer( mainSizer ) + self.Layout() + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + + +########################################################################### +## Class PersonDialog +########################################################################### + +class PersonDialog ( wx.Dialog ): + + def __init__( self, parent ): + wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = _(u"Person"), pos = wx.DefaultPosition, size = wx.Size( 825,502 ), style = wx.DEFAULT_DIALOG_STYLE ) + + self.SetSizeHints( wx.DefaultSize, wx.DefaultSize ) + + mainSizer = wx.BoxSizer( wx.VERTICAL ) + + contentSizer = wx.BoxSizer( wx.HORIZONTAL ) + + self.icon_bitmap = wx.StaticBitmap( self, wx.ID_ANY, wx.ArtProvider.GetBitmap( wx.ART_NEW, wx.ART_CMN_DIALOG ), wx.DefaultPosition, wx.Size( -1,-1 ), 0 ) + contentSizer.Add( self.icon_bitmap, 1, wx.ALIGN_CENTER|wx.ALL, 5 ) + + addressSizer = wx.GridBagSizer( 0, 0 ) + addressSizer.SetFlexibleDirection( wx.BOTH ) + addressSizer.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + + self.firstname_staticText = wx.StaticText( self, wx.ID_ANY, _(u"First name"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.firstname_staticText.Wrap( -1 ) + + addressSizer.Add( self.firstname_staticText, wx.GBPosition( 0, 0 ), wx.GBSpan( 1, 2 ), wx.LEFT|wx.TOP, 5 ) + + self.lastname_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Last name"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.lastname_staticText.Wrap( -1 ) + + addressSizer.Add( self.lastname_staticText, wx.GBPosition( 0, 2 ), wx.GBSpan( 1, 2 ), wx.LEFT|wx.TOP, 5 ) + + self.firstname_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 150,-1 ), 0 ) + addressSizer.Add( self.firstname_textCtrl, wx.GBPosition( 1, 0 ), wx.GBSpan( 1, 2 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.lastname_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 150,-1 ), 0 ) + addressSizer.Add( self.lastname_textCtrl, wx.GBPosition( 1, 2 ), wx.GBSpan( 1, 2 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.street_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Street"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.street_staticText.Wrap( -1 ) + + addressSizer.Add( self.street_staticText, wx.GBPosition( 2, 0 ), wx.GBSpan( 1, 3 ), wx.LEFT|wx.TOP, 5 ) + + self.housenumber_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Nr."), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.housenumber_staticText.Wrap( -1 ) + + addressSizer.Add( self.housenumber_staticText, wx.GBPosition( 2, 3 ), wx.GBSpan( 1, 1 ), wx.LEFT|wx.TOP, 5 ) + + self.street_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + addressSizer.Add( self.street_textCtrl, wx.GBPosition( 3, 0 ), wx.GBSpan( 1, 3 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.housenumber_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 75,-1 ), 0 ) + addressSizer.Add( self.housenumber_textCtrl, wx.GBPosition( 3, 3 ), wx.GBSpan( 1, 1 ), wx.BOTTOM|wx.LEFT|wx.RIGHT, 5 ) + + self.zip_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Zip code"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.zip_staticText.Wrap( -1 ) + + addressSizer.Add( self.zip_staticText, wx.GBPosition( 4, 0 ), wx.GBSpan( 1, 1 ), wx.LEFT|wx.TOP, 5 ) + + self.city_staticText = wx.StaticText( self, wx.ID_ANY, _(u"City"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.city_staticText.Wrap( -1 ) + + addressSizer.Add( self.city_staticText, wx.GBPosition( 4, 1 ), wx.GBSpan( 1, 3 ), wx.LEFT|wx.TOP, 5 ) + + self.zip_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 80,-1 ), 0 ) + addressSizer.Add( self.zip_textCtrl, wx.GBPosition( 5, 0 ), wx.GBSpan( 1, 1 ), wx.BOTTOM|wx.LEFT|wx.RIGHT, 5 ) + + self.city_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + addressSizer.Add( self.city_textCtrl, wx.GBPosition( 5, 1 ), wx.GBSpan( 1, 3 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.country_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Country"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.country_staticText.Wrap( -1 ) + + addressSizer.Add( self.country_staticText, wx.GBPosition( 6, 0 ), wx.GBSpan( 1, 4 ), wx.LEFT|wx.TOP, 5 ) + + country_comboBoxChoices = [] + self.country_comboBox = wx.ComboBox( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, country_comboBoxChoices, wx.CB_DROPDOWN|wx.CB_READONLY ) + addressSizer.Add( self.country_comboBox, wx.GBPosition( 7, 0 ), wx.GBSpan( 1, 4 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.m_staticline1 = wx.StaticLine( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ) + addressSizer.Add( self.m_staticline1, wx.GBPosition( 8, 0 ), wx.GBSpan( 1, 4 ), wx.ALL|wx.EXPAND, 5 ) + + self.phone_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Phone"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.phone_staticText.Wrap( -1 ) + + addressSizer.Add( self.phone_staticText, wx.GBPosition( 9, 0 ), wx.GBSpan( 1, 4 ), wx.LEFT|wx.TOP, 5 ) + + self.phone_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + addressSizer.Add( self.phone_textCtrl, wx.GBPosition( 10, 0 ), wx.GBSpan( 1, 4 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.mobile_staticText = wx.StaticText( self, wx.ID_ANY, _(u"Mobile"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.mobile_staticText.Wrap( -1 ) + + addressSizer.Add( self.mobile_staticText, wx.GBPosition( 11, 0 ), wx.GBSpan( 1, 4 ), wx.EXPAND|wx.LEFT|wx.TOP, 5 ) + + self.mobile_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + addressSizer.Add( self.mobile_textCtrl, wx.GBPosition( 12, 0 ), wx.GBSpan( 1, 4 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + self.mail_staticText = wx.StaticText( self, wx.ID_ANY, _(u"E-mail"), wx.DefaultPosition, wx.DefaultSize, 0 ) + self.mail_staticText.Wrap( -1 ) + + addressSizer.Add( self.mail_staticText, wx.GBPosition( 13, 0 ), wx.GBSpan( 1, 4 ), wx.LEFT|wx.TOP, 5 ) + + self.mail_textCtrl = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.DefaultSize, 0 ) + addressSizer.Add( self.mail_textCtrl, wx.GBPosition( 14, 0 ), wx.GBSpan( 1, 4 ), wx.BOTTOM|wx.EXPAND|wx.LEFT|wx.RIGHT, 5 ) + + + addressSizer.AddGrowableCol( 1 ) + addressSizer.AddGrowableCol( 2 ) + + contentSizer.Add( addressSizer, 2, wx.EXPAND, 5 ) + + + mainSizer.Add( contentSizer, 1, wx.EXPAND, 5 ) + + m_sdbSizer1 = wx.StdDialogButtonSizer() + self.m_sdbSizer1OK = wx.Button( self, wx.ID_OK ) + m_sdbSizer1.AddButton( self.m_sdbSizer1OK ) + self.m_sdbSizer1Cancel = wx.Button( self, wx.ID_CANCEL ) + m_sdbSizer1.AddButton( self.m_sdbSizer1Cancel ) + m_sdbSizer1.Realize(); + + mainSizer.Add( m_sdbSizer1, 0, wx.ALL|wx.EXPAND, 5 ) + + + self.SetSizer( mainSizer ) + self.Layout() + + self.Centre( wx.BOTH ) + + def __del__( self ): + pass + + diff --git a/src/family_register/gui/_imgCatalog.py b/src/family_register/gui/_imgCatalog.py new file mode 100644 index 0000000..3fbc1eb --- /dev/null +++ b/src/family_register/gui/_imgCatalog.py @@ -0,0 +1,27 @@ +from wx.lib.embeddedimage import PyEmbeddedImage + +# ***************** Catalog starts here ******************* + +catalog = {} +index = [] + +#---------------------------------------------------------------------- +TESTGUIDE = PyEmbeddedImage( + b'iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADGklEQVR4nO2XP48bVRTFf/fN' + b'2I5jG5SQrVLQU4FElyBFpOATmI+wDUqF2HTMDDRIQIFEyRfA7ugoAishdxRpkg9AQQOWstn4' + b'/7x3KOxhbe/aOyN2hZC4zTTvnXPeu+fde8coEUpwZGj4DXfrOd8J3s8DMWBry3yrTnQ6ZXDw' + b'mPsSZoYuw3ZlBPAcMxAzvuq0+WARcFvkCCwIzLgDUIa8tADr41egb48nhG3yzcXkZTArCShC' + b'kNsle0x7xP1TAVXBr1zAdcSVC1BJ8xURV1lshpfwiCDOEQWMgIiuTUAQr9+8QeQckVtzg4AQ' + b'iJotGM/4CUA9Ivtw+Xr2CpAw+rh9i5XgLCMIfpjNeWc0J7BKnwMhiCPyFyf8MhvxhcDSZ6jb' + b'7Ub9fn+fiCs3deWwP7/mbt34XPDuwuMkrHCmwHcaxC9nPDk44pESYlJ8mm4qT1NEih2DO4aQ' + b'Zejw8LAZrPaZM3uYB19bAS73GXKYExrGBL7vdLg3mkCttqnOB6jXwc2ZAKQQsqXLNwyYZYVe' + b'QpIkMWS5Vy1td9ofT8ZjavEWcHF6M+LIuDd8iccuyIfwtQWRYFThVsPqc382nfrc+4B04csw' + b'M8VeyOzipyPQqvRWrxeGByJbMu3c7+yanKiSZfs/U4orldcKoRjw2p2GoCV1pfJ6tldBEJDO' + b'4ZuZzCyKW3WisON8QbhGC17NGQA8AJf97fL9YUarVqs5Sc5sk18SjUaD0Wg8iF/NGTi4HSAU' + b'/b7oaPWIxckLnrzxGomEpSnh54T4AYQUSC8gPuZ4KdJssMgXTe/zXOsNypBzUZhOp786zT8t' + b'c5hrDbtselWPiGeIDP2e0Gx3eGyO9xZ+1cjOIrQbuNMZTw+OeJQkuCzbna5utxv1er1Q6q0W' + b'rXX4Jd/evsVHk1FRYdbYBTfqMDzltztHvFkGF0rOA0Wrlng4GZGPZ4jzTziEgHPGSVny0gLO' + b'lOARMUbYno617C1OFSei/6fif30qrvZndAm4IFhFX1W7Ae0GF3CziRM8BVC3nBlLCVgrOH+s' + b'Bojtm1DdkZ+O+NGmfCIw3iqXir8AcetQsM6kEZgAAAAASUVORK5CYII=') +index.append('TESTGUIDE') +catalog['TESTGUIDE'] = TESTGUIDE diff --git a/src/family_register/gui/frame_main.py b/src/family_register/gui/frame_main.py new file mode 100644 index 0000000..ba3a448 --- /dev/null +++ b/src/family_register/gui/frame_main.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- + +from .__template__ import MainFrame as skelet + + +class MainFrame(skelet): + def __init__(self, parent, title: str): + super().__init__(parent) + self.SetTitle(title) diff --git a/src/family_register/locale/I18N_famreg.pot b/src/family_register/locale/I18N_famreg.pot new file mode 100644 index 0000000..17e1888 --- /dev/null +++ b/src/family_register/locale/I18N_famreg.pot @@ -0,0 +1,105 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-11-28 10:57+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" + + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:24 +msgid "Family Register" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:32 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:35 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:38 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:41 +msgid "MyButton" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:53 +msgid "Name" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:54 +msgid "Address" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:55 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:127 +msgid "Zip code" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:56 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:132 +msgid "City" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:57 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:155 +msgid "Phone" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:58 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:163 +msgid "Mobile" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:59 +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:171 +msgid "E-mail" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:80 +msgid "Person" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:95 +msgid "First name" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:100 +msgid "Last name" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:111 +msgid "Street" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:116 +msgid "Nr." +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/gui/__template__.py:143 +msgid "Country" +msgstr "" + +#: +#: /home/smokephil/Projekte/Familienregister/src/family_register/utils/log.py:37 +msgid "open logfile" +msgstr "" + diff --git a/src/family_register/utils/__init__.py b/src/family_register/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/family_register/utils/decorater.py b/src/family_register/utils/decorater.py new file mode 100644 index 0000000..31af738 --- /dev/null +++ b/src/family_register/utils/decorater.py @@ -0,0 +1,29 @@ +# -*- coding-utf-8 -*- +import sys +from functools import wraps +from typing import Callable, Type, TypeVar + +T = TypeVar('T') + + +def singleton(cls: Type[T]) -> Type[T]: + singleton.instances = {} + + def getinstance(): + if cls not in singleton.instances: + singleton.instances[cls] = cls() + return singleton.instances[cls] + + return getinstance + + +def use_exceptionLogging(func: Callable): + """ Redirect any unexpected tracebacks """ + @wraps(func) + def run(*args, **kwargs): + try: + return func(*args, **kwargs) + except: #pylint: disable=bare-except + sys.excepthook(*sys.exc_info()) + + return run diff --git a/src/family_register/utils/log.py b/src/family_register/utils/log.py new file mode 100644 index 0000000..6204347 --- /dev/null +++ b/src/family_register/utils/log.py @@ -0,0 +1,132 @@ +#! python3 +# -*- coding: utf-8 -*- +import logging +import os +import platform +import socket +import sys +import textwrap +import traceback +from datetime import datetime +from gettext import gettext as _ + +import wx + +import family_register.config +import family_register.gui +from family_register import __tool_name__, __version__ +from family_register._version import get_versions +from family_register.app_constants import FILEPATH_LOG + + +# disabel logger from modules +def handle_exception(exc_type, exc_value, exc_traceback): + if issubclass(exc_type, KeyboardInterrupt): + sys.__excepthook__(exc_type, exc_value, exc_traceback) + return + + exception = ''.join(traceback.format_exception_only(exc_type, exc_value)) + exc_info = (exc_type, exc_value, exc_traceback) + logging.critical(exception, exc_info=exc_info) + + dlg = wx.RichMessageDialog(None, + exception, + caption=exc_type.__name__, + style=wx.ICON_ERROR | wx.OK | wx.CENTRE) + dlg.ShowDetailedText(''.join(traceback.format_exception(*exc_info))) + dlg.ShowCheckBox(_('open logfile')) + dlg.ShowModal() + + if dlg.IsCheckBoxChecked(): + os.startfile(FILEPATH_LOG) + + +sys.excepthook = handle_exception + + +def init_logging(file: bool = True, shell: bool = False) -> None: + conf = family_register.config.get_conf() + + loglevel = conf.get('General', 'loglevel', fallback='NOTSET') + if loglevel not in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', + 'NOTSET'): + loglevel = logging.NOTSET + + ## create logger + logger = logging.getLogger() + logger.setLevel(loglevel) + while logger.hasHandlers(): + logger.handlers[0].close() + logger.removeHandler(logger.handlers[0]) + + # logging.Formatter attributes: + # https://docs.python.org/3/library/logging.html#logrecord-attributes + + if shell: + _shell_ = logging.StreamHandler(sys.stdout) + _shell_.setLevel(loglevel) + outformat = logging.Formatter( + '%(threadName)10s:%(levelname)-8s | :%(name)s: %(message)s') + _shell_.setFormatter(outformat) + logger.addHandler(_shell_) + + if file: + write_sysinfo(FILEPATH_LOG) + write_startup(FILEPATH_LOG) + _file_ = logging.FileHandler(FILEPATH_LOG, + mode='a', + encoding='latin-1') + _file_.setLevel(loglevel) + logformat = logging.Formatter( + '%(asctime)s | %(levelname)-8s - ' + '[%(threadName)-10s] [%(name)s] %(message)s') + _file_.setFormatter(logformat) + logger.addHandler(_file_) + + #logger.info('loglevel: %s', loglevel) + + +def write_sysinfo(filename: str = FILEPATH_LOG) -> None: + sysinfo = f""" + LOG: {FILEPATH_LOG} + ---------------------------------------------------------------- + Systeminfo: + Hostname: {socket.gethostname()} + CPU: {platform.processor()} + Operating system: {platform.platform()} + ---------------------------------------------------------------- + """ + if not os.path.exists(filename) or os.stat(filename).st_size == 0: + with open(filename, 'w', encoding='latin-1') as handler: + handler.write(textwrap.dedent(sysinfo).strip() + '\n\n') + + +def write_startup(filename: str = FILEPATH_LOG) -> None: + timestamp = datetime.now().strftime('%d.%m.%Y %H:%M:%S') + head = f'= {timestamp} === {__tool_name__} {__version__} ===\n' + head += f'Build Date: {get_versions()["date"]}\n' + head += f'Revisionid: {get_versions()["full-revisionid"]}\n' + + print(head) + with open(filename, 'a', encoding='latin-1') as handler: + handler.write('\n\n' + head + '\n') + + +def set_loglevel(loglevel: str = None) -> None: + if loglevel not in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', + 'NOTSET'): + loglevel = logging.NOTSET + + for logger in logging.Logger.manager.loggerDict.values(): + if isinstance(logger, logging.Logger): + logger.setLevel(loglevel) + + # diable external logger + logging.getLogger('parse').setLevel(logging.ERROR) + logging.getLogger('PIL').setLevel(logging.ERROR) + logging.getLogger('icoextract').setLevel(logging.ERROR) + + +set_loglevel() + +__all__ = ['init_logging', 'set_loglevel'] diff --git a/tools/geni18n.py b/tools/geni18n.py new file mode 100644 index 0000000..1948292 --- /dev/null +++ b/tools/geni18n.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +""" +This will generate the .pot and .mo files for the application domain and +languages defined below. + +The .po and .mo files are placed as per convention in + +"appfolder/locale/lang/LC_MESSAGES" + +The .pot file is placed in the locale folder. + +This script or something similar should be added to your build process. + +The actual translation work is normally done using a tool like poEdit or +similar, it allows you to generate a particular language catalog from the .pot +file or to use the .pot to merge new translations into an existing language +catalog. + +""" + +import os +import subprocess +import sys + +import family_register +import family_register.app_constants + +# we remove English as source code strings are in English +supportedLang = [] +for l in family_register.app_constants.LANG: + if l != family_register.app_constants.LANG.en: + supportedLang.append(l.name) + +appFolder = os.path.dirname(os.path.abspath(family_register.__file__)) + +# setup some stuff to get at Python I18N tools/utilities + +pyExe = sys.executable +pyFolder = '/usr/lib/python3.9' # os.path.split(pyExe)[0] +pyToolsFolder = os.path.join(pyFolder, 'Tools') +pyI18nFolder = os.path.join(pyToolsFolder, 'i18n') +pyGettext = os.path.join(pyI18nFolder, 'pygettext.py') +pyMsgfmt = os.path.join(pyI18nFolder, 'msgfmt.py') +outFolder = os.path.join(appFolder, 'locale') + +langDomain = family_register.app_constants.LANG_DOMAIN + +# build command for pygettext +tCmd = f'{pyExe} -Xutf8 {pyGettext} -a -d {langDomain} -o {langDomain}.pot -p {outFolder} {appFolder}' +print("Generating the .pot file") +print(f"cmd: {tCmd}") +rCode = subprocess.call(tCmd, shell=True) +print(f"return code: {rCode}\n\n") + +for tLang in supportedLang: + # build command for msgfmt + langDir = os.path.join(appFolder, rf'locale\{tLang}\LC_MESSAGES') + poFile = os.path.join(langDir, f'{langDomain}.po') + tCmd = f'{pyExe} {pyMsgfmt} {poFile}' + + print("Generating the .mo file") + print(f"cmd: {tCmd}") + rCode = subprocess.call(tCmd, shell=True) + print(f"return code: {rCode}\n\n") diff --git a/tools/pycompile.py b/tools/pycompile.py new file mode 100644 index 0000000..4763eb0 --- /dev/null +++ b/tools/pycompile.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 + +import os +import subprocess +import sys + +import PyInstaller.__main__ + +# ARGS +workspaceFolder = sys.argv[1] + +pyExe = sys.executable +pyFolder = os.path.split(pyExe)[0] + +# TRANSFORMATION +for file in os.listdir(workspaceFolder): + if file.endswith(".spec"): + specFile = os.path.join(workspaceFolder, file) + print(f"## SPEC-FILE: {specFile}") + break +else: + exit(1) + + +# COMMAND GENERATOR +def cmd_setup(): + cmd = [] + cmd.append(pyExe) + cmd.append("setup.py") + cmd.append("build") + return cmd + + +def cmd_pyinstaller(): + cmd = [] + cmd.append("--clean") + cmd.append(specFile) + return cmd + + +if __name__ == "__main__": + print("\n## RUN SETUP BUILD") + subprocess.check_call(cmd_setup(), cwd=workspaceFolder) + print("\n## RUN PYINSTALLER BUILD") + PyInstaller.__main__.run(cmd_pyinstaller()) diff --git a/tsi-manager.fbp b/tsi-manager.fbp new file mode 100644 index 0000000..090af1c --- /dev/null +++ b/tsi-manager.fbp @@ -0,0 +1,16176 @@ + + + + + ; + Python + 1 + source_name + 0 + 0 + res + UTF-8 + connect + __template__ + 1000 + none + 1 + 1 + TSI-Manager + + src/tsi_manager/gui + + 1 + 1 + 1 + 1 + UI + 0 + 0 + + 0 + wxAUI_MGR_DEFAULT + + wxBOTH + + 1 + 1 + impl_virtual + + + + 0 + wxID_ANY + + 1600,800 + TSI_Manager + + -1,-1 + wxDEFAULT_FRAME_STYLE + ; ; forward_declare + TSI-Manager + + + + wxTAB_TRAVERSAL + 1 + + + mainSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 96,96,96 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + 200,-1 + + 0 + 200,800 + 1 + SideMenu + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + vBoxSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + + menuSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + Quickstart + + 0 + + 0 + + + 0 + + 1 + quickstart_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + quickstart_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + Folders + + 0 + + 0 + + + 0 + + 1 + folder_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + folder_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + Diagnose + + 0 + + 0 + + + 0 + + 1 + diag_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + Setup + + 0 + + 0 + + + 0 + + 1 + setup_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + setup_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + Settings + + 0 + + 0 + + + 0 + + 1 + settings_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + settings_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + About + + 0 + + 0 + + + 0 + + 1 + about_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + about_buttonOnButtonClick + + + + + + 5 + wxEXPAND + 1 + + + noteSizer + wxVERTICAL + none + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 96,96,96 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + note_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + wxTE_MULTILINE|wxTE_NO_VSCROLL + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + wxBORDER_NONE + note_textCtrlOnText + + + + + + + + + 5 + wxEXPAND + 7 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + simplebook + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxCLIP_CHILDREN + + + + + + + 1 + 1 + + 1 + + 0 + wxID_ANY + + + statusBar + protected + + + wxSTB_DEFAULT_STYLE + ; ; forward_declare + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + -1,-1 + QuickstartPanel + + 1400,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + quickstartSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + addlink_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,-1 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + addlinkSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + 255,128,0 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 255,255,255 + 1 + + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + + + + 0 + + 0 + + + 0 + + 1 + addlink_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,50 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + addlink_buttonOnButtonClick + + + + + + + 5 + wxEXPAND|wxRESERVE_SPACE_EVEN_IF_HIDDEN + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + input_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + inputSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + inputLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + inputLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Input + 0 + + 0 + + + 0 + + 1 + inputLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + inputButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + startup_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + startupSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + startupLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + startupLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + StartUp + 0 + + 0 + + + 0 + + 1 + startupLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + startupButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + testing_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + testingSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + testingLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + testingLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Testing + 0 + + 0 + + + 0 + + 1 + testingLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + testingButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + analysis_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + analysisSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + analysisLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + analysisLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Analysis + 0 + + 0 + + + 0 + + 1 + analysisLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + analysisButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + result_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + resultSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + resultLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + resultLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Result + 0 + + 0 + + + 0 + + 1 + resultLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + resultButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + web_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + webSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + webLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + webLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Web + 0 + + 0 + + + 0 + + 1 + webLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + webButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + addweblink_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,-1 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + addweblinkSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + 255,128,0 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 255,255,255 + 1 + + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + + + + 0 + + 0 + + + 0 + + 1 + addweblink_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,50 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + addweblink_buttonOnButtonClick + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + + FoldersPanel + + 1100,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + foldersSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + addfolder_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,-1 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + addfolderSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + 255,128,0 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 255,255,255 + 1 + + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + + + + 0 + + 0 + + + 0 + + 1 + addfolder_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,50 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + addfolder_buttonOnButtonClick + + + + + + + 5 + wxEXPAND|wxRESERVE_SPACE_EVEN_IF_HIDDEN + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + local_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + localSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + locallLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + localLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Local + 0 + + 0 + + + 0 + + 1 + localLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + localButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + netdrive_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + netdriveSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + netdriveLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + netdriveLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + NetDrive + 0 + + 0 + + + 0 + + 1 + netdriveLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + netdriveButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + other_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + otherSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxFIXED_MINSIZE + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + otherLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + -1,50 + otherLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,12,74,0 + 0 + 0 + wxID_ANY + Other + 0 + + 0 + + + 0 + + 1 + otherLabel_staticText + 1 + + + protected + 1 + -1,-1 + Resizable + 1 + -1,-1 + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + otherButton_panel + 1 + + + protected + 1 + + Resizable + 1 + + ButtonPanel; .panel_button; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + + DiagPanel + + 1100,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + mainSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 1 + + + diagSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 0 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + diagLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diagLabelSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 1 + + 0 + protected + 0 + + + + 5 + wxALIGN_CENTER_VERTICAL + 14 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + Diagnose + 0 + + 0 + + + 0 + + 1 + diagLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND|wxRESERVE_SPACE_EVEN_IF_HIDDEN + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + + 1 + 0 + 1 + + 0 + + 0 + 0 + + Dock + 0 + Left + 1 + 255,255,255 + 1 + + Arial,90,90,24,74,0 + 0 + 0 + wxID_ANY + ≡ + + 0 + + 0 + + + 0 + + 1 + diag_menu_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBORDER_NONE|wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_menu_buttonOnButtonClick + + + + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_3DLIGHT + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diagContent_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diagContentSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + + wxBOTH + 0,1,2,4,5,7,8,10,11,13 + + 0 + + buttonSizer + wxFLEX_GROWMODE_SPECIFIED + none + 0 + + 3 + 14 + 0 + wxEXPAND|wxTOP + 0 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_staticline1 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 1 + 3 + 0 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + 128,255,128 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + read FS + 0 + + 0 + + + 0 + + 1 + diag_read_fs_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 0 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + functional + -1,-1 + 0 + + 0 + + + 0 + + 1 + diag_read_fs_func_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_fs_func_buttonOnButtonClick + + + + 5 + 1 + 1 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + list + + 0 + + 0 + + + 0 + + 1 + diag_read_fs_list_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_fs_list_buttonOnButtonClick + + + + 5 + 1 + 2 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + detail/list + + 0 + + 0 + + + 0 + + 1 + diag_read_fs_list_detail_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_fs_list_detail_buttonOnButtonClick + + + + 2 + 1 + 3 + wxEXPAND|wxLEFT|wxRIGHT + 1 + 3 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_buttons_staticline1 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL|wxLI_VERTICAL + ; ; forward_declare + 0 + + + + + + + + 1 + 2 + 4 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,128,128 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + delete FS + 0 + + 0 + + + 0 + + 1 + diag_del_fs_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 4 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + functional + + 0 + + 0 + + + 0 + + 1 + diag_del_fs_func_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_del_fs_func_buttonOnButtonClick + + + + 5 + 1 + 5 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + list + + 0 + + 0 + + + 0 + + 1 + diag_del_fs_list_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_del_fs_list_buttonOnButtonClick + + + + 2 + 1 + 6 + wxEXPAND|wxLEFT|wxRIGHT + 1 + 3 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_buttons_staticline2 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_VERTICAL + ; ; forward_declare + 0 + + + + + + + + 1 + 2 + 7 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + 0,147,255 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + read SVK + 0 + + 0 + + + 0 + + 1 + diag_read_svk_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 7 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + functional + + 0 + + 0 + + + 0 + + 1 + diag_read_svk_func_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_svk_func_buttonOnButtonClick + + + + 5 + 1 + 8 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + qc-style + + 0 + + 0 + + + 0 + + 1 + diag_read_svk_qc_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_svk_qc_buttonOnButtonClick + + + + 2 + 1 + 9 + wxEXPAND|wxLEFT|wxRIGHT + 1 + 3 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_buttons_staticline3 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_VERTICAL + ; ; forward_declare + 0 + + + + + + + + 1 + 2 + 10 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + 128,255,128 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + read IS + 0 + + 0 + + + 0 + + 1 + diag_read_is_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 10 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + list + + 0 + + 0 + + + 0 + + 1 + diag_read_is_list_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_is_list_buttonOnButtonClick + + + + 5 + 1 + 11 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + detail/list + + 0 + + 0 + + + 0 + + 1 + diag_read_is_list_detail_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_read_is_list_detail_buttonOnButtonClick + + + + 2 + 1 + 12 + wxEXPAND|wxLEFT|wxRIGHT + 1 + 3 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_buttons_staticline4 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_VERTICAL + ; ; forward_declare + 0 + + + + + + + + 1 + 1 + 13 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,128,128 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + delete IS + 0 + + 0 + + + 0 + + 1 + diag_del_is_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 13 + wxEXPAND + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + list + + 0 + + 0 + + + 0 + + 1 + diag_del_is_list_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_del_is_list_buttonOnButtonClick + + + + 5 + 1 + 0 + + 3 + 1 + + 1 + protected + 0 + + + + 2 + 14 + 0 + wxBOTTOM|wxEXPAND + 4 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_staticline2 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + + + 5 + wxEXPAND + 1 + + + diag_funcSizer + wxHORIZONTAL + none + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_sgbd_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diag_sgbdSizer + wxVERTICAL + none + + 5 + wxEXPAND|wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + SGBD + 0 + + 0 + + + 0 + + 1 + diag_sgbd_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_sgbd_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + diag_sgbd_comboBoxOnCombobox + + + + 5 + wxEXPAND|wxLEFT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Argument + 0 + + 0 + + + 0 + + 1 + diag_sgbd_arg_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + diag_sgbd_arg_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxEXPAND|wxLEFT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Job + 0 + + 0 + + + 0 + + 1 + diag_sgbd_job_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_sgbd_job_listBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sgbd_job_listBoxOnListBoxDClick + + + + + + + 1 + wxALL|wxEXPAND + 4 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_notebook + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + + + Last Job + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_job_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diag_jobSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + diag_job_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + wxHSCROLL|wxTE_MULTILINE|wxTE_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + History + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_history_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diag_historySizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + diag_history_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + wxHSCROLL|wxTE_MULTILINE|wxTE_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + 5 + wxALL|wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_sgbdlist_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + diag_sgbdlistSizer + wxVERTICAL + none + + 5 + wxALIGN_CENTER|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + SGBD list + 0 + + 0 + + + 0 + + 1 + diag_sgbdlist_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + All + + 0 + + 0 + + + 0 + + 1 + diag_sgbdlist_all_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sgbdlist_all_buttonOnButtonClick + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + None + + 0 + + 0 + + + 0 + + 1 + diag_sdgblist_none_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sdgblist_none_buttonOnButtonClick + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + Get Functional + + 0 + + 0 + + + 0 + + 1 + diag_sdgblist_getfunc_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sdgblist_getfunc_buttonOnButtonClick + + + + 5 + wxEXPAND|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_sgbdlist_listBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sgbdlist_listBoxOnListBoxDClick + + + + + + + + + + + + + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + 100,100,100 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 1 + wxID_ANY + + 0 + 200,-1 + + 0 + 200,-1 + 1 + SideMenu + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + menuSizer + wxVERTICAL + none + + 5 + wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + 124,124,124 + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + 221,221,221 + 1 + + Arial,90,92,11,74,0 + 0 + 0 + wxID_ANY + f-code update for selected SGBD + + 0 + + 0 + + + 0 + + 1 + diag_fcode_update_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,60 + wxBORDER_NONE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + quickstart_buttonOnButtonClick + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + + SetupPanel + + 1100,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + setupSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + setupLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + setupLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + Setup + 0 + + 0 + + + 0 + + 1 + setupLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND | wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + setupContent_panel + 1 + + + protected + 1 + + Resizable + 1 + + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + setupContentSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 2 + + + setupLeftSizer + wxVERTICAL + none + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,12,70,1 + 0 + 0 + wxID_ANY + First aid for automatic setup + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText1 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,0,0 + 1 + ,90,92,10,70,0 + 0 + 0 + wxID_ANY + Important: Before using the automated setup, the following tools must be installed: + 1 + + 0 + + + 0 + + 1 + setupFirstAid_staticText2 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 30 + wxEXPAND|wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,0,0 + 1 + ,90,90,-1,70,0 + 0 + 0 + wxID_ANY + - ECU-TEST (WUSS) - CANoe (WUSS) - TortoiseGIT - GIT + 1 + + 0 + + + 0 + + 1 + setupFirstAid_staticText3 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,0,0 + 1 + ,93,90,-1,70,0 + 0 + 0 + wxID_ANY + All tools must be installed under C:\EC-Apps + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText4 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + setupFirstAid_staticline1 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,10,70,0 + 0 + 0 + wxID_ANY + The following actions can be performed automatically + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText5 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 30 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,-1,70,0 + 0 + 0 + wxID_ANY + GIT clone/pull + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText6 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Necessary folders are loaded from Bitbucket + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText7 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 0 + wxALL|wxEXPAND + 0 + + 10 + protected + 0 + + + + 30 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,-1,70,0 + 0 + 0 + wxID_ANY + copy Tools + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText8 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Necessary tools are copied from Z:\60_Tools to C:\EC-Apps + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText9 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 10 + protected + 0 + + + + 30 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,-1,70,0 + 0 + 0 + wxID_ANY + SWL-Cockpit/E-Sys installation + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText10 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + The installations of the necessary tools are called from Z:\60_Tools + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText11 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 10 + protected + 0 + + + + 30 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,-1,70,0 + 0 + 0 + wxID_ANY + update Tools + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText12 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Tools are checked and updated + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText13 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 10 + protected + 0 + + + + 30 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + ,90,92,-1,70,0 + 0 + 0 + wxID_ANY + create configuration files + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText14 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,0,0 + 1 + ,93,90,8,70,0 + 0 + 0 + wxID_ANY + (GIT clone/update must have been done successfully at least once.) + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText15 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 50 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Main configuration files are created and adjusted + 0 + + 0 + + + 0 + + 1 + setupFirstAid_staticText16 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + 5 + protected + 0 + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + setupFirstAid_staticline2 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + + + 5 + wxEXPAND + 1 + + + setupRightSizer + wxVERTICAL + none + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + GIT Control + 0 + + 0 + + + 0 + + 1 + setupGitHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + GIT clone/pull + + 0 + + 0 + + + 0 + + 1 + setupGit_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + Necessary folders are loaded from Bitbucket + + wxFILTER_NONE + wxDefaultValidator + + + + + setupGit_buttonOnButtonClick + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + settings + + 0 + + + 0 + + 1 + gitSettings_collapsiblePane + 1 + + + protected + 1 + + Resizable + 1 + + wxCP_DEFAULT_STYLE|wxCP_NO_TLW_RESIZE + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + gitSettings_collapsiblePaneOnCollapsiblePaneChanged + + 2 + wxBOTH + 1 + + 0 + + gitSizer + wxFLEX_GROWMODE_SPECIFIED + none + 0 + 0 + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + URL + 0 + + 0 + + + 0 + + 1 + giturl_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 1 + + + giturlSizer + wxHORIZONTAL + none + + 5 + wxBOTTOM|wxEXPAND|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + giturl_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + giturl_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + giturl_buttonOnButtonClick + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Branch + 0 + + 0 + + + 0 + + 1 + gitbranch_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + gitbranch_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + 100,-1 + wxTE_PROCESS_ENTER + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + gitbranch_comboBoxOnCombobox + gitbranch_comboBoxOnTextEnter + + + + + + + 10 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + setupGit_staticline + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + Tools Configuration + 0 + + 0 + + + 0 + + 1 + setupToolsHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + copy Tools + + 0 + + 0 + + + 0 + + 1 + setupToolsCopy_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + Necessary tools are copied from Z:\60_Tools to C:\EC-Apps + + wxFILTER_NONE + wxDefaultValidator + + + + + setupToolsCopy_buttonOnButtonClick + + + + 5 + wxEXPAND|wxLEFT|wxRIGHT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + SWL-Cockpit/E-Sys installation + + 0 + + 0 + + + 0 + + 1 + setupToolsInstall_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + The installations of the necessary tools are called from Z:\60_Tools + + wxFILTER_NONE + wxDefaultValidator + + + + + setupToolsInstall_buttonOnButtonClick + + + + 5 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + update Tools + + 0 + + 0 + + + 0 + + 1 + setupToolsUpdate_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + Tools are checked and updated + + wxFILTER_NONE + wxDefaultValidator + + + + + setupToolsUpdate_buttonOnButtonClick + + + + 10 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + setupTools_staticline + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + Configuration Files + 0 + + 0 + + + 0 + + 1 + setupConfigHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxLEFT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Enter path for databases manually + + 0 + + + 0 + + 1 + setupConfigNkPath_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + setupConfigNkPath_checkBoxOnCheckBox + + + + 5 + wxEXPAND + 0 + + + setupConfigNkPathSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + setupConfigNkPath_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + setupConfigNkPath_Button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + setupConfigNkPath_ButtonOnButtonClick + + + + + + 5 + wxLEFT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + QMUC-number of AT-computer + 0 + + 0 + + + 0 + + 1 + setupConfigAtPcName_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + setupConfigAtPcNameSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + setupConfigAtPcName_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + setupConfigAtPcName_Button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + setupConfigAtPcName_ButtonOnButtonClick + + + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + create configuration files + + 0 + + 0 + + + 0 + + 1 + setupConfigCreateConfigFiles_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + Main configuration files are created and adjusted + + wxFILTER_NONE + wxDefaultValidator + + + + + setupConfigCreateConfigFiles_buttonOnButtonClick + + + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + + SettingsPanel + + 1100,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + settingsSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + settingsLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + settingsLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + Settings + 0 + + 0 + + + 0 + + 1 + settingsLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND + 1 + + + settingsContentSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 1 + + + settingsSizer_1 + wxVERTICAL + none + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + TSP + 0 + + 0 + + + 0 + + 1 + tspHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + TSP Name + 0 + + 0 + + + 0 + + 1 + tspName_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + tspNameSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + tspName_textCtr + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + tspName_textCtrOnText + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + tspName_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + tspName_buttonOnButtonClick + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Service Pack + 0 + + 0 + + + 0 + + 1 + sp_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + sp_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + sp_comboBoxOnCombobox + + + + 5 + wxEXPAND + 1 + + + seriesSizer + wxHORIZONTAL + none + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Series + 0 + + 0 + + + 0 + + 1 + series_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 128,128,128 + 1 + ,93,90,-1,70,0 + 0 + 0 + wxID_ANY + ( --- ) + 0 + + 0 + + + 0 + + 1 + release_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + series_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + series_comboBoxOnCombobox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Vehicle Order + 0 + + 0 + + + 0 + + 1 + fa_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + fa_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + fa_comboBoxOnCombobox + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + m_staticline1 + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + SP-SOP + 0 + + 0 + + + 0 + + 1 + sop_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + sop_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + sop_comboBoxOnCombobox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + I-Step + 0 + + 0 + + + 0 + + 1 + istep_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + istep_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + istep_comboBoxOnCombobox + + + + 5 + wxALIGN_RIGHT|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + create new i-step + + 0 + + 0 + + + 0 + + 1 + create_istep_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + create_istep_buttonOnButtonClick + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + tsp_staticline + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Automatic configuration adjustment when connecting + 0 + + 0 + + + 0 + + 1 + autoConfig_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Activate + + 0 + + + 0 + + 1 + autoConfig_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + autoConfig_checkBoxOnCheckBox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Enter path for databases manually + + 0 + + + 0 + + 1 + dbpath_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + dbpath_checkBoxOnCheckBox + + + + 5 + wxEXPAND + 0 + + + dbpathSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + dbpath_textCtr + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + dbpath_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + dbpath_buttonOnButtonClick + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Search term for the assignment (e.g. S15A, G070, ...) + + 0 + + + 0 + + 1 + assignment_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + assignment_checkBoxOnCheckBox + + + + 5 + wxEXPAND + 0 + + + assignmentSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxLEFT|wxTOP + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + assignment_textCtr + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + assignment_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + assignment_buttonOnButtonClick + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Virtual Drives + 0 + + 0 + + + 0 + + 1 + vdrives_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + vdrivesSizer + wxHORIZONTAL + none + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + Update I-Step + + 0 + + 0 + + + 0 + + 1 + vdrives_update_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + vdrives_update_buttonOnButtonClick + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + Connect + + 0 + + 0 + + + 0 + + 1 + vdrives_connect_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + vdrives_connect_buttonOnButtonClick + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + Disconnect + + 0 + + 0 + + + 0 + + 1 + vdrives_disconnect_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + vdrives_disconnect_buttonOnButtonClick + + + + + + + + 5 + wxEXPAND + 1 + + + settingsSizer_2 + wxVERTICAL + none + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + Links + 0 + + 0 + + + 0 + + 1 + linkHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + + linksSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + export as xml + + 0 + + 0 + + + 0 + + 1 + links_xml_export_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + links_xml_export_buttonOnButtonClick + + + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + import from xml + + 0 + + 0 + + + 0 + + 1 + links_xml_import_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + links_xml_import_buttonOnButtonClick + + + + + + 5 + wxEXPAND + 0 + + 20 + protected + 0 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + Diagnose + 0 + + 0 + + + 0 + + 1 + diagHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Output Format + 0 + + 0 + + + 0 + + 1 + diag_output_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + diag_output_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + TEXT + + + + diag_output_comboBoxOnCombobox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + SBGD Path + 0 + + 0 + + + 0 + + 1 + diag_sgbdPath_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + diag_sgbdPathSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxLEFT + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + Select a folder + + 0 + + 1 + diag_sgbdPath_dirPicker + 1 + + + protected + 1 + + Resizable + 1 + + wxDIRP_DEFAULT_STYLE|wxDIRP_DIR_MUST_EXIST|wxDIRP_SMALL + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + diag_sgbdPath_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_sgbdPath_buttonOnButtonClick + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + TST Path + 0 + + 0 + + + 0 + + 1 + diag_tstPath_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + diag_tstPathSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxLEFT + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + Select a folder + + 0 + + 1 + diag_tstPath_dirPicker + 1 + + + protected + 1 + + Resizable + 1 + + wxDIRP_DEFAULT_STYLE|wxDIRP_SMALL + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + Load From Art Provider; wxART_FILE_SAVE; wxART_BUTTON + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + diag_tstPath_button + 1 + + + protected + 1 + + + + Resizable + 1 + + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_tstPath_buttonOnButtonClick + + + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Update functional SGBD and translation of error codes at startup. + + 0 + + + 0 + + 1 + diag_update_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_update_checkBoxOnCheckBox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Start with diagnostic function. + + 0 + + + 0 + + 1 + diag_start_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + diag_start_checkBoxOnCheckBox + + + + 5 + wxEXPAND + 0 + + 20 + protected + 0 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + TEST-GUIDE + 0 + + 0 + + + 0 + + 1 + testguideHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + Suite Run + 0 + + 0 + + + 0 + + 1 + suiterun_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + releaseSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + -- + 0 + + 0 + + + 0 + + 1 + tg_series_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 2 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + / + 0 + + 0 + + + 0 + + 1 + slash_staticText1 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + -- + 0 + + 0 + + + 0 + + 1 + tg_sop_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 2 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + / + 0 + + 0 + + + 0 + + 1 + slash_staticText2 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + Arial,90,92,9,74,0 + 0 + 0 + wxID_ANY + -- + 0 + + 0 + + + 0 + + 1 + tg_istep_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 2 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + / + 0 + + 0 + + + 0 + + 1 + slash_staticText3 + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + -- + 0 + + 0 + + + 0 + + 1 + tg_tsp_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 2 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + / + 0 + + 0 + + + 0 + + 1 + slash_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxRIGHT + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + tg_suiterun_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + 5 + wxEXPAND|wxLEFT|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + create release in test-guide + + 0 + + 0 + + + 0 + + 1 + tg_release_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + tg_release_buttonOnButtonClick + + + + 5 + wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + tg_gauge + 1 + + + protected + 1 + + 100 + Resizable + 1 + -1,5 + wxGA_HORIZONTAL + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + 0 + + + + + + + 5 + wxEXPAND + 0 + + 20 + protected + 0 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + GIT + 0 + + 0 + + + 0 + + 1 + gitHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxEXPAND + 0 + + + git_qnumSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Q-Account to Author: + 0 + + 0 + + + 0 + + 1 + git_qnum_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + git_qnum_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + convert to author + + 0 + + 0 + + + 0 + + 1 + git_convert_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + git_convert_buttonOnButtonClick + + + + + + 5 + wxEXPAND + 0 + + + git_author_inputSizer + wxHORIZONTAL + none + + 5 + wxLEFT + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + 150,-1 + 1 + git_name_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + wxTE_PROCESS_ENTER + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + git_name_textCtrlOnText + + + + 5 + wxEXPAND|wxRIGHT + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + git_mail_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + git_mail_textCtrlOnText + + + + + + 5 + wxEXPAND + 0 + + + git_author_buttonSizer + wxHORIZONTAL + none + + 5 + wxEXPAND + 0 + + 0 + protected + 0 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 1 + wxID_ANY + set author + + 0 + + 0 + + + 0 + + 1 + git_setAuthor_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + clear author + + 0 + + 0 + + + 0 + + 1 + git_clearAuthor_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + git_clearAuthor_buttonOnButtonClick + + + + + + + + 5 + wxEXPAND + 1 + + + settingsSizer_3 + wxVERTICAL + none + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + wxSYS_COLOUR_WINDOWFRAME + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + wxSYS_COLOUR_WINDOW + 1 + BMW Helvetica BlackCond,90,90,14,70,0 + 0 + 0 + wxID_ANY + Other + 0 + + 0 + + + 0 + + 1 + otherHeader_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + generate E-Sys link + + 0 + + 0 + + + 0 + + 1 + esyslink_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + esyslink_buttonOnButtonClick + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + reset settings and exit + + 0 + + 0 + + + 0 + + 1 + settings_reset_button + 1 + + + protected + 1 + + + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + settings_reset_buttonOnButtonClick + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + save log to file + + 0 + + + 0 + + 1 + save_log_checkBox + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + save_log_checkBoxOnCheckBox + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Langunage + 0 + + 0 + + + 0 + + 1 + language_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALL|wxEXPAND + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + language_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + wxCB_READONLY + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + language_comboBoxOnCombobox + + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + + 1 + 1 + impl_virtual + + + 0 + wxID_ANY + + + AboutPanel + + 1100,800 + ; ; forward_declare + + + + wxCLIP_CHILDREN|wxTAB_TRAVERSAL + + + aboutSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + aboutLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + aboutLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + About + 0 + + 0 + + + 0 + + 1 + aboutLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + + + 0 + wxAUI_MGR_DEFAULT + + wxBOTH + + 1 + 1 + impl_virtual + + + + 0 + wxID_ANY + + + AddDialog + + 624,239 + wxDEFAULT_DIALOG_STYLE + ; ; forward_declare + + + + + + + + mainSizer + wxVERTICAL + none + + 5 + wxEXPAND + 1 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + addLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + addLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + add + 0 + + 0 + + + 0 + + 1 + addLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + + 0 + + 5 + protected + 0 + + + + 5 + wxEXPAND + 2 + + + wxBOTH + 2 + + 0 + + contentSizer + wxFLEX_GROWMODE_SPECIFIED + none + 0 + + 5 + 1 + 0 + wxEXPAND + 0 + 3 + + + iconSizer + wxVERTICAL + none + + 5 + wxALIGN_CENTER_HORIZONTAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + + + 0 + + 0 + + + 0 + + 1 + icon_bitmapButton + 1 + + + protected + 1 + + + + Resizable + 1 + 64,64 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + icon_bitmapButtonOnButtonClick + + + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 1 + wxID_ANY + + 0 + + + 0 + + 1 + icon_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + + 0 + + 0 + protected + 120 + + + + + + 5 + 1 + 1 + wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxALL + 0 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Ressource + 0 + + 0 + + + 0 + + 1 + ressource_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_RIGHT + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 2 + wxEXPAND + 0 + 1 + + + PickerSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + + 0 + + 1 + picker_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + wxTE_PROCESS_ENTER + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + picker_textCtrlOnTextEnter + + + + 5 + wxALIGN_CENTER_VERTICAL|wxBOTTOM|wxRIGHT|wxTOP + 0 + + 1 + 1 + 1 + 1 + + + + + + + + + 1 + 0 + 1 + + 1 + + 0 + 0 + + Dock + 0 + Left + 1 + + 1 + + + 0 + 0 + wxID_ANY + ... + + 0 + + 0 + + + 0 + + 1 + picker_button + 1 + + + protected + 1 + + + + Resizable + 1 + -1,-1 + wxBU_EXACTFIT + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + picker_buttonOnButtonClick + + + + + + 5 + 1 + 1 + wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxALL + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Description + 0 + + 0 + + + 0 + + 1 + description_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_RIGHT + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 2 + wxALIGN_CENTER_VERTICAL|wxALL|wxEXPAND + 1 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + 15 + + 0 + + 1 + description_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + 1 + 1 + wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxALL + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Category + 0 + + 0 + + + 0 + -1,-1 + 1 + category_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_RIGHT + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + 1 + 2 + wxALIGN_CENTER_VERTICAL|wxALL + 2 + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + category_comboBox + 1 + + + protected + 1 + + Resizable + -1 + 1 + 200,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + button_staticline + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + + buttonSizer + protected + + + + + + 0 + wxAUI_MGR_DEFAULT + + wxBOTH + + 1 + 1 + impl_virtual + + + + 0 + wxID_ANY + + + IstepDialog + + 376,186 + wxDEFAULT_DIALOG_STYLE + ; ; forward_declare + + + + + + + + mainSizer + wxVERTICAL + none + + 5 + wxEXPAND + 8 + + 1 + 1 + 1 + 1 + + + + + + 255,124,0 + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + -1,50 + + 0 + -1,50 + 1 + addLabel_panel + 1 + + + protected + 1 + + Resizable + 1 + -1,50 + ; ; forward_declare + 0 + + + + wxTAB_TRAVERSAL + + + addLabelSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL + 1 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + 255,255,255 + 1 + Arial,90,92,16,74,0 + 0 + 0 + wxID_ANY + add new I-Step + 0 + + 0 + + + 0 + + 1 + addLabel_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_CENTER_HORIZONTAL + ; ; forward_declare + 0 + + + + + -1 + + + + + + + 5 + wxEXPAND + 1 + + 5 + protected + 0 + + + + 5 + wxEXPAND + 0 + + + contentSizer + wxHORIZONTAL + none + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + I-Step: + 0 + + 0 + + + 0 + 80,-1 + 1 + istep_staticText + 1 + + + protected + 1 + + Resizable + 1 + + wxALIGN_RIGHT + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + 4 + + 0 + + 1 + series_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 40,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + - + 0 + + 0 + + + 0 + + 1 + dash1_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + 2 + + 0 + + 1 + year_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 25,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + - + 0 + + 0 + + + 0 + + 1 + dash2_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + 2 + + 0 + + 1 + month_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 25,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + 5 + wxALIGN_CENTER_VERTICAL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + - + 0 + + 0 + + + 0 + + 1 + dash3_staticText + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + + + -1 + + + + 5 + wxALIGN_CENTER_VERTICAL|wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + 3 + + 0 + + 1 + istep_textCtrl + 1 + + + protected + 1 + + Resizable + 1 + 30,-1 + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + 5 + + 1 + + 5 + protected + 0 + + + + 5 + wxEXPAND | wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + 0 + + + 0 + + 1 + button_staticline + 1 + + + protected + 1 + + Resizable + 1 + + wxLI_HORIZONTAL + ; ; forward_declare + 0 + + + + + + + + 5 + wxALL|wxEXPAND + 0 + + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + + buttonSizer + protected + + + + + + diff --git a/versioneer.py b/versioneer.py new file mode 100644 index 0000000..9713007 --- /dev/null +++ b/versioneer.py @@ -0,0 +1,2064 @@ + +# Version: 0.20 + +"""The Versioneer - like a rocketeer, but for versions. + +The Versioneer +============== + +* like a rocketeer, but for versions! +* https://github.com/python-versioneer/python-versioneer +* Brian Warner +* License: Public Domain +* Compatible with: Python 3.6, 3.7, 3.8, 3.9 and pypy3 +* [![Latest Version][pypi-image]][pypi-url] +* [![Build Status][travis-image]][travis-url] + +This is a tool for managing a recorded version number in distutils-based +python projects. The goal is to remove the tedious and error-prone "update +the embedded version string" step from your release process. Making a new +release should be as easy as recording a new tag in your version-control +system, and maybe making new tarballs. + + +## Quick Install + +* `pip install versioneer` to somewhere in your $PATH +* add a `[versioneer]` section to your setup.cfg (see [Install](INSTALL.md)) +* run `versioneer install` in your source tree, commit the results +* Verify version information with `python setup.py version` + +## Version Identifiers + +Source trees come from a variety of places: + +* a version-control system checkout (mostly used by developers) +* a nightly tarball, produced by build automation +* a snapshot tarball, produced by a web-based VCS browser, like github's + "tarball from tag" feature +* a release tarball, produced by "setup.py sdist", distributed through PyPI + +Within each source tree, the version identifier (either a string or a number, +this tool is format-agnostic) can come from a variety of places: + +* ask the VCS tool itself, e.g. "git describe" (for checkouts), which knows + about recent "tags" and an absolute revision-id +* the name of the directory into which the tarball was unpacked +* an expanded VCS keyword ($Id$, etc) +* a `_version.py` created by some earlier build step + +For released software, the version identifier is closely related to a VCS +tag. Some projects use tag names that include more than just the version +string (e.g. "myproject-1.2" instead of just "1.2"), in which case the tool +needs to strip the tag prefix to extract the version identifier. For +unreleased software (between tags), the version identifier should provide +enough information to help developers recreate the same tree, while also +giving them an idea of roughly how old the tree is (after version 1.2, before +version 1.3). Many VCS systems can report a description that captures this, +for example `git describe --tags --dirty --always` reports things like +"0.7-1-g574ab98-dirty" to indicate that the checkout is one revision past the +0.7 tag, has a unique revision id of "574ab98", and is "dirty" (it has +uncommitted changes). + +The version identifier is used for multiple purposes: + +* to allow the module to self-identify its version: `myproject.__version__` +* to choose a name and prefix for a 'setup.py sdist' tarball + +## Theory of Operation + +Versioneer works by adding a special `_version.py` file into your source +tree, where your `__init__.py` can import it. This `_version.py` knows how to +dynamically ask the VCS tool for version information at import time. + +`_version.py` also contains `$Revision$` markers, and the installation +process marks `_version.py` to have this marker rewritten with a tag name +during the `git archive` command. As a result, generated tarballs will +contain enough information to get the proper version. + +To allow `setup.py` to compute a version too, a `versioneer.py` is added to +the top level of your source tree, next to `setup.py` and the `setup.cfg` +that configures it. This overrides several distutils/setuptools commands to +compute the version when invoked, and changes `setup.py build` and `setup.py +sdist` to replace `_version.py` with a small static file that contains just +the generated version data. + +## Installation + +See [INSTALL.md](./INSTALL.md) for detailed installation instructions. + +## Version-String Flavors + +Code which uses Versioneer can learn about its version string at runtime by +importing `_version` from your main `__init__.py` file and running the +`get_versions()` function. From the "outside" (e.g. in `setup.py`), you can +import the top-level `versioneer.py` and run `get_versions()`. + +Both functions return a dictionary with different flavors of version +information: + +* `['version']`: A condensed version string, rendered using the selected + style. This is the most commonly used value for the project's version + string. The default "pep440" style yields strings like `0.11`, + `0.11+2.g1076c97`, or `0.11+2.g1076c97.dirty`. See the "Styles" section + below for alternative styles. + +* `['full-revisionid']`: detailed revision identifier. For Git, this is the + full SHA1 commit id, e.g. "1076c978a8d3cfc70f408fe5974aa6c092c949ac". + +* `['date']`: Date and time of the latest `HEAD` commit. For Git, it is the + commit date in ISO 8601 format. This will be None if the date is not + available. + +* `['dirty']`: a boolean, True if the tree has uncommitted changes. Note that + this is only accurate if run in a VCS checkout, otherwise it is likely to + be False or None + +* `['error']`: if the version string could not be computed, this will be set + to a string describing the problem, otherwise it will be None. It may be + useful to throw an exception in setup.py if this is set, to avoid e.g. + creating tarballs with a version string of "unknown". + +Some variants are more useful than others. Including `full-revisionid` in a +bug report should allow developers to reconstruct the exact code being tested +(or indicate the presence of local changes that should be shared with the +developers). `version` is suitable for display in an "about" box or a CLI +`--version` output: it can be easily compared against release notes and lists +of bugs fixed in various releases. + +The installer adds the following text to your `__init__.py` to place a basic +version in `YOURPROJECT.__version__`: + + from ._version import get_versions + __version__ = get_versions()['version'] + del get_versions + +## Styles + +The setup.cfg `style=` configuration controls how the VCS information is +rendered into a version string. + +The default style, "pep440", produces a PEP440-compliant string, equal to the +un-prefixed tag name for actual releases, and containing an additional "local +version" section with more detail for in-between builds. For Git, this is +TAG[+DISTANCE.gHEX[.dirty]] , using information from `git describe --tags +--dirty --always`. For example "0.11+2.g1076c97.dirty" indicates that the +tree is like the "1076c97" commit but has uncommitted changes (".dirty"), and +that this commit is two revisions ("+2") beyond the "0.11" tag. For released +software (exactly equal to a known tag), the identifier will only contain the +stripped tag, e.g. "0.11". + +Other styles are available. See [details.md](details.md) in the Versioneer +source tree for descriptions. + +## Debugging + +Versioneer tries to avoid fatal errors: if something goes wrong, it will tend +to return a version of "0+unknown". To investigate the problem, run `setup.py +version`, which will run the version-lookup code in a verbose mode, and will +display the full contents of `get_versions()` (including the `error` string, +which may help identify what went wrong). + +## Known Limitations + +Some situations are known to cause problems for Versioneer. This details the +most significant ones. More can be found on Github +[issues page](https://github.com/python-versioneer/python-versioneer/issues). + +### Subprojects + +Versioneer has limited support for source trees in which `setup.py` is not in +the root directory (e.g. `setup.py` and `.git/` are *not* siblings). The are +two common reasons why `setup.py` might not be in the root: + +* Source trees which contain multiple subprojects, such as + [Buildbot](https://github.com/buildbot/buildbot), which contains both + "master" and "slave" subprojects, each with their own `setup.py`, + `setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI + distributions (and upload multiple independently-installable tarballs). +* Source trees whose main purpose is to contain a C library, but which also + provide bindings to Python (and perhaps other languages) in subdirectories. + +Versioneer will look for `.git` in parent directories, and most operations +should get the right version string. However `pip` and `setuptools` have bugs +and implementation details which frequently cause `pip install .` from a +subproject directory to fail to find a correct version string (so it usually +defaults to `0+unknown`). + +`pip install --editable .` should work correctly. `setup.py install` might +work too. + +Pip-8.1.1 is known to have this problem, but hopefully it will get fixed in +some later version. + +[Bug #38](https://github.com/python-versioneer/python-versioneer/issues/38) is tracking +this issue. The discussion in +[PR #61](https://github.com/python-versioneer/python-versioneer/pull/61) describes the +issue from the Versioneer side in more detail. +[pip PR#3176](https://github.com/pypa/pip/pull/3176) and +[pip PR#3615](https://github.com/pypa/pip/pull/3615) contain work to improve +pip to let Versioneer work correctly. + +Versioneer-0.16 and earlier only looked for a `.git` directory next to the +`setup.cfg`, so subprojects were completely unsupported with those releases. + +### Editable installs with setuptools <= 18.5 + +`setup.py develop` and `pip install --editable .` allow you to install a +project into a virtualenv once, then continue editing the source code (and +test) without re-installing after every change. + +"Entry-point scripts" (`setup(entry_points={"console_scripts": ..})`) are a +convenient way to specify executable scripts that should be installed along +with the python package. + +These both work as expected when using modern setuptools. When using +setuptools-18.5 or earlier, however, certain operations will cause +`pkg_resources.DistributionNotFound` errors when running the entrypoint +script, which must be resolved by re-installing the package. This happens +when the install happens with one version, then the egg_info data is +regenerated while a different version is checked out. Many setup.py commands +cause egg_info to be rebuilt (including `sdist`, `wheel`, and installing into +a different virtualenv), so this can be surprising. + +[Bug #83](https://github.com/python-versioneer/python-versioneer/issues/83) describes +this one, but upgrading to a newer version of setuptools should probably +resolve it. + + +## Updating Versioneer + +To upgrade your project to a new release of Versioneer, do the following: + +* install the new Versioneer (`pip install -U versioneer` or equivalent) +* edit `setup.cfg`, if necessary, to include any new configuration settings + indicated by the release notes. See [UPGRADING](./UPGRADING.md) for details. +* re-run `versioneer install` in your source tree, to replace + `SRC/_version.py` +* commit any changed files + +## Future Directions + +This tool is designed to make it easily extended to other version-control +systems: all VCS-specific components are in separate directories like +src/git/ . The top-level `versioneer.py` script is assembled from these +components by running make-versioneer.py . In the future, make-versioneer.py +will take a VCS name as an argument, and will construct a version of +`versioneer.py` that is specific to the given VCS. It might also take the +configuration arguments that are currently provided manually during +installation by editing setup.py . Alternatively, it might go the other +direction and include code from all supported VCS systems, reducing the +number of intermediate scripts. + +## Similar projects + +* [setuptools_scm](https://github.com/pypa/setuptools_scm/) - a non-vendored build-time + dependency +* [minver](https://github.com/jbweston/miniver) - a lightweight reimplementation of + versioneer +* [versioningit](https://github.com/jwodder/versioningit) - a PEP 518-based setuptools + plugin + +## License + +To make Versioneer easier to embed, all its code is dedicated to the public +domain. The `_version.py` that it creates is also in the public domain. +Specifically, both are released under the Creative Commons "Public Domain +Dedication" license (CC0-1.0), as described in +https://creativecommons.org/publicdomain/zero/1.0/ . + +[pypi-image]: https://img.shields.io/pypi/v/versioneer.svg +[pypi-url]: https://pypi.python.org/pypi/versioneer/ +[travis-image]: +https://img.shields.io/travis/com/python-versioneer/python-versioneer.svg +[travis-url]: https://travis-ci.com/github/python-versioneer/python-versioneer + +""" + +import configparser +import errno +import json +import os +import re +import subprocess +import sys + + +class VersioneerConfig: # pylint: disable=too-few-public-methods # noqa + """Container for Versioneer configuration parameters.""" + + +def get_root(): + """Get the project root directory. + + We require that all commands are run from the project root, i.e. the + directory that contains setup.py, setup.cfg, and versioneer.py . + """ + root = os.path.realpath(os.path.abspath(os.getcwd())) + setup_py = os.path.join(root, "setup.py") + versioneer_py = os.path.join(root, "versioneer.py") + if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)): + # allow 'python path/to/setup.py COMMAND' + root = os.path.dirname(os.path.realpath(os.path.abspath(sys.argv[0]))) + setup_py = os.path.join(root, "setup.py") + versioneer_py = os.path.join(root, "versioneer.py") + if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)): + err = ("Versioneer was unable to run the project root directory. " + "Versioneer requires setup.py to be executed from " + "its immediate directory (like 'python setup.py COMMAND'), " + "or in a way that lets it use sys.argv[0] to find the root " + "(like 'python path/to/setup.py COMMAND').") + raise VersioneerBadRootError(err) + try: + # Certain runtime workflows (setup.py install/develop in a setuptools + # tree) execute all dependencies in a single python process, so + # "versioneer" may be imported multiple times, and python's shared + # module-import table will cache the first one. So we can't use + # os.path.dirname(__file__), as that will find whichever + # versioneer.py was first imported, even in later projects. + my_path = os.path.realpath(os.path.abspath(__file__)) + me_dir = os.path.normcase(os.path.splitext(my_path)[0]) + vsr_dir = os.path.normcase(os.path.splitext(versioneer_py)[0]) + if me_dir != vsr_dir: + print("Warning: build in %s is using versioneer.py from %s" + % (os.path.dirname(my_path), versioneer_py)) + except NameError: + pass + return root + + +def get_config_from_root(root): + """Read the project setup.cfg file to determine Versioneer config.""" + # This might raise EnvironmentError (if setup.cfg is missing), or + # configparser.NoSectionError (if it lacks a [versioneer] section), or + # configparser.NoOptionError (if it lacks "VCS="). See the docstring at + # the top of versioneer.py for instructions on writing your setup.cfg . + setup_cfg = os.path.join(root, "setup.cfg") + parser = configparser.ConfigParser() + with open(setup_cfg, "r") as cfg_file: + parser.read_file(cfg_file) + VCS = parser.get("versioneer", "VCS") # mandatory + + # Dict-like interface for non-mandatory entries + section = parser["versioneer"] + + # pylint:disable=attribute-defined-outside-init # noqa + cfg = VersioneerConfig() + cfg.VCS = VCS + cfg.style = section.get("style", "") + cfg.versionfile_source = section.get("versionfile_source") + cfg.versionfile_build = section.get("versionfile_build") + cfg.tag_prefix = section.get("tag_prefix") + if cfg.tag_prefix in ("''", '""'): + cfg.tag_prefix = "" + cfg.parentdir_prefix = section.get("parentdir_prefix") + cfg.verbose = section.get("verbose") + return cfg + + +class NotThisMethod(Exception): + """Exception raised if a method is not valid for the current scenario.""" + + +# these dictionaries contain VCS-specific tools +LONG_VERSION_PY = {} +HANDLERS = {} + + +def register_vcs_handler(vcs, method): # decorator + """Create decorator to mark a method as the handler of a VCS.""" + def decorate(f): + """Store f in HANDLERS[vcs][method].""" + HANDLERS.setdefault(vcs, {})[method] = f + return f + return decorate + + +# pylint:disable=too-many-arguments,consider-using-with # noqa +def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False, + env=None): + """Call the given command(s).""" + assert isinstance(commands, list) + process = None + for command in commands: + try: + dispcmd = str([command] + args) + # remember shell=False, so use git.cmd on windows, not just git + process = subprocess.Popen([command] + args, cwd=cwd, env=env, + stdout=subprocess.PIPE, + stderr=(subprocess.PIPE if hide_stderr + else None)) + break + except EnvironmentError: + e = sys.exc_info()[1] + if e.errno == errno.ENOENT: + continue + if verbose: + print("unable to run %s" % dispcmd) + print(e) + return None, None + else: + if verbose: + print("unable to find command, tried %s" % (commands,)) + return None, None + stdout = process.communicate()[0].strip().decode() + if process.returncode != 0: + if verbose: + print("unable to run %s (error)" % dispcmd) + print("stdout was %s" % stdout) + return None, process.returncode + return stdout, process.returncode + + +LONG_VERSION_PY['git'] = r''' +# This file helps to compute a version number in source trees obtained from +# git-archive tarball (such as those provided by githubs download-from-tag +# feature). Distribution tarballs (built by setup.py sdist) and build +# directories (produced by setup.py build) will contain a much shorter file +# that just contains the computed version number. + +# This file is released into the public domain. Generated by +# versioneer-0.20 (https://github.com/python-versioneer/python-versioneer) + +"""Git implementation of _version.py.""" + +import errno +import os +import re +import subprocess +import sys + + +def get_keywords(): + """Get the keywords needed to look up the version information.""" + # these strings will be replaced by git during git-archive. + # setup.py/versioneer.py will grep for the variable names, so they must + # each be defined on a line of their own. _version.py will just call + # get_keywords(). + git_refnames = "%(DOLLAR)sFormat:%%d%(DOLLAR)s" + git_full = "%(DOLLAR)sFormat:%%H%(DOLLAR)s" + git_date = "%(DOLLAR)sFormat:%%ci%(DOLLAR)s" + keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} + return keywords + + +class VersioneerConfig: # pylint: disable=too-few-public-methods + """Container for Versioneer configuration parameters.""" + + +def get_config(): + """Create, populate and return the VersioneerConfig() object.""" + # these strings are filled in when 'setup.py versioneer' creates + # _version.py + cfg = VersioneerConfig() + cfg.VCS = "git" + cfg.style = "%(STYLE)s" + cfg.tag_prefix = "%(TAG_PREFIX)s" + cfg.parentdir_prefix = "%(PARENTDIR_PREFIX)s" + cfg.versionfile_source = "%(VERSIONFILE_SOURCE)s" + cfg.verbose = False + return cfg + + +class NotThisMethod(Exception): + """Exception raised if a method is not valid for the current scenario.""" + + +LONG_VERSION_PY = {} +HANDLERS = {} + + +def register_vcs_handler(vcs, method): # decorator + """Create decorator to mark a method as the handler of a VCS.""" + def decorate(f): + """Store f in HANDLERS[vcs][method].""" + if vcs not in HANDLERS: + HANDLERS[vcs] = {} + HANDLERS[vcs][method] = f + return f + return decorate + + +# pylint:disable=too-many-arguments,consider-using-with # noqa +def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False, + env=None): + """Call the given command(s).""" + assert isinstance(commands, list) + process = None + for command in commands: + try: + dispcmd = str([command] + args) + # remember shell=False, so use git.cmd on windows, not just git + process = subprocess.Popen([command] + args, cwd=cwd, env=env, + stdout=subprocess.PIPE, + stderr=(subprocess.PIPE if hide_stderr + else None)) + break + except EnvironmentError: + e = sys.exc_info()[1] + if e.errno == errno.ENOENT: + continue + if verbose: + print("unable to run %%s" %% dispcmd) + print(e) + return None, None + else: + if verbose: + print("unable to find command, tried %%s" %% (commands,)) + return None, None + stdout = process.communicate()[0].strip().decode() + if process.returncode != 0: + if verbose: + print("unable to run %%s (error)" %% dispcmd) + print("stdout was %%s" %% stdout) + return None, process.returncode + return stdout, process.returncode + + +def versions_from_parentdir(parentdir_prefix, root, verbose): + """Try to determine the version from the parent directory name. + + Source tarballs conventionally unpack into a directory that includes both + the project name and a version string. We will also support searching up + two directory levels for an appropriately named parent directory + """ + rootdirs = [] + + for _ in range(3): + dirname = os.path.basename(root) + if dirname.startswith(parentdir_prefix): + return {"version": dirname[len(parentdir_prefix):], + "full-revisionid": None, + "dirty": False, "error": None, "date": None} + rootdirs.append(root) + root = os.path.dirname(root) # up a level + + if verbose: + print("Tried directories %%s but none started with prefix %%s" %% + (str(rootdirs), parentdir_prefix)) + raise NotThisMethod("rootdir doesn't start with parentdir_prefix") + + +@register_vcs_handler("git", "get_keywords") +def git_get_keywords(versionfile_abs): + """Extract version information from the given file.""" + # the code embedded in _version.py can just fetch the value of these + # keywords. When used from setup.py, we don't want to import _version.py, + # so we do it with a regexp instead. This function is not used from + # _version.py. + keywords = {} + try: + with open(versionfile_abs, "r") as fobj: + for line in fobj: + if line.strip().startswith("git_refnames ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["refnames"] = mo.group(1) + if line.strip().startswith("git_full ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["full"] = mo.group(1) + if line.strip().startswith("git_date ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["date"] = mo.group(1) + except EnvironmentError: + pass + return keywords + + +@register_vcs_handler("git", "keywords") +def git_versions_from_keywords(keywords, tag_prefix, verbose): + """Get version information from git keywords.""" + if "refnames" not in keywords: + raise NotThisMethod("Short version file found") + date = keywords.get("date") + if date is not None: + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + + # git-2.2.0 added "%%cI", which expands to an ISO-8601 -compliant + # datestamp. However we prefer "%%ci" (which expands to an "ISO-8601 + # -like" string, which we must then edit to make compliant), because + # it's been around since git-1.5.3, and it's too difficult to + # discover which version we're using, or to work around using an + # older one. + date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + refnames = keywords["refnames"].strip() + if refnames.startswith("$Format"): + if verbose: + print("keywords are unexpanded, not using") + raise NotThisMethod("unexpanded keywords, not a git-archive tarball") + refs = {r.strip() for r in refnames.strip("()").split(",")} + # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of + # just "foo-1.0". If we see a "tag: " prefix, prefer those. + TAG = "tag: " + tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} + if not tags: + # Either we're using git < 1.8.3, or there really are no tags. We use + # a heuristic: assume all version tags have a digit. The old git %%d + # expansion behaves like git log --decorate=short and strips out the + # refs/heads/ and refs/tags/ prefixes that would let us distinguish + # between branches and tags. By ignoring refnames without digits, we + # filter out many common branch names like "release" and + # "stabilization", as well as "HEAD" and "master". + tags = {r for r in refs if re.search(r'\d', r)} + if verbose: + print("discarding '%%s', no digits" %% ",".join(refs - tags)) + if verbose: + print("likely tags: %%s" %% ",".join(sorted(tags))) + for ref in sorted(tags): + # sorting will prefer e.g. "2.0" over "2.0rc1" + if ref.startswith(tag_prefix): + r = ref[len(tag_prefix):] + # Filter out refs that exactly match prefix or that don't start + # with a number once the prefix is stripped (mostly a concern + # when prefix is '') + if not re.match(r'\d', r): + continue + if verbose: + print("picking %%s" %% r) + return {"version": r, + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": None, + "date": date} + # no suitable tags, so version is "0+unknown", but full hex is still there + if verbose: + print("no suitable tags, using unknown + full revision id") + return {"version": "0+unknown", + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": "no suitable tags", "date": None} + + +@register_vcs_handler("git", "pieces_from_vcs") +def git_pieces_from_vcs(tag_prefix, root, verbose, runner=run_command): + """Get version from 'git describe' in the root of the source tree. + + This only gets called if the git-archive 'subst' keywords were *not* + expanded, and _version.py hasn't already been rewritten with a short + version string, meaning we're inside a checked out source tree. + """ + GITS = ["git"] + if sys.platform == "win32": + GITS = ["git.cmd", "git.exe"] + + _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, + hide_stderr=True) + if rc != 0: + if verbose: + print("Directory %%s not under git control" %% root) + raise NotThisMethod("'git rev-parse --git-dir' returned error") + + # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] + # if there isn't one, this yields HEX[-dirty] (no NUM) + describe_out, rc = runner(GITS, ["describe", "--tags", "--dirty", + "--always", "--long", + "--match", "%%s*" %% tag_prefix], + cwd=root) + # --long was added in git-1.5.5 + if describe_out is None: + raise NotThisMethod("'git describe' failed") + describe_out = describe_out.strip() + full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) + if full_out is None: + raise NotThisMethod("'git rev-parse' failed") + full_out = full_out.strip() + + pieces = {} + pieces["long"] = full_out + pieces["short"] = full_out[:7] # maybe improved later + pieces["error"] = None + + branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], + cwd=root) + # --abbrev-ref was added in git-1.6.3 + if rc != 0 or branch_name is None: + raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") + branch_name = branch_name.strip() + + if branch_name == "HEAD": + # If we aren't exactly on a branch, pick a branch which represents + # the current commit. If all else fails, we are on a branchless + # commit. + branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) + # --contains was added in git-1.5.4 + if rc != 0 or branches is None: + raise NotThisMethod("'git branch --contains' returned error") + branches = branches.split("\n") + + # Remove the first line if we're running detached + if "(" in branches[0]: + branches.pop(0) + + # Strip off the leading "* " from the list of branches. + branches = [branch[2:] for branch in branches] + if "master" in branches: + branch_name = "master" + elif not branches: + branch_name = None + else: + # Pick the first branch that is returned. Good or bad. + branch_name = branches[0] + + pieces["branch"] = branch_name + + # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] + # TAG might have hyphens. + git_describe = describe_out + + # look for -dirty suffix + dirty = git_describe.endswith("-dirty") + pieces["dirty"] = dirty + if dirty: + git_describe = git_describe[:git_describe.rindex("-dirty")] + + # now we have TAG-NUM-gHEX or HEX + + if "-" in git_describe: + # TAG-NUM-gHEX + mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) + if not mo: + # unparseable. Maybe git-describe is misbehaving? + pieces["error"] = ("unable to parse git-describe output: '%%s'" + %% describe_out) + return pieces + + # tag + full_tag = mo.group(1) + if not full_tag.startswith(tag_prefix): + if verbose: + fmt = "tag '%%s' doesn't start with prefix '%%s'" + print(fmt %% (full_tag, tag_prefix)) + pieces["error"] = ("tag '%%s' doesn't start with prefix '%%s'" + %% (full_tag, tag_prefix)) + return pieces + pieces["closest-tag"] = full_tag[len(tag_prefix):] + + # distance: number of commits since tag + pieces["distance"] = int(mo.group(2)) + + # commit: short hex revision ID + pieces["short"] = mo.group(3) + + else: + # HEX: no tags + pieces["closest-tag"] = None + count_out, rc = runner(GITS, ["rev-list", "HEAD", "--count"], cwd=root) + pieces["distance"] = int(count_out) # total number of commits + + # commit date: see ISO-8601 comment in git_versions_from_keywords() + date = runner(GITS, ["show", "-s", "--format=%%ci", "HEAD"], cwd=root)[0].strip() + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + + return pieces + + +def plus_or_dot(pieces): + """Return a + if we don't already have one, else return a .""" + if "+" in pieces.get("closest-tag", ""): + return "." + return "+" + + +def render_pep440(pieces): + """Build up version string, with post-release "local version identifier". + + Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you + get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty + + Exceptions: + 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += plus_or_dot(pieces) + rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0+untagged.%%d.g%%s" %% (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_branch(pieces): + """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . + + The ".dev0" means not master branch. Note that .dev0 sorts backwards + (a feature branch will appear "older" than the master branch). + + Exceptions: + 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0" + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+untagged.%%d.g%%s" %% (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_pre(pieces): + """TAG[.post0.devDISTANCE] -- No -dirty. + + Exceptions: + 1: no tags. 0.post0.devDISTANCE + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += ".post0.dev%%d" %% pieces["distance"] + else: + # exception #1 + rendered = "0.post0.dev%%d" %% pieces["distance"] + return rendered + + +def render_pep440_post(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX] . + + The ".dev0" means dirty. Note that .dev0 sorts backwards + (a dirty tree will appear "older" than the corresponding clean one), + but you shouldn't be releasing software with -dirty anyways. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%%d" %% pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%%s" %% pieces["short"] + else: + # exception #1 + rendered = "0.post%%d" %% pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += "+g%%s" %% pieces["short"] + return rendered + + +def render_pep440_post_branch(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . + + The ".dev0" means not master branch. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%%d" %% pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%%s" %% pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0.post%%d" %% pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+g%%s" %% pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_old(pieces): + """TAG[.postDISTANCE[.dev0]] . + + The ".dev0" means dirty. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%%d" %% pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + else: + # exception #1 + rendered = "0.post%%d" %% pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + return rendered + + +def render_git_describe(pieces): + """TAG[-DISTANCE-gHEX][-dirty]. + + Like 'git describe --tags --dirty --always'. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render_git_describe_long(pieces): + """TAG-DISTANCE-gHEX[-dirty]. + + Like 'git describe --tags --dirty --always -long'. + The distance/hash is unconditional. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render(pieces, style): + """Render the given version pieces into the requested style.""" + if pieces["error"]: + return {"version": "unknown", + "full-revisionid": pieces.get("long"), + "dirty": None, + "error": pieces["error"], + "date": None} + + if not style or style == "default": + style = "pep440" # the default + + if style == "pep440": + rendered = render_pep440(pieces) + elif style == "pep440-branch": + rendered = render_pep440_branch(pieces) + elif style == "pep440-pre": + rendered = render_pep440_pre(pieces) + elif style == "pep440-post": + rendered = render_pep440_post(pieces) + elif style == "pep440-post-branch": + rendered = render_pep440_post_branch(pieces) + elif style == "pep440-old": + rendered = render_pep440_old(pieces) + elif style == "git-describe": + rendered = render_git_describe(pieces) + elif style == "git-describe-long": + rendered = render_git_describe_long(pieces) + else: + raise ValueError("unknown style '%%s'" %% style) + + return {"version": rendered, "full-revisionid": pieces["long"], + "dirty": pieces["dirty"], "error": None, + "date": pieces.get("date")} + + +def get_versions(): + """Get version information or return default if unable to do so.""" + # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have + # __file__, we can work backwards from there to the root. Some + # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which + # case we can only use expanded keywords. + + cfg = get_config() + verbose = cfg.verbose + + try: + return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, + verbose) + except NotThisMethod: + pass + + try: + root = os.path.realpath(__file__) + # versionfile_source is the relative path from the top of the source + # tree (where the .git directory might live) to this file. Invert + # this to find the root from __file__. + for _ in cfg.versionfile_source.split('/'): + root = os.path.dirname(root) + except NameError: + return {"version": "0+unknown", "full-revisionid": None, + "dirty": None, + "error": "unable to find root of source tree", + "date": None} + + try: + pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) + return render(pieces, cfg.style) + except NotThisMethod: + pass + + try: + if cfg.parentdir_prefix: + return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) + except NotThisMethod: + pass + + return {"version": "0+unknown", "full-revisionid": None, + "dirty": None, + "error": "unable to compute version", "date": None} +''' + + +@register_vcs_handler("git", "get_keywords") +def git_get_keywords(versionfile_abs): + """Extract version information from the given file.""" + # the code embedded in _version.py can just fetch the value of these + # keywords. When used from setup.py, we don't want to import _version.py, + # so we do it with a regexp instead. This function is not used from + # _version.py. + keywords = {} + try: + with open(versionfile_abs, "r") as fobj: + for line in fobj: + if line.strip().startswith("git_refnames ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["refnames"] = mo.group(1) + if line.strip().startswith("git_full ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["full"] = mo.group(1) + if line.strip().startswith("git_date ="): + mo = re.search(r'=\s*"(.*)"', line) + if mo: + keywords["date"] = mo.group(1) + except EnvironmentError: + pass + return keywords + + +@register_vcs_handler("git", "keywords") +def git_versions_from_keywords(keywords, tag_prefix, verbose): + """Get version information from git keywords.""" + if "refnames" not in keywords: + raise NotThisMethod("Short version file found") + date = keywords.get("date") + if date is not None: + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + + # git-2.2.0 added "%cI", which expands to an ISO-8601 -compliant + # datestamp. However we prefer "%ci" (which expands to an "ISO-8601 + # -like" string, which we must then edit to make compliant), because + # it's been around since git-1.5.3, and it's too difficult to + # discover which version we're using, or to work around using an + # older one. + date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + refnames = keywords["refnames"].strip() + if refnames.startswith("$Format"): + if verbose: + print("keywords are unexpanded, not using") + raise NotThisMethod("unexpanded keywords, not a git-archive tarball") + refs = {r.strip() for r in refnames.strip("()").split(",")} + # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of + # just "foo-1.0". If we see a "tag: " prefix, prefer those. + TAG = "tag: " + tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} + if not tags: + # Either we're using git < 1.8.3, or there really are no tags. We use + # a heuristic: assume all version tags have a digit. The old git %d + # expansion behaves like git log --decorate=short and strips out the + # refs/heads/ and refs/tags/ prefixes that would let us distinguish + # between branches and tags. By ignoring refnames without digits, we + # filter out many common branch names like "release" and + # "stabilization", as well as "HEAD" and "master". + tags = {r for r in refs if re.search(r'\d', r)} + if verbose: + print("discarding '%s', no digits" % ",".join(refs - tags)) + if verbose: + print("likely tags: %s" % ",".join(sorted(tags))) + for ref in sorted(tags): + # sorting will prefer e.g. "2.0" over "2.0rc1" + if ref.startswith(tag_prefix): + r = ref[len(tag_prefix):] + # Filter out refs that exactly match prefix or that don't start + # with a number once the prefix is stripped (mostly a concern + # when prefix is '') + if not re.match(r'\d', r): + continue + if verbose: + print("picking %s" % r) + return {"version": r, + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": None, + "date": date} + # no suitable tags, so version is "0+unknown", but full hex is still there + if verbose: + print("no suitable tags, using unknown + full revision id") + return {"version": "0+unknown", + "full-revisionid": keywords["full"].strip(), + "dirty": False, "error": "no suitable tags", "date": None} + + +@register_vcs_handler("git", "pieces_from_vcs") +def git_pieces_from_vcs(tag_prefix, root, verbose, runner=run_command): + """Get version from 'git describe' in the root of the source tree. + + This only gets called if the git-archive 'subst' keywords were *not* + expanded, and _version.py hasn't already been rewritten with a short + version string, meaning we're inside a checked out source tree. + """ + GITS = ["git"] + if sys.platform == "win32": + GITS = ["git.cmd", "git.exe"] + + _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, + hide_stderr=True) + if rc != 0: + if verbose: + print("Directory %s not under git control" % root) + raise NotThisMethod("'git rev-parse --git-dir' returned error") + + # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] + # if there isn't one, this yields HEX[-dirty] (no NUM) + describe_out, rc = runner(GITS, ["describe", "--tags", "--dirty", + "--always", "--long", + "--match", "%s*" % tag_prefix], + cwd=root) + # --long was added in git-1.5.5 + if describe_out is None: + raise NotThisMethod("'git describe' failed") + describe_out = describe_out.strip() + full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) + if full_out is None: + raise NotThisMethod("'git rev-parse' failed") + full_out = full_out.strip() + + pieces = {} + pieces["long"] = full_out + pieces["short"] = full_out[:7] # maybe improved later + pieces["error"] = None + + branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], + cwd=root) + # --abbrev-ref was added in git-1.6.3 + if rc != 0 or branch_name is None: + raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") + branch_name = branch_name.strip() + + if branch_name == "HEAD": + # If we aren't exactly on a branch, pick a branch which represents + # the current commit. If all else fails, we are on a branchless + # commit. + branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) + # --contains was added in git-1.5.4 + if rc != 0 or branches is None: + raise NotThisMethod("'git branch --contains' returned error") + branches = branches.split("\n") + + # Remove the first line if we're running detached + if "(" in branches[0]: + branches.pop(0) + + # Strip off the leading "* " from the list of branches. + branches = [branch[2:] for branch in branches] + if "master" in branches: + branch_name = "master" + elif not branches: + branch_name = None + else: + # Pick the first branch that is returned. Good or bad. + branch_name = branches[0] + + pieces["branch"] = branch_name + + # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] + # TAG might have hyphens. + git_describe = describe_out + + # look for -dirty suffix + dirty = git_describe.endswith("-dirty") + pieces["dirty"] = dirty + if dirty: + git_describe = git_describe[:git_describe.rindex("-dirty")] + + # now we have TAG-NUM-gHEX or HEX + + if "-" in git_describe: + # TAG-NUM-gHEX + mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) + if not mo: + # unparseable. Maybe git-describe is misbehaving? + pieces["error"] = ("unable to parse git-describe output: '%s'" + % describe_out) + return pieces + + # tag + full_tag = mo.group(1) + if not full_tag.startswith(tag_prefix): + if verbose: + fmt = "tag '%s' doesn't start with prefix '%s'" + print(fmt % (full_tag, tag_prefix)) + pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" + % (full_tag, tag_prefix)) + return pieces + pieces["closest-tag"] = full_tag[len(tag_prefix):] + + # distance: number of commits since tag + pieces["distance"] = int(mo.group(2)) + + # commit: short hex revision ID + pieces["short"] = mo.group(3) + + else: + # HEX: no tags + pieces["closest-tag"] = None + count_out, rc = runner(GITS, ["rev-list", "HEAD", "--count"], cwd=root) + pieces["distance"] = int(count_out) # total number of commits + + # commit date: see ISO-8601 comment in git_versions_from_keywords() + date = runner(GITS, ["show", "-s", "--format=%ci", "HEAD"], cwd=root)[0].strip() + # Use only the last line. Previous lines may contain GPG signature + # information. + date = date.splitlines()[-1] + pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) + + return pieces + + +def do_vcs_install(manifest_in, versionfile_source, ipy): + """Git-specific installation logic for Versioneer. + + For Git, this means creating/changing .gitattributes to mark _version.py + for export-subst keyword substitution. + """ + GITS = ["git"] + if sys.platform == "win32": + GITS = ["git.cmd", "git.exe"] + files = [manifest_in, versionfile_source] + if ipy: + files.append(ipy) + try: + my_path = __file__ + if my_path.endswith(".pyc") or my_path.endswith(".pyo"): + my_path = os.path.splitext(my_path)[0] + ".py" + versioneer_file = os.path.relpath(my_path) + except NameError: + versioneer_file = "versioneer.py" + files.append(versioneer_file) + present = False + try: + with open(".gitattributes", "r") as fobj: + for line in fobj: + if line.strip().startswith(versionfile_source): + if "export-subst" in line.strip().split()[1:]: + present = True + break + except EnvironmentError: + pass + if not present: + with open(".gitattributes", "a+") as fobj: + fobj.write(f"{versionfile_source} export-subst\n") + files.append(".gitattributes") + run_command(GITS, ["add", "--"] + files) + + +def versions_from_parentdir(parentdir_prefix, root, verbose): + """Try to determine the version from the parent directory name. + + Source tarballs conventionally unpack into a directory that includes both + the project name and a version string. We will also support searching up + two directory levels for an appropriately named parent directory + """ + rootdirs = [] + + for _ in range(3): + dirname = os.path.basename(root) + if dirname.startswith(parentdir_prefix): + return {"version": dirname[len(parentdir_prefix):], + "full-revisionid": None, + "dirty": False, "error": None, "date": None} + rootdirs.append(root) + root = os.path.dirname(root) # up a level + + if verbose: + print("Tried directories %s but none started with prefix %s" % + (str(rootdirs), parentdir_prefix)) + raise NotThisMethod("rootdir doesn't start with parentdir_prefix") + + +SHORT_VERSION_PY = """ +# This file was generated by 'versioneer.py' (0.20) from +# revision-control system data, or from the parent directory name of an +# unpacked source archive. Distribution tarballs contain a pre-generated copy +# of this file. + +import json + +version_json = ''' +%s +''' # END VERSION_JSON + + +def get_versions(): + return json.loads(version_json) +""" + + +def versions_from_file(filename): + """Try to determine the version from _version.py if present.""" + try: + with open(filename) as f: + contents = f.read() + except EnvironmentError: + raise NotThisMethod("unable to read _version.py") + mo = re.search(r"version_json = '''\n(.*)''' # END VERSION_JSON", + contents, re.M | re.S) + if not mo: + mo = re.search(r"version_json = '''\r\n(.*)''' # END VERSION_JSON", + contents, re.M | re.S) + if not mo: + raise NotThisMethod("no version_json in _version.py") + return json.loads(mo.group(1)) + + +def write_to_version_file(filename, versions): + """Write the given version number to the given _version.py file.""" + os.unlink(filename) + contents = json.dumps(versions, sort_keys=True, + indent=1, separators=(",", ": ")) + with open(filename, "w") as f: + f.write(SHORT_VERSION_PY % contents) + + print("set %s to '%s'" % (filename, versions["version"])) + + +def plus_or_dot(pieces): + """Return a + if we don't already have one, else return a .""" + if "+" in pieces.get("closest-tag", ""): + return "." + return "+" + + +def render_pep440(pieces): + """Build up version string, with post-release "local version identifier". + + Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you + get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty + + Exceptions: + 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += plus_or_dot(pieces) + rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0+untagged.%d.g%s" % (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_branch(pieces): + """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . + + The ".dev0" means not master branch. Note that .dev0 sorts backwards + (a feature branch will appear "older" than the master branch). + + Exceptions: + 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0" + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+untagged.%d.g%s" % (pieces["distance"], + pieces["short"]) + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_pre(pieces): + """TAG[.post0.devDISTANCE] -- No -dirty. + + Exceptions: + 1: no tags. 0.post0.devDISTANCE + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += ".post0.dev%d" % pieces["distance"] + else: + # exception #1 + rendered = "0.post0.dev%d" % pieces["distance"] + return rendered + + +def render_pep440_post(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX] . + + The ".dev0" means dirty. Note that .dev0 sorts backwards + (a dirty tree will appear "older" than the corresponding clean one), + but you shouldn't be releasing software with -dirty anyways. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%s" % pieces["short"] + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + rendered += "+g%s" % pieces["short"] + return rendered + + +def render_pep440_post_branch(pieces): + """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . + + The ".dev0" means not master branch. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += plus_or_dot(pieces) + rendered += "g%s" % pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["branch"] != "master": + rendered += ".dev0" + rendered += "+g%s" % pieces["short"] + if pieces["dirty"]: + rendered += ".dirty" + return rendered + + +def render_pep440_old(pieces): + """TAG[.postDISTANCE[.dev0]] . + + The ".dev0" means dirty. + + Exceptions: + 1: no tags. 0.postDISTANCE[.dev0] + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"] or pieces["dirty"]: + rendered += ".post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + else: + # exception #1 + rendered = "0.post%d" % pieces["distance"] + if pieces["dirty"]: + rendered += ".dev0" + return rendered + + +def render_git_describe(pieces): + """TAG[-DISTANCE-gHEX][-dirty]. + + Like 'git describe --tags --dirty --always'. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + if pieces["distance"]: + rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render_git_describe_long(pieces): + """TAG-DISTANCE-gHEX[-dirty]. + + Like 'git describe --tags --dirty --always -long'. + The distance/hash is unconditional. + + Exceptions: + 1: no tags. HEX[-dirty] (note: no 'g' prefix) + """ + if pieces["closest-tag"]: + rendered = pieces["closest-tag"] + rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) + else: + # exception #1 + rendered = pieces["short"] + if pieces["dirty"]: + rendered += "-dirty" + return rendered + + +def render(pieces, style): + """Render the given version pieces into the requested style.""" + if pieces["error"]: + return {"version": "unknown", + "full-revisionid": pieces.get("long"), + "dirty": None, + "error": pieces["error"], + "date": None} + + if not style or style == "default": + style = "pep440" # the default + + if style == "pep440": + rendered = render_pep440(pieces) + elif style == "pep440-branch": + rendered = render_pep440_branch(pieces) + elif style == "pep440-pre": + rendered = render_pep440_pre(pieces) + elif style == "pep440-post": + rendered = render_pep440_post(pieces) + elif style == "pep440-post-branch": + rendered = render_pep440_post_branch(pieces) + elif style == "pep440-old": + rendered = render_pep440_old(pieces) + elif style == "git-describe": + rendered = render_git_describe(pieces) + elif style == "git-describe-long": + rendered = render_git_describe_long(pieces) + else: + raise ValueError("unknown style '%s'" % style) + + return {"version": rendered, "full-revisionid": pieces["long"], + "dirty": pieces["dirty"], "error": None, + "date": pieces.get("date")} + + +class VersioneerBadRootError(Exception): + """The project root directory is unknown or missing key files.""" + + +def get_versions(verbose=False): + """Get the project version from whatever source is available. + + Returns dict with two keys: 'version' and 'full'. + """ + if "versioneer" in sys.modules: + # see the discussion in cmdclass.py:get_cmdclass() + del sys.modules["versioneer"] + + root = get_root() + cfg = get_config_from_root(root) + + assert cfg.VCS is not None, "please set [versioneer]VCS= in setup.cfg" + handlers = HANDLERS.get(cfg.VCS) + assert handlers, "unrecognized VCS '%s'" % cfg.VCS + verbose = verbose or cfg.verbose + assert cfg.versionfile_source is not None, \ + "please set versioneer.versionfile_source" + assert cfg.tag_prefix is not None, "please set versioneer.tag_prefix" + + versionfile_abs = os.path.join(root, cfg.versionfile_source) + + # extract version from first of: _version.py, VCS command (e.g. 'git + # describe'), parentdir. This is meant to work for developers using a + # source checkout, for users of a tarball created by 'setup.py sdist', + # and for users of a tarball/zipball created by 'git archive' or github's + # download-from-tag feature or the equivalent in other VCSes. + + get_keywords_f = handlers.get("get_keywords") + from_keywords_f = handlers.get("keywords") + if get_keywords_f and from_keywords_f: + try: + keywords = get_keywords_f(versionfile_abs) + ver = from_keywords_f(keywords, cfg.tag_prefix, verbose) + if verbose: + print("got version from expanded keyword %s" % ver) + return ver + except NotThisMethod: + pass + + try: + ver = versions_from_file(versionfile_abs) + if verbose: + print("got version from file %s %s" % (versionfile_abs, ver)) + return ver + except NotThisMethod: + pass + + from_vcs_f = handlers.get("pieces_from_vcs") + if from_vcs_f: + try: + pieces = from_vcs_f(cfg.tag_prefix, root, verbose) + ver = render(pieces, cfg.style) + if verbose: + print("got version from VCS %s" % ver) + return ver + except NotThisMethod: + pass + + try: + if cfg.parentdir_prefix: + ver = versions_from_parentdir(cfg.parentdir_prefix, root, verbose) + if verbose: + print("got version from parentdir %s" % ver) + return ver + except NotThisMethod: + pass + + if verbose: + print("unable to compute version") + + return {"version": "0+unknown", "full-revisionid": None, + "dirty": None, "error": "unable to compute version", + "date": None} + + +def get_version(): + """Get the short version string for this project.""" + return get_versions()["version"] + + +def get_cmdclass(cmdclass=None): + """Get the custom setuptools/distutils subclasses used by Versioneer. + + If the package uses a different cmdclass (e.g. one from numpy), it + should be provide as an argument. + """ + if "versioneer" in sys.modules: + del sys.modules["versioneer"] + # this fixes the "python setup.py develop" case (also 'install' and + # 'easy_install .'), in which subdependencies of the main project are + # built (using setup.py bdist_egg) in the same python process. Assume + # a main project A and a dependency B, which use different versions + # of Versioneer. A's setup.py imports A's Versioneer, leaving it in + # sys.modules by the time B's setup.py is executed, causing B to run + # with the wrong versioneer. Setuptools wraps the sub-dep builds in a + # sandbox that restores sys.modules to it's pre-build state, so the + # parent is protected against the child's "import versioneer". By + # removing ourselves from sys.modules here, before the child build + # happens, we protect the child from the parent's versioneer too. + # Also see https://github.com/python-versioneer/python-versioneer/issues/52 + + cmds = {} if cmdclass is None else cmdclass.copy() + + # we add "version" to both distutils and setuptools + from distutils.core import Command + + class cmd_version(Command): + description = "report generated version string" + user_options = [] + boolean_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + vers = get_versions(verbose=True) + print("Version: %s" % vers["version"]) + print(" full-revisionid: %s" % vers.get("full-revisionid")) + print(" dirty: %s" % vers.get("dirty")) + print(" date: %s" % vers.get("date")) + if vers["error"]: + print(" error: %s" % vers["error"]) + cmds["version"] = cmd_version + + # we override "build_py" in both distutils and setuptools + # + # most invocation pathways end up running build_py: + # distutils/build -> build_py + # distutils/install -> distutils/build ->.. + # setuptools/bdist_wheel -> distutils/install ->.. + # setuptools/bdist_egg -> distutils/install_lib -> build_py + # setuptools/install -> bdist_egg ->.. + # setuptools/develop -> ? + # pip install: + # copies source tree to a tempdir before running egg_info/etc + # if .git isn't copied too, 'git describe' will fail + # then does setup.py bdist_wheel, or sometimes setup.py install + # setup.py egg_info -> ? + + # we override different "build_py" commands for both environments + if 'build_py' in cmds: + _build_py = cmds['build_py'] + elif "setuptools" in sys.modules: + from setuptools.command.build_py import build_py as _build_py + else: + from distutils.command.build_py import build_py as _build_py + + class cmd_build_py(_build_py): + def run(self): + root = get_root() + cfg = get_config_from_root(root) + versions = get_versions() + _build_py.run(self) + # now locate _version.py in the new build/ directory and replace + # it with an updated value + if cfg.versionfile_build: + target_versionfile = os.path.join(self.build_lib, + cfg.versionfile_build) + print("UPDATING %s" % target_versionfile) + write_to_version_file(target_versionfile, versions) + cmds["build_py"] = cmd_build_py + + if 'build_ext' in cmds: + _build_ext = cmds['build_ext'] + elif "setuptools" in sys.modules: + from setuptools.command.build_ext import build_ext as _build_ext + else: + from distutils.command.build_ext import build_ext as _build_ext + + class cmd_build_ext(_build_ext): + def run(self): + root = get_root() + cfg = get_config_from_root(root) + versions = get_versions() + _build_ext.run(self) + if self.inplace: + # build_ext --inplace will only build extensions in + # build/lib<..> dir with no _version.py to write to. + # As in place builds will already have a _version.py + # in the module dir, we do not need to write one. + return + # now locate _version.py in the new build/ directory and replace + # it with an updated value + target_versionfile = os.path.join(self.build_lib, + cfg.versionfile_build) + print("UPDATING %s" % target_versionfile) + write_to_version_file(target_versionfile, versions) + cmds["build_ext"] = cmd_build_ext + + if "cx_Freeze" in sys.modules: # cx_freeze enabled? + from cx_Freeze.dist import build_exe as _build_exe + # nczeczulin reports that py2exe won't like the pep440-style string + # as FILEVERSION, but it can be used for PRODUCTVERSION, e.g. + # setup(console=[{ + # "version": versioneer.get_version().split("+", 1)[0], # FILEVERSION + # "product_version": versioneer.get_version(), + # ... + + class cmd_build_exe(_build_exe): + def run(self): + root = get_root() + cfg = get_config_from_root(root) + versions = get_versions() + target_versionfile = cfg.versionfile_source + print("UPDATING %s" % target_versionfile) + write_to_version_file(target_versionfile, versions) + + _build_exe.run(self) + os.unlink(target_versionfile) + with open(cfg.versionfile_source, "w") as f: + LONG = LONG_VERSION_PY[cfg.VCS] + f.write(LONG % + {"DOLLAR": "$", + "STYLE": cfg.style, + "TAG_PREFIX": cfg.tag_prefix, + "PARENTDIR_PREFIX": cfg.parentdir_prefix, + "VERSIONFILE_SOURCE": cfg.versionfile_source, + }) + cmds["build_exe"] = cmd_build_exe + del cmds["build_py"] + + if 'py2exe' in sys.modules: # py2exe enabled? + from py2exe.distutils_buildexe import py2exe as _py2exe + + class cmd_py2exe(_py2exe): + def run(self): + root = get_root() + cfg = get_config_from_root(root) + versions = get_versions() + target_versionfile = cfg.versionfile_source + print("UPDATING %s" % target_versionfile) + write_to_version_file(target_versionfile, versions) + + _py2exe.run(self) + os.unlink(target_versionfile) + with open(cfg.versionfile_source, "w") as f: + LONG = LONG_VERSION_PY[cfg.VCS] + f.write(LONG % + {"DOLLAR": "$", + "STYLE": cfg.style, + "TAG_PREFIX": cfg.tag_prefix, + "PARENTDIR_PREFIX": cfg.parentdir_prefix, + "VERSIONFILE_SOURCE": cfg.versionfile_source, + }) + cmds["py2exe"] = cmd_py2exe + + # we override different "sdist" commands for both environments + if 'sdist' in cmds: + _sdist = cmds['sdist'] + elif "setuptools" in sys.modules: + from setuptools.command.sdist import sdist as _sdist + else: + from distutils.command.sdist import sdist as _sdist + + class cmd_sdist(_sdist): + def run(self): + versions = get_versions() + # pylint:disable=attribute-defined-outside-init # noqa + self._versioneer_generated_versions = versions + # unless we update this, the command will keep using the old + # version + self.distribution.metadata.version = versions["version"] + return _sdist.run(self) + + def make_release_tree(self, base_dir, files): + root = get_root() + cfg = get_config_from_root(root) + _sdist.make_release_tree(self, base_dir, files) + # now locate _version.py in the new base_dir directory + # (remembering that it may be a hardlink) and replace it with an + # updated value + target_versionfile = os.path.join(base_dir, cfg.versionfile_source) + print("UPDATING %s" % target_versionfile) + write_to_version_file(target_versionfile, + self._versioneer_generated_versions) + cmds["sdist"] = cmd_sdist + + return cmds + + +CONFIG_ERROR = """ +setup.cfg is missing the necessary Versioneer configuration. You need +a section like: + + [versioneer] + VCS = git + style = pep440 + versionfile_source = src/myproject/_version.py + versionfile_build = myproject/_version.py + tag_prefix = + parentdir_prefix = myproject- + +You will also need to edit your setup.py to use the results: + + import versioneer + setup(version=versioneer.get_version(), + cmdclass=versioneer.get_cmdclass(), ...) + +Please read the docstring in ./versioneer.py for configuration instructions, +edit setup.cfg, and re-run the installer or 'python versioneer.py setup'. +""" + +SAMPLE_CONFIG = """ +# See the docstring in versioneer.py for instructions. Note that you must +# re-run 'versioneer.py setup' after changing this section, and commit the +# resulting files. + +[versioneer] +#VCS = git +#style = pep440 +#versionfile_source = +#versionfile_build = +#tag_prefix = +#parentdir_prefix = + +""" + +OLD_SNIPPET = """ +from ._version import get_versions +__version__ = get_versions()['version'] +del get_versions +""" + +INIT_PY_SNIPPET = """ +from . import {0} +__version__ = {0}.get_versions()['version'] +""" + + +def do_setup(): + """Do main VCS-independent setup function for installing Versioneer.""" + root = get_root() + try: + cfg = get_config_from_root(root) + except (EnvironmentError, configparser.NoSectionError, + configparser.NoOptionError) as e: + if isinstance(e, (EnvironmentError, configparser.NoSectionError)): + print("Adding sample versioneer config to setup.cfg", + file=sys.stderr) + with open(os.path.join(root, "setup.cfg"), "a") as f: + f.write(SAMPLE_CONFIG) + print(CONFIG_ERROR, file=sys.stderr) + return 1 + + print(" creating %s" % cfg.versionfile_source) + with open(cfg.versionfile_source, "w") as f: + LONG = LONG_VERSION_PY[cfg.VCS] + f.write(LONG % {"DOLLAR": "$", + "STYLE": cfg.style, + "TAG_PREFIX": cfg.tag_prefix, + "PARENTDIR_PREFIX": cfg.parentdir_prefix, + "VERSIONFILE_SOURCE": cfg.versionfile_source, + }) + + ipy = os.path.join(os.path.dirname(cfg.versionfile_source), + "__init__.py") + if os.path.exists(ipy): + try: + with open(ipy, "r") as f: + old = f.read() + except EnvironmentError: + old = "" + module = os.path.splitext(os.path.basename(cfg.versionfile_source))[0] + snippet = INIT_PY_SNIPPET.format(module) + if OLD_SNIPPET in old: + print(" replacing boilerplate in %s" % ipy) + with open(ipy, "w") as f: + f.write(old.replace(OLD_SNIPPET, snippet)) + elif snippet not in old: + print(" appending to %s" % ipy) + with open(ipy, "a") as f: + f.write(snippet) + else: + print(" %s unmodified" % ipy) + else: + print(" %s doesn't exist, ok" % ipy) + ipy = None + + # Make sure both the top-level "versioneer.py" and versionfile_source + # (PKG/_version.py, used by runtime code) are in MANIFEST.in, so + # they'll be copied into source distributions. Pip won't be able to + # install the package without this. + manifest_in = os.path.join(root, "MANIFEST.in") + simple_includes = set() + try: + with open(manifest_in, "r") as f: + for line in f: + if line.startswith("include "): + for include in line.split()[1:]: + simple_includes.add(include) + except EnvironmentError: + pass + # That doesn't cover everything MANIFEST.in can do + # (http://docs.python.org/2/distutils/sourcedist.html#commands), so + # it might give some false negatives. Appending redundant 'include' + # lines is safe, though. + if "versioneer.py" not in simple_includes: + print(" appending 'versioneer.py' to MANIFEST.in") + with open(manifest_in, "a") as f: + f.write("include versioneer.py\n") + else: + print(" 'versioneer.py' already in MANIFEST.in") + if cfg.versionfile_source not in simple_includes: + print(" appending versionfile_source ('%s') to MANIFEST.in" % + cfg.versionfile_source) + with open(manifest_in, "a") as f: + f.write("include %s\n" % cfg.versionfile_source) + else: + print(" versionfile_source already in MANIFEST.in") + + # Make VCS-specific changes. For git, this means creating/changing + # .gitattributes to mark _version.py for export-subst keyword + # substitution. + do_vcs_install(manifest_in, cfg.versionfile_source, ipy) + return 0 + + +def scan_setup_py(): + """Validate the contents of setup.py against Versioneer's expectations.""" + found = set() + setters = False + errors = 0 + with open("setup.py", "r") as f: + for line in f.readlines(): + if "import versioneer" in line: + found.add("import") + if "versioneer.get_cmdclass()" in line: + found.add("cmdclass") + if "versioneer.get_version()" in line: + found.add("get_version") + if "versioneer.VCS" in line: + setters = True + if "versioneer.versionfile_source" in line: + setters = True + if len(found) != 3: + print("") + print("Your setup.py appears to be missing some important items") + print("(but I might be wrong). Please make sure it has something") + print("roughly like the following:") + print("") + print(" import versioneer") + print(" setup( version=versioneer.get_version(),") + print(" cmdclass=versioneer.get_cmdclass(), ...)") + print("") + errors += 1 + if setters: + print("You should remove lines like 'versioneer.VCS = ' and") + print("'versioneer.versionfile_source = ' . This configuration") + print("now lives in setup.cfg, and should be removed from setup.py") + print("") + errors += 1 + return errors + + +if __name__ == "__main__": + cmd = sys.argv[1] + if cmd == "setup": + errors = do_setup() + errors += scan_setup_py() + if errors: + sys.exit(1)