-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,064 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# FLO-2D Preprocessor tools for QGIS | ||
|
||
from ..user_communication import UserCommunication | ||
from .ui_utils import load_ui | ||
|
||
uiDialog, qtBaseClass = load_ui("multiple_domains_editor") | ||
|
||
|
||
class MultipleDomainsEditorWidget(qtBaseClass, uiDialog): | ||
def __init__(self, iface, lyrs): | ||
qtBaseClass.__init__(self) | ||
uiDialog.__init__(self) | ||
self.iface = iface | ||
self.con = None | ||
self.lyrs = lyrs | ||
self.setupUi(self) | ||
self.uc = UserCommunication(iface, "FLO-2D") | ||
self.grid_lyr = None | ||
|
||
def setup_connection(self): | ||
pass |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.