Menu
  • HOME
  • TAGS

Eclipse GEF FanRouter

eclipse,eclipse-gef,draw2d

FanRouter is the router for handling collisions. It requires the "next" router which can be BendpointConnectionRouter for example that would do the all the hard work for laying out a connection. Once Fanrouter is laying out a connection it would first use the "next" router to do the actual connection...

GEF viewer drop location

eclipse-rcp,eclipse-gef

Your Canvas control should occupy all space provided to it by the editor composite. When the editor window is resized the canvas size should become equal to the size of the window (editor composite) and then the size of the root figure should become equal to the size of the...

Change height of figures in GEF programmatically

eclipse-gef,draw2d

I was updating the height in the paintFigure(), it was changing to previous height because it was taking values from the model. I changed the height in the model, and it worked fine.