Tagged Questions
0
votes
1answer
50 views
Create a Composite that adapt to my data in Eclipse SWT
My First try is:
public MultiLangugeText(Composite parent, int style) {
super(parent, style);
setLayout(new RowLayout(SWT.HORIZONTAL));
Map<Locale, String> texts = new ...
1
vote
2answers
356 views
CoolBar (java SWT WindowBuilder) Composite doesn't appear in Application
I have a problem when I try to use a coolBar in a composite and then I embed this composite in an application. The coolBar simply doesn't appear. This problem doesn't occours with another tools, like ...
0
votes
2answers
343 views
Problems with Eclipse Window Builder Composite
I am experiencing some problems with Window Builder example:
https://developers.google.com/web-toolkit/tools/gwtdesigner/features/custom_composites
When I copy the codes to my Eclipse, I have an ...
0
votes
3answers
431 views
SWT: remove the invisible component space in composite
I put three composite(1,2,3) inside one composite0, so they all set their layout based on the composite0.setLayout(new FormLayout()). The problem I have now is, I make the composite3 invisible: ...
0
votes
1answer
800 views
Vaadin + Eclipse Visual Editor NOT reloading/updating Composite components
I created a Vaadin Project, then wanted to create a Custom composite and display that as my main window (so i could take advantage of the Visual UI editor). Working with Tomcat Apache Server and the ...
0
votes
1answer
600 views
get in the center of the composite? eclipse
My purpose is to draw in the CENTER of the composite. Actually, I have an rcp view and I'm drawing some shapes inside it. this is the code that I use :
display = parent.getDisplay();
white= ...
0
votes
1answer
1k views
Eclipse RCP Image Application: How Do I Lay Out My Images?
I have an Eclipse plugin that displays a view. What I want to do is display n images in the view in a single row with a centered label under each image. I want to view to be scrollable.
I also want ...
0
votes
1answer
482 views
Eclipse SWT Virtual Composite Question
Is it possible to create a virtual composite using SWT, i.e. one could scroll horizontally or vertically beyond the maximum display area of the composite?
I want the length and height of my widgets ...