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
2answers
320 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
17 views

How to implement dragdetection on Slider without using dragdetect listener?

I want to implement a dragdetect on Slider widget. So when user drags the thumb. the drag should be detected. can anyone suggest a workaround with out using the drag detect listener. thanks regards ...
0
votes
1answer
17 views

Long press on up/down scroll button of the slider widget should scroll the slider widget thumb continuously

we have used a Slider widget (org.eclipse.swt.widgets.Slider) in our composite (which is inside a plugin) to scroll the FigureCanvas (the canvas's scroll bar has been disabled). This Slider should ...
0
votes
0answers
46 views

draw2d polylines are being plotted with different shades of grey

I am trying to plot a draw2d polylineconnection and the line gets plotted properly, but the plotted line doesnt not have the same color through out: some part of the line is grey some parts are dark. ...
0
votes
1answer
28 views

SWT dynamically plotting large amount of data on a limited canvas by increasing its size from bottom and reducing it from top

There are lots of figures I want to plot on a draw2d figurecanvas.figures consume lot of memory. I want them to be plotted serially on the canvas but couldnt because of the memory issue. Now I want ...
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
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 ...