dunnart icon indicating copy to clipboard operation
dunnart copied to clipboard

Constraint-based diagram editor

Results 21 dunnart issues
Sort by recently updated
recently updated
newest added

No updates for a long time...

![image](https://user-images.githubusercontent.com/7409590/41714787-0f4c32ac-7584-11e8-9089-7c61f13d6604.png) I dunno. Searched open issues for this: There is one open and one closed issue. The closed issue was self-closed by the user when he said he had the...

I've never used this program and really wanted to try it after discovering it today. I downloaded the zip file of the windows build, extracted it, and tried to run...

I am trying to build dunnart directly from Qt Creator using provided project file. My setup is: ``` Qt Creator 4.0.3 Qt 5.6.1 (MSVC 2013, 32 bit) Visual Studio Community...

here is my proposed modification, but I am not sure if it breaks things around: void Connector::disconnect_from(ShapeObj *shape, uint pinClassID) { int type; // ADD THIS LINE if ((m_src_pt.shape ==...

void GraphData::connectorToEdge(Connector\* conn) { ``` QPair connpts = conn->get_connpts(); if(!connpts.first.shape||!connpts.second.shape) { qWarning("dangling connector!"); return; } conn_vec.push_back(conn); // this line should be here, not at the beginning // otherwise there's a...

I am currently using the dunnartcanvas library and trying to connect it with my own application. I need to display multi-edge connections nicely. I found some bugs in the algorithm...

hi Michael, I am trying to link my Qt project against OGDF. Since you have done it successfully, I'd like to ask advice. I am failing to compile OGDF using...

The compiler, which is the default one, used is msvc2013. When I was building dunnart in Qt creator, couple of problems come up: couple of error reported with dll files....

in canvas.cpp, member function bool Canvas::loadGmlDiagram(const QFileInfo& fileInfo) line: m_gml_graph = new gml::Graph(this, fileInfo.absolutePath().toStdString(), should be: m_gml_graph = new gml::Graph(this, fileInfo.absoluteFilePath().toStdString(), Even fixing the above, graphs do not seem to...