nodeeditor icon indicating copy to clipboard operation
nodeeditor copied to clipboard

Qt Node Editor. Dataflow programming framework

Results 143 nodeeditor issues
Sort by recently updated
recently updated
newest added

This signal is sent when nodes or connections change. Many editors will have a file modified flag after modifying the file. We can connect this signal to determine which scene...

Commit [8a41b1c](https://github.com/paceholder/nodeeditor/commit/8a41b1c94a6c13166c5cfc0e0d14283068b3ff3a) broken node alignment, `new MoveNodeCommand(BasicGraphicsScene* scene, NodeId const nodeId, QPointF const &diff)` has been deleted. ``` // Align-Top connect(ui.btnAlignTop, &QPushButton::clicked, [=] { if (scene->selectedNodes().size() > 0) { auto...

Hi I'm learning nodeeditor and looking to do something with it, this commit adds a font selection field

I tried to get the calculator example to work with two views. It's a first step in implementing groups. See the patch. It's got some qDebug() s added but just...

- No longer use `registry->categories()` to create parent items - Automatic sorting - removed `CategoriesSet` I looked up where `CategoriesSet` is used in v2 and v3 and found that it...

When using the left mouse button to drag the graph after previously holding shift to perform a box select, the shift depress is not detected and the mouse remains in...

When the context menu is used to filter nodes, no results are shown despite partial or complete matches. ![Demonstration](https://i.imgur.com/NsLGN43.gif) **Steps to reproduce:** 1. Create an application with at least one...

Currently, if a node's inputs or outputs are updated, the embedded QWidget's position will remain unchanged - possibly occluding the new ports' captions. This code fixes that issue, and moves...

I make a node plugin to extend my application. User can develop their own Node by inheriting 'NodeDelegateModel' class and compile it as SHARED library (*.dll). The application will load...

Closes #409 With this PR, I'm able to add static CMake target `nodeeditor` as a dependency of my project. I've tested to build it static, but not tested to build...