)
config = ConfigParser()
-config_path = next(
- (path for path, exists in CONFIG_PATHS.items() if exists), None)
+config_path = next((path for path, exists in CONFIG_PATHS.items() if exists), None)
if config_path:
config.read(config_path)
CA_PATH = next((path for path, exists in CA_PATHS.items() if exists), None)
-WS_TOKEN = next(
- (path for path, exists in WS_TOKEN_PATHS.items() if exists), None)
-GRPC_TOKEN = next(
- (path for path, exists in GRPC_TOKEN_PATHS.items() if exists), None)
+WS_TOKEN = next((path for path, exists in WS_TOKEN_PATHS.items() if exists), None)
+GRPC_TOKEN = next((path for path, exists in GRPC_TOKEN_PATHS.items() if exists), None)
KUKSA_CONFIG = {}
KUKSA_TOKEN = None
-
def select_config(preferred_config):
"""
Selects a configuration from the config.ini file based on the preferred_config parameter.
"""
save values to config.ini under [user-session]
"""
- if not config.has_section('user-session'):
- config.add_section('user-session')
config.set('user-session', 'ip', str(session_config['ip']))
config.set('user-session', 'port', str(session_config['port']))
config.set('user-session', 'insecure', str(session_config['insecure']))
config.set('user-session', 'tls_server_name',
str(session_config['tls_server_name']))
- if auth_token in WS_TOKEN_PATHS or auth_token in GRPC_TOKEN_PATHS:
+ if auth_token in WS_TOKEN_PATHS or auth_token in GRPC_TOKEN_PATHS or auth_token == 'default':
config.set('user-session', 'token', 'default')
else:
config.set('user-session', 'token', str(auth_token))
- if CA_File in CA_PATHS:
+ if CA_File in CA_PATHS or CA_File == 'default':
config.set('user-session', 'cacert', 'default')
else:
config.set('user-session', 'cacert', str(CA_File))
with open(config_path, 'w') as configfile:
config.write(configfile)
+
+
+def fullscreen_mode():
+ return config.getboolean('default', 'fullscreen-mode')
+
+
+if not config.has_section('user-session'):
+ config.add_section('user-session')
+ temp = {
+ 'ip': "",
+ 'port': "",
+ 'protocol': "",
+ 'insecure': "",
+ 'cacert': "",
+ 'token': "",
+ 'tls_server_name': "",
+ }
+ save_session_config(temp, 'default', 'default')
\ No newline at end of file
from PyQt5.QtSvg import *
from PyQt5.QtGui import QIcon
+import extras.config as config
+
current_dir = os.path.dirname(os.path.abspath(__file__))
Form, Base = uic.loadUiType(os.path.join(current_dir, "Main_Window.ui"))
self.setAttribute(QtCore.Qt.WA_TranslucentBackground)
self.setStyle(QtWidgets.QStyleFactory.create('Fusion'))
+ # set fullscreen mode if enabled in config.ini
+ if config.fullscreen_mode():
+ UI_Handeler.fullscreen(self)
+
self.current_page = None
self.headerContainer = self.findChild(QWidget, 'headerContainer')
self.settingsBtn)
steering_icon = ":/Images/Images/steering-wheel.svg"
- getsize = QtSvg.QSvgRenderer(steering_icon)
svg_widget = QtSvg.QSvgWidget(steering_icon)
- svg_widget.setFixedSize(getsize.defaultSize())
+ svg_widget.setFixedSize(QtSvg.QSvgRenderer(steering_icon).defaultSize())
svg_widget.setStyleSheet("background-color: transparent;")
self.steeringCtrlButton.setIcon(QIcon(svg_widget.grab()))