Commit 631f06e7 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

pamhyr: Disable posibility to open multiple network window.

Showing with 16 additions and 1 deletion
+16 -1
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from functools import reduce
class ListedSubWindow(object): class ListedSubWindow(object):
def __init__(self): def __init__(self):
super(ListedSubWindow, self).__init__() super(ListedSubWindow, self).__init__()
...@@ -26,3 +28,10 @@ class ListedSubWindow(object): ...@@ -26,3 +28,10 @@ class ListedSubWindow(object):
) )
self.sub_win_cnt = len(self.sub_win_list) self.sub_win_cnt = len(self.sub_win_list)
print(f"- {name} ({self.sub_win_cnt})") print(f"- {name} ({self.sub_win_cnt})")
def sub_win_exists(self, name):
return reduce(
lambda acc, n: (acc or (n[0] == name)),
self.sub_win_list,
False
)
...@@ -289,11 +289,17 @@ class ApplicationWindow(QMainWindow, ListedSubWindow): ...@@ -289,11 +289,17 @@ class ApplicationWindow(QMainWindow, ListedSubWindow):
Returns: Returns:
Nothing Nothing
""" """
if not self.model is None: if (self.model is not None and
not self.sub_win_exists("River network")):
self.network = NetworkWindow(model=self.model, parent=self) self.network = NetworkWindow(model=self.model, parent=self)
self.network.show() self.network.show()
def open_geometry(self): def open_geometry(self):
"""Open geometry window
Returns:
Nothing
"""
if not self.model is None: if not self.model is None:
geometry = GeometryWindow(parent=self) geometry = GeometryWindow(parent=self)
geometry.show() geometry.show()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment