Tagged Questions
2
votes
1answer
5k views
Eclipse Indigo with Subclipse and draw2d
I've just installed Eclipse Indigo and Subclipse 1.6.17 on RHEL 5.4.
I had to deselect the without the Subversion Revision Graph because it requires the draw2d plugin.
I am working on a ...
1
vote
2answers
45 views
Eclipse RCP Draw2d Transparency (setAlpha) makes borders / outline invisible
We are providing users option to make figures drawn on canvas transparent. To achieve this we are using method setAlpha(0). But this makes figure completely invisible.
Our requirement is that outline ...
1
vote
1answer
270 views
TextBox inside eclipse's draw2d figure
Is there any way to include a Text Box inside a draw2d figure? (a code example would be nice)
1
vote
2answers
762 views
How to create a GEF figure with separate label?
I've been trying to create a Draw2D Figure that consists of two parts - a central resizeable shape, such as a circle or rectangle, and an editable label for the bottom part. An example of this type of ...
1
vote
2answers
318 views
how do I specify a transparent background colour on a draw2d Figure?
I'm writing an eclipse plugin, and I'm layering some simple figures (i.e. view elements) together to create diagrams.
A simple component looks like this
The drum icon on the right is part of a ...
1
vote
3answers
1k views
Turning on anti-aliasing in SWT
I've called gc.setAntialias(SWT.ON); and it does nothing. According to that method, it should work.
The Javadoc states:
Sets the receiver's anti-aliasing
value to the parameter, which must be
...
0
votes
1answer
11 views
Can I get a scrollable tooltip in draw2d?
I want to make the tooltip scrollable in draw2D, just like in Eclipse when you call out the Content Assist window. Can anyone help me?
Thank you in advance!
0
votes
1answer
51 views
Get the size of a Draw2d Label Figure
if I have a class with a private Label = new Label(""); in it and in some method i write:
private void setText(String text)
{
this.label.setText(text);
System.out.println("label size = " + ...
0
votes
1answer
60 views
Eclipse GEF/draw2d Coordinate System Transformation
Can someone please explain to me how coordinate transformations work in draw2d?
I have a hierarchical diagram where a figure can contain figures which also contain figures. At first I added internal ...
0
votes
0answers
17 views
What algorithm is used in GMFDirectedGraphLayout and EdgesRouter?
What/which algorithm is used in GMFDirectedGraphLayout, DirectedGraphLayout and EdgesRouter?
My current guess is that they use the same algorithm as GraphViz:
A Technique for Drawing Directed ...
0
votes
1answer
333 views
GEF/draw2d line routing algorithms
I'm using GEF and Draw2d to create a graph.
I have have a 3 level structure I want to show, which means:
RootEditPart
/
Level1EditPart
/
Level2EditPart
/
Level3EditPart
Where Level2 has multiple ...
0
votes
2answers
370 views
Performance of Eclipse GEF/Draw2D for graphs with many nodes
How does drawing large (10.000 nodes) graphs perform when using Eclipse GEF or Draw2D? The nodes can be drawn very simplistic (a circle); no labels and stuff.
Is using GEF/Draw2D feasible for this ...
0
votes
1answer
226 views
Eclipse/SWT: Rectangle taking up entire canvas
I am writing an Eclipse RCP-based application and am trying to draw a rectangle on top of a ViewPart. However, the rectangle seems to take up the whole screen even when specifiying the bounds. The ...
0
votes
1answer
305 views
Gallery of GEF/Draw2D figures
I am new to GEF/Draw2D, I've seen some tutorials on the topic, but I am wondering if any of you have seen a gallery of all figures which are shipped together with GEF? So that one can quickly see what ...
0
votes
1answer
279 views
Re-aligning text in Eclipse Draw2D Label
I am building an RCP-based application with Draw2D Labels (Figures with text). When my graphical editor re-sizes the label, the text stays in it's initial position. Is there anyway to have the text ...
0
votes
1answer
548 views
GEF java draw2d Layout that adjusts to the width of the container so that it spans over more lines
I need to show a line/multiline of images in GEF GraphicalViewer, so that it adjusts to the width of the container by spanning over more lines