├── .gitignore ├── LICENSE ├── Node_Gallery.vgf ├── README.md ├── export_command.json ├── graph.json ├── graph1.vgf ├── graph2.json ├── graph2.vgf ├── graph3.vgf ├── graph4.vgf ├── graph5.vgf ├── graphs ├── Array_test.vgf ├── Dict_test.vgf ├── FileOperation_test.vgf ├── Loop_test.vgf ├── Regression_test.vgf ├── Variable.vgf ├── csv_table.vgf ├── example │ └── journal_citation_network.vgf ├── num_action.vgf └── tablemerge.vgf ├── img ├── editor.png ├── nodes.png └── test.png ├── multi_thread_test.vgf ├── plan └── README.md ├── src ├── editor │ ├── __init__.py │ ├── execution │ │ ├── RunningEdge.py │ │ ├── RunningNode.py │ │ ├── RunningPort.py │ │ └── running_graph.py │ ├── icon.png │ ├── icons │ │ ├── add.png │ │ ├── add.svg │ │ ├── add_hover.png │ │ ├── add_hover.svg │ │ ├── add_pressed.png │ │ ├── bool.png │ │ ├── branch-closed.png │ │ ├── branch-open.png │ │ ├── favicon.ico │ │ ├── float.png │ │ ├── folder-close.png │ │ ├── folder-open.png │ │ ├── folder.png │ │ ├── func.png │ │ ├── i1.png │ │ ├── i2.png │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── int.png │ │ ├── minus.png │ │ ├── minus.svg │ │ ├── minus_hover.png │ │ ├── minus_hover.svg │ │ ├── minus_pressed.png │ │ ├── minus_pressed.svg │ │ ├── preview.png │ │ ├── refresh.png │ │ ├── refresh.svg │ │ ├── simple.png │ │ ├── str.png │ │ ├── tree-close-white.png │ │ ├── tree-close.png │ │ ├── tree-open-white.png │ │ ├── tree-open.png │ │ ├── white_cls.png │ │ ├── x.png │ │ └── x.svg │ ├── main.py │ ├── nodes │ │ ├── ActionNode.py │ │ ├── ArrayInput.py │ │ ├── ArrayNode.py │ │ ├── Caster.py │ │ ├── ControlNode.py │ │ ├── DataProcessing.py │ │ ├── DictNode.py │ │ ├── FigNode.py │ │ ├── FileNode.py │ │ ├── InputNode.py │ │ ├── NodeCoverter.py │ │ ├── NumNode.py │ │ ├── PreviewNode.py │ │ ├── RegressionNode.py │ │ ├── StringNode.py │ │ ├── TableNode.py │ │ ├── Timer.py │ │ ├── VariableNode.py │ │ └── __init__.py │ ├── qss │ │ ├── base.qss │ │ ├── detail.qss │ │ ├── log.qss │ │ ├── main.qss │ │ ├── sidebar.qss │ │ └── tree.qss │ ├── structs │ │ ├── __init__.py │ │ └── table_strcuts.py │ ├── test.py │ ├── tools │ │ ├── GraphRunner.py │ │ ├── QssLoader.py │ │ ├── SidebarWidgets.py │ │ ├── VariableManager.py │ │ ├── __init__.py │ │ ├── vg_tools.py │ │ └── vg_tree_widget.py │ ├── vg_config.py │ ├── vg_decorator.py │ ├── vg_dtypes.py │ ├── vg_edge.py │ ├── vg_edit_command.py │ ├── vg_editor.py │ ├── vg_env.py │ ├── vg_group.py │ ├── vg_node.py │ ├── vg_node_port.py │ ├── vg_scene.py │ ├── vg_view.py │ ├── vg_widgets.py │ └── widgets │ │ ├── BaseWidgets.py │ │ ├── NodeWidget.py │ │ ├── PortWidget.py │ │ └── __init__.py └── test.png ├── test.csv ├── test.json ├── test1.csv └── test2.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Node_Gallery.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/Node_Gallery.vgf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/README.md -------------------------------------------------------------------------------- /export_command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/export_command.json -------------------------------------------------------------------------------- /graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph.json -------------------------------------------------------------------------------- /graph1.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph1.vgf -------------------------------------------------------------------------------- /graph2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph2.json -------------------------------------------------------------------------------- /graph2.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph2.vgf -------------------------------------------------------------------------------- /graph3.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph3.vgf -------------------------------------------------------------------------------- /graph4.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph4.vgf -------------------------------------------------------------------------------- /graph5.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graph5.vgf -------------------------------------------------------------------------------- /graphs/Array_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/Array_test.vgf -------------------------------------------------------------------------------- /graphs/Dict_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/Dict_test.vgf -------------------------------------------------------------------------------- /graphs/FileOperation_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/FileOperation_test.vgf -------------------------------------------------------------------------------- /graphs/Loop_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/Loop_test.vgf -------------------------------------------------------------------------------- /graphs/Regression_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/Regression_test.vgf -------------------------------------------------------------------------------- /graphs/Variable.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/Variable.vgf -------------------------------------------------------------------------------- /graphs/csv_table.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/csv_table.vgf -------------------------------------------------------------------------------- /graphs/example/journal_citation_network.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/example/journal_citation_network.vgf -------------------------------------------------------------------------------- /graphs/num_action.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/num_action.vgf -------------------------------------------------------------------------------- /graphs/tablemerge.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/graphs/tablemerge.vgf -------------------------------------------------------------------------------- /img/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/img/editor.png -------------------------------------------------------------------------------- /img/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/img/nodes.png -------------------------------------------------------------------------------- /img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/img/test.png -------------------------------------------------------------------------------- /multi_thread_test.vgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/multi_thread_test.vgf -------------------------------------------------------------------------------- /plan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/plan/README.md -------------------------------------------------------------------------------- /src/editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/execution/RunningEdge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/execution/RunningEdge.py -------------------------------------------------------------------------------- /src/editor/execution/RunningNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/execution/RunningNode.py -------------------------------------------------------------------------------- /src/editor/execution/RunningPort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/execution/RunningPort.py -------------------------------------------------------------------------------- /src/editor/execution/running_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/execution/running_graph.py -------------------------------------------------------------------------------- /src/editor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icon.png -------------------------------------------------------------------------------- /src/editor/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/add.png -------------------------------------------------------------------------------- /src/editor/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/add.svg -------------------------------------------------------------------------------- /src/editor/icons/add_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/add_hover.png -------------------------------------------------------------------------------- /src/editor/icons/add_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/add_hover.svg -------------------------------------------------------------------------------- /src/editor/icons/add_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/add_pressed.png -------------------------------------------------------------------------------- /src/editor/icons/bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/bool.png -------------------------------------------------------------------------------- /src/editor/icons/branch-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/branch-closed.png -------------------------------------------------------------------------------- /src/editor/icons/branch-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/branch-open.png -------------------------------------------------------------------------------- /src/editor/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/favicon.ico -------------------------------------------------------------------------------- /src/editor/icons/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/float.png -------------------------------------------------------------------------------- /src/editor/icons/folder-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/folder-close.png -------------------------------------------------------------------------------- /src/editor/icons/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/folder-open.png -------------------------------------------------------------------------------- /src/editor/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/folder.png -------------------------------------------------------------------------------- /src/editor/icons/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/func.png -------------------------------------------------------------------------------- /src/editor/icons/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/i1.png -------------------------------------------------------------------------------- /src/editor/icons/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/i2.png -------------------------------------------------------------------------------- /src/editor/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/icon.ico -------------------------------------------------------------------------------- /src/editor/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/icon.png -------------------------------------------------------------------------------- /src/editor/icons/int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/int.png -------------------------------------------------------------------------------- /src/editor/icons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus.png -------------------------------------------------------------------------------- /src/editor/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus.svg -------------------------------------------------------------------------------- /src/editor/icons/minus_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus_hover.png -------------------------------------------------------------------------------- /src/editor/icons/minus_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus_hover.svg -------------------------------------------------------------------------------- /src/editor/icons/minus_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus_pressed.png -------------------------------------------------------------------------------- /src/editor/icons/minus_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/minus_pressed.svg -------------------------------------------------------------------------------- /src/editor/icons/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/preview.png -------------------------------------------------------------------------------- /src/editor/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/refresh.png -------------------------------------------------------------------------------- /src/editor/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/refresh.svg -------------------------------------------------------------------------------- /src/editor/icons/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/simple.png -------------------------------------------------------------------------------- /src/editor/icons/str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/str.png -------------------------------------------------------------------------------- /src/editor/icons/tree-close-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/tree-close-white.png -------------------------------------------------------------------------------- /src/editor/icons/tree-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/tree-close.png -------------------------------------------------------------------------------- /src/editor/icons/tree-open-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/tree-open-white.png -------------------------------------------------------------------------------- /src/editor/icons/tree-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/tree-open.png -------------------------------------------------------------------------------- /src/editor/icons/white_cls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/white_cls.png -------------------------------------------------------------------------------- /src/editor/icons/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/x.png -------------------------------------------------------------------------------- /src/editor/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/icons/x.svg -------------------------------------------------------------------------------- /src/editor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/main.py -------------------------------------------------------------------------------- /src/editor/nodes/ActionNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/ActionNode.py -------------------------------------------------------------------------------- /src/editor/nodes/ArrayInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/ArrayInput.py -------------------------------------------------------------------------------- /src/editor/nodes/ArrayNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/ArrayNode.py -------------------------------------------------------------------------------- /src/editor/nodes/Caster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/Caster.py -------------------------------------------------------------------------------- /src/editor/nodes/ControlNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/ControlNode.py -------------------------------------------------------------------------------- /src/editor/nodes/DataProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/DataProcessing.py -------------------------------------------------------------------------------- /src/editor/nodes/DictNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/DictNode.py -------------------------------------------------------------------------------- /src/editor/nodes/FigNode.py: -------------------------------------------------------------------------------- 1 | #coding:utf-8 2 | ''' 3 | 本文间主要是使用Matplotlib对数据进行画图 4 | 5 | ''' -------------------------------------------------------------------------------- /src/editor/nodes/FileNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/FileNode.py -------------------------------------------------------------------------------- /src/editor/nodes/InputNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/InputNode.py -------------------------------------------------------------------------------- /src/editor/nodes/NodeCoverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/NodeCoverter.py -------------------------------------------------------------------------------- /src/editor/nodes/NumNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/NumNode.py -------------------------------------------------------------------------------- /src/editor/nodes/PreviewNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/PreviewNode.py -------------------------------------------------------------------------------- /src/editor/nodes/RegressionNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/RegressionNode.py -------------------------------------------------------------------------------- /src/editor/nodes/StringNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/StringNode.py -------------------------------------------------------------------------------- /src/editor/nodes/TableNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/TableNode.py -------------------------------------------------------------------------------- /src/editor/nodes/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/Timer.py -------------------------------------------------------------------------------- /src/editor/nodes/VariableNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/nodes/VariableNode.py -------------------------------------------------------------------------------- /src/editor/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/qss/base.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/base.qss -------------------------------------------------------------------------------- /src/editor/qss/detail.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/detail.qss -------------------------------------------------------------------------------- /src/editor/qss/log.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/log.qss -------------------------------------------------------------------------------- /src/editor/qss/main.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/main.qss -------------------------------------------------------------------------------- /src/editor/qss/sidebar.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/sidebar.qss -------------------------------------------------------------------------------- /src/editor/qss/tree.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/qss/tree.qss -------------------------------------------------------------------------------- /src/editor/structs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/structs/table_strcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/structs/table_strcuts.py -------------------------------------------------------------------------------- /src/editor/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/test.py -------------------------------------------------------------------------------- /src/editor/tools/GraphRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/GraphRunner.py -------------------------------------------------------------------------------- /src/editor/tools/QssLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/QssLoader.py -------------------------------------------------------------------------------- /src/editor/tools/SidebarWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/SidebarWidgets.py -------------------------------------------------------------------------------- /src/editor/tools/VariableManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/VariableManager.py -------------------------------------------------------------------------------- /src/editor/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/tools/vg_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/vg_tools.py -------------------------------------------------------------------------------- /src/editor/tools/vg_tree_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/tools/vg_tree_widget.py -------------------------------------------------------------------------------- /src/editor/vg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_config.py -------------------------------------------------------------------------------- /src/editor/vg_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_decorator.py -------------------------------------------------------------------------------- /src/editor/vg_dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_dtypes.py -------------------------------------------------------------------------------- /src/editor/vg_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_edge.py -------------------------------------------------------------------------------- /src/editor/vg_edit_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_edit_command.py -------------------------------------------------------------------------------- /src/editor/vg_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_editor.py -------------------------------------------------------------------------------- /src/editor/vg_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_env.py -------------------------------------------------------------------------------- /src/editor/vg_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_group.py -------------------------------------------------------------------------------- /src/editor/vg_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_node.py -------------------------------------------------------------------------------- /src/editor/vg_node_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_node_port.py -------------------------------------------------------------------------------- /src/editor/vg_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_scene.py -------------------------------------------------------------------------------- /src/editor/vg_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_view.py -------------------------------------------------------------------------------- /src/editor/vg_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/vg_widgets.py -------------------------------------------------------------------------------- /src/editor/widgets/BaseWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/widgets/BaseWidgets.py -------------------------------------------------------------------------------- /src/editor/widgets/NodeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/widgets/NodeWidget.py -------------------------------------------------------------------------------- /src/editor/widgets/PortWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/editor/widgets/PortWidget.py -------------------------------------------------------------------------------- /src/editor/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/src/test.png -------------------------------------------------------------------------------- /test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/test.csv -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GAMEOMETRICS/VisualGraph-python/HEAD/test.json -------------------------------------------------------------------------------- /test1.csv: -------------------------------------------------------------------------------- 1 | A,B 2 | HA,1 3 | HB,2 4 | HC,3 -------------------------------------------------------------------------------- /test2.csv: -------------------------------------------------------------------------------- 1 | A,B 2 | HA,3 3 | HB,4 4 | HC,5 --------------------------------------------------------------------------------