Skip to content

Commit

Permalink
adapt to patchbay
Browse files Browse the repository at this point in the history
  • Loading branch information
Houston4444 committed Feb 12, 2025
1 parent e26154f commit bc838a4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion HoustonPatchbay
Submodule HoustonPatchbay updated 45 files
+2 −1 TODO
+3 −3 resources/ui/canvas_bar.ui
+343 −0 resources/ui/canvas_group_info.ui
+101 −13 resources/ui/canvas_options.ui
+131 −143 resources/ui/canvas_port_info.ui
+2 −2 resources/ui/filter_frame.ui
+25 −2 resources/ui/rename_group.ui
+8 −8 source/patchbay/__init__.py
+3 −3 source/patchbay/bases/connection.py
+1 −22 source/patchbay/bases/elements.py
+49 −33 source/patchbay/bases/group.py
+71 −27 source/patchbay/bases/port.py
+5 −5 source/patchbay/bases/portgroup.py
+4 −4 source/patchbay/calbacker.py
+1 −1 source/patchbay/conns_clipboard.py
+114 −0 source/patchbay/dialogs/group_info_dialog.py
+50 −13 source/patchbay/dialogs/options_dialog.py
+46 −21 source/patchbay/dialogs/port_info_dialog.py
+112 −0 source/patchbay/dialogs/rename_group_dialog.py
+114 −0 source/patchbay/group_info_dialog.py
+4 −4 source/patchbay/menus/canvas_menu.py
+19 −16 source/patchbay/menus/group_menu.py
+31 −51 source/patchbay/menus/port_menu.py
+3 −3 source/patchbay/menus/selected_boxes_menu.py
+1 −1 source/patchbay/menus/views_menu.py
+115 −67 source/patchbay/patchbay_manager.py
+0 −1 source/patchbay/patchbay_signals.py
+0 −4 source/patchbay/patchcanvas/box_widget_moth.py
+6 −1 source/patchbay/patchcanvas/patchcanvas.py
+1 −1 source/patchbay/patchcanvas/scene_moth.py
+0 −42 source/patchbay/rename_group_dialog.py
+2 −2 source/patchbay/surclassed_widgets.py
+5 −5 source/patchbay/tools_widgets.py
+3 −3 source/patchbay/widgets/bar_widget_canvas.py
+2 −2 source/patchbay/widgets/bar_widget_jack.py
+2 −2 source/patchbay/widgets/bar_widget_transport.py
+2 −2 source/patchbay/widgets/filter_frame.py
+5 −5 source/patchbay/widgets/hiddens_indicator.py
+1 −1 source/patchbay/widgets/tool_bar.py
+2 −2 source/patchbay/widgets/type_filter_frame.py
+3 −3 source/patchbay/widgets/view_selector_frame.py
+1 −0 source/patshared/__init__.py
+34 −1 source/patshared/base_enums.py
+48 −0 source/patshared/jack_metadata.py
+26 −4 source/patshared/pretty_names.py
12 changes: 6 additions & 6 deletions src/main_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
from xdg import xdg_data_home
from manual_tools import get_manual_path, open_in_browser

from patchbay.view_selector_frame import ViewSelectorWidget
from patchbay.type_filter_frame import TypeFilterFrame
from patchbay.widgets.view_selector_frame import ViewSelectorWidget
from patchbay.widgets.type_filter_frame import TypeFilterFrame
from patchbay.widgets.bar_widget_transport import BarWidgetTransport
from patchbay.widgets.bar_widget_jack import BarWidgetJack
from patchbay.widgets.bar_widget_canvas import BarWidgetCanvas
from patchbay.surclassed_widgets import ZoomSlider
from patchbay.tools_widgets import PatchbayToolsWidget, TextWithIcons
from patchbay.bar_widget_transport import BarWidgetTransport
from patchbay.bar_widget_jack import BarWidgetJack
from patchbay.bar_widget_canvas import BarWidgetCanvas
from patchbay.base_elements import ToolDisplayed
from patchbay.bases.elements import ToolDisplayed

from ui.main_win import Ui_MainWindow

Expand Down
4 changes: 2 additions & 2 deletions src/patchichi_pb_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from qtpy.QtWidgets import QApplication

from patshared import (
PortMode, PortType, PortTypesViewFlag)
from patchbay.base_elements import JackMetadata, JackPortFlag
PortMode, PortType, PortTypesViewFlag, JackMetadata)
from patchbay.bases.elements import JackPortFlag
from patchbay import (
CanvasMenu,
Callbacker,
Expand Down
4 changes: 2 additions & 2 deletions src/promoted_widgets.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@


from patchbay import PatchbayToolsWidget, FilterFrame, PatchGraphicsView
from patchbay.tool_bar import PatchbayToolBar
from patchbay.type_filter_frame import TypeFilterFrame
from patchbay.widgets.tool_bar import PatchbayToolBar
from patchbay.widgets.type_filter_frame import TypeFilterFrame

from code_editor import CodeEditor

Expand Down

0 comments on commit bc838a4

Please sign in to comment.