### ===================================================================================================================
### START TOOL - GUI
### ===================================================================================================================
# Copyright ©VIIA 2025
### ===================================================================================================================
### 1. Import modules
### ===================================================================================================================
# General imports
import os
import sys
from pathlib import Path
# References for functions and classes in the fem-client
from rhdhv_fem.fem_tools import fem_create_folder
# References for functions and classes in the viiaPackage
from viiapackage.tools.start_tool.gui_files.start_mainwindow import Ui_MainWindow
from viiapackage.tools.start_tool.gui_files.start_selectwindow import Ui_SelectWindow
from viiapackage.tools.start_tool.viia_start_files import viia_create_user_config, \
viia_copy_and_update_model_script_template, viia_copy_and_update_main_script_template, \
viia_copy_and_update_result_script_template, viia_copy_and_update_report_script_template, \
viia_copy_and_update_myviia_dashboard_tool_template, viia_create_box_shortcut, viia_create_protocol_shortcut, \
viia_create_bod_shortcut, viia_download_cheat_sheet
from viiapackage.database.viia_myviia import myviia_login
from viiapackage.database.viia_myviia_get_info import myviia_get_all_objects, myviia_get_object, myviia_get_user_info, \
myviia_get_all_objects_for_user
from viiapackage import installed_modules
from viiapackage.viiaSettings import ViiaSettings
# Import module PyQt5, check if module is installed
# This module is used for the GUI for the NLKA assessment tool
if 'PyQt5' in installed_modules:
if 'diana' in installed_modules:
import warnings
warnings.warn(
"PyQt5 modules is installed in DIANA but shouldn't be used in DIANA. Please uninstall", ImportWarning)
else:
from PyQt5 import QtWidgets, QtGui
### ===================================================================================================================
### 2. Start tool GUI main-window
### ===================================================================================================================
[docs]class StartGUI(Ui_MainWindow):
""" This is the first window user enters, in the start tool and collects the user credentials and stores the in the
user-config file that is created."""
[docs] @staticmethod
def start():
""" Static method to initiate and run the GUI."""
# Initiate the application
app = QtWidgets.QApplication(sys.argv)
main_window = QtWidgets.QMainWindow()
# Initiate the GUI
ui = StartGUI(main_window)
main_window.show()
# Exit the application
sys.exit(app.exec_())
[docs] def start_select_gui(self, token: str):
# This is temporarily changed due to New NPR transition, will be restored
""" Static method to initiate and run the select window for the start tool."""
self.window = QtWidgets.QMainWindow()
self.ui = StartSelectGUI(self.window, token)
self.main_window.hide()
self.window.show()
def __init__(self, main_window):
""" Initiate all the relevant setups."""
self.window = None
self.ui = None
self.main_window = main_window
self.setupUi(main_window)
# Add icons to the gui window
icon_path = Path(__file__).parent / 'gui_files/gui_images/RHDHV.png'
app_icon = QtGui.QIcon(icon_path.as_posix())
app_icon.addPixmap(QtGui.QPixmap(icon_path.as_posix()), QtGui.QIcon.Normal, QtGui.QIcon.Off)
viia_logo = Path(__file__).parent / 'gui_files/gui_images/logoVIIA.png'
self.viia_logo_label.setPixmap(QtGui.QPixmap(viia_logo.as_posix()))
main_window.setWindowIcon(app_icon)
# Set the Okay button action
self.push_button_ok.clicked.connect(self.slot_for_ok_button)
### ===================================================================================================================
### 3. Start tool GUI select-window
### ===================================================================================================================
[docs]class StartSelectGUI(Ui_SelectWindow):
""" This is the second window user enters, in the start tool and collects the required object and object-part and
creates the model script, main script and result script. General info is entered in the scripts."""
def __init__(self, window, token):
""" Initiate all the relevant setups."""
self.window = window
self.setupUi(window)
self.token = token
# Add icons to the gui window
icon_path = Path(__file__).parent / 'gui_files/gui_images/RHDHV.png'
app_icon = QtGui.QIcon(icon_path.as_posix())
app_icon.addPixmap(QtGui.QPixmap(icon_path.as_posix()), QtGui.QIcon.Normal, QtGui.QIcon.Off)
viia_logo = Path(__file__).parent / 'gui_files/gui_images/logoVIIA.png'
self.viia_logo_label.setPixmap(QtGui.QPixmap(viia_logo.as_posix()))
self.window.setWindowIcon(app_icon)
# Get list of viia-objects and the assigned objects
self.viia_objects = myviia_get_all_objects(token=token)
self.assigned_viia_objects = myviia_get_all_objects_for_user(token=token)
if not self.assigned_viia_objects:
self.radio_button_assigned.setChecked(False)
self.radio_button_all.setChecked(True)
self.set_all_objects()
else:
self.set_assigned_objects()
self.selected_viia_object = None
# Actions for the radio-buttons
self.radio_button_assigned.clicked.connect(self.set_assigned_objects)
self.radio_button_all.clicked.connect(self.set_all_objects)
# Action for update combo-box
self.comboBox.currentIndexChanged.connect(self.combobox_to_select_conditions)
# Set the Okay button action
self.push_button_ok.clicked.connect(self.slot_for_ok_button)
[docs] def objecten_combo_box(self, viia_objects):
""" This is the slot for combobox VIIA objects."""
self.comboBox.clear()
self.comboBox.addItems(viia_objects)
[docs] def set_assigned_objects(self):
""" Show the list of assigned objects only."""
self.objecten_combo_box(
viia_objects=['None'] + [item['viiaobject_nummer'] for item in self.assigned_viia_objects])
[docs] def set_all_objects(self):
""" Show list of all objects from MYVIIA."""
self.objecten_combo_box(
viia_objects=sorted(['None'] + [item['objectnummer_viia'] for item in self.viia_objects]))
[docs] def combobox_to_select_conditions(self):
""" This is the slot for combobox behavior factor."""
objectname = self.comboBox.currentText()
if objectname != 'None':
for viia_object in self.viia_objects:
if viia_object['objectnummer_viia'] == objectname:
self.objectparts_combo_box(viia_object_id=viia_object['id'])
[docs] def objectparts_combo_box(self, viia_object_id: int = None):
""" This is the slot for combobox object-parts, based on the selection of the VIIA object."""
self.comboBox_2.clear()
self.selected_viia_object = None
if viia_object_id is not None:
self.selected_viia_object = myviia_get_object(object_id=viia_object_id, token=self.token)
parts = [part['naam'] for part in self.selected_viia_object['objectdelen'] if part['rekenmethodiek_id']]
self.comboBox_2.addItems(parts)
### ===================================================================================================================
### 3. End of script
### ===================================================================================================================