Tagged Questions
2
votes
1answer
33 views
Draw2D GridLayoutAlgorithm with constant node width?
We're integrating Draw2D/GEF into an application, and are encountering an issue with the standard layouts provided.
We have a collection (say 100) of elements that need to be displayed in a grid-like ...
2
votes
2answers
215 views
SWT draw2d alpha blending
I'm looking for some method to draw half transparent figures within the draw2d framework.
Currently I'm using setAlpha() of org.eclipse.draw2d.Graphics. The problem is that it slows down the whole ...
2
votes
2answers
288 views
Handle key presses using swt
I'm want do someStuff() when CTRL-C pressed. I had wrote some code, but it "not enough good". What can I do with it?)
//org.eclipse.draw2d.Shape getShape(){....}
...
1
vote
1answer
272 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
319 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 ...
0
votes
1answer
33 views
How to Drag and Resize Polygon in Draw2d of Eclipse org.eclipse.draw2d.Polygon
I am working on Polygon Dragging , also Resizing of Polygon. I can draw rectangle using org.eclipse.draw2d.RectangleFigure and I am able to Drag it, I added MouseMotionListener and MouseListener to ...
0
votes
1answer
54 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
337 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
1answer
147 views
Creating a PDF from a Draw2D Canvas
I'm looking for a way to build a PDF from a Draw2D canvas. I believe I've seen a way to do this from Java2D, but not Draw2D. There are many graphical elements involved (as well as text) so I don't ...
0
votes
1answer
180 views
Triangle in draw2d library
I can't understand org.eclipse.draw2d.Triangle's api. There are some fields for manipulation:
protected int direction
The direction this triangle will face. Possible values are ...
0
votes
2answers
94 views
Handle key presses using draw2d and swt
Every org.eclipse.draw2d.Figure class has addKeyListener() method. But when key presses not every Figure handle it. What kind of figure handles key-events?
Thanks.
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
315 views
How to center Label vertical and horizontal in draw2d Figure?
I have the following situation:
Label label = new Label();
label.setText("bla");
RoundedRectangle fig = new RoundedRectangle();
fig.add(label);
FlowLayout layout = new FlowLayout();
...
0
votes
2answers
138 views
Placing figure in top-right corner of another
I want child figure (org.eclipse.draw2d.Figure) to be relative to the top-right corner of the parent (I want place some small icon, which will be ImageFigure, to be 12 pixels from top and right ...
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
2answers
654 views
How to underline text in draw2d
Is there a simple way to draw underlined text in draw2d without manually drawing a line under the text?
-3
votes
0answers
30 views
Draw2d Java GEF Layer
I am working on project where I have to display various polygons in various layers. Imagine a Z Axis and these polygons will be placed one above another. how to implement this using Freeformlayer?
I ...