-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Open Impact Category to Calculation Setup screen
- Loading branch information
1 parent
7b1217d
commit 67c4a09
Showing
4 changed files
with
45 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from typing import List | ||
|
||
from PySide2 import QtWidgets, QtCore | ||
|
||
from activity_browser import signals | ||
from activity_browser.actions.base import ABAction, exception_dialogs | ||
from activity_browser.ui.icons import qicons | ||
|
||
|
||
class MethodOpen(ABAction): | ||
""" | ||
ABAction to open one or more supplied methods in a method tab by employing signals. | ||
TODO: move away from using signals like this. Probably add a method to the MainWindow to add a panel instead. | ||
""" | ||
|
||
icon = qicons.right | ||
text = "Open Impact Category" | ||
|
||
@staticmethod | ||
@exception_dialogs | ||
def run(method_names: List[tuple]): | ||
QtWidgets.QApplication.setOverrideCursor(QtCore.Qt.WaitCursor) | ||
for method_name in method_names: | ||
signals.method_selected.emit(method_name) | ||
QtWidgets.QApplication.restoreOverrideCursor() |
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