pamhyr: Disable posibility to open multiple network window.

mesh
Pierre-Antoine Rouby 2023-04-05 13:47:07 +02:00
parent daa7ca867c
commit 631f06e7d6
2 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
from functools import reduce
class ListedSubWindow(object):
def __init__(self):
super(ListedSubWindow, self).__init__()
@ -26,3 +28,10 @@ class ListedSubWindow(object):
)
self.sub_win_cnt = len(self.sub_win_list)
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
)

View File

@ -289,11 +289,17 @@ class ApplicationWindow(QMainWindow, ListedSubWindow):
Returns:
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.show()
def open_geometry(self):
"""Open geometry window
Returns:
Nothing
"""
if not self.model is None:
geometry = GeometryWindow(parent=self)
geometry.show()