Tagged Questions
-1
votes
0answers
38 views
How to zoom a Composite?
I have a ScrolledComposite and on top of this I have a simple Composite and on top of this simple Composite I have 10 ChartComposites. Each ChartComposite contains a JFreeChart (Bar Chart).
I want ...
0
votes
0answers
56 views
SWT group composite border disappers
SWT group composite border disappers when i press TAB key. Shell has 3 group composites but the disappering problem is only with one group.
Group grpCustomerDetails = new Group(this, SWT.NONE);
...
0
votes
1answer
57 views
How do I get a FlowLayout inside a ScrolledComposite grow vertical and not horizontal
I'm trying to create a FlowLayout Composite inside a ScrolledComposite so that the FlowLayout Composite inherit it's width from the ScrolledComposite but grows in height dynamically, I've searched ...
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 ...
0
votes
0answers
88 views
Why does Composite have no actual value?
I have an Eclipse RCP application with 2 Parts (Main Menu and New Macro) in a Part Stack.
When the application starts it calls the CreateMainUI contributing class below which constructs the UI and ...
0
votes
1answer
165 views
FileDialog and Composite
I am trying to create a browse button with FileDialog and composite in Java SWT. (Composite because, I am use CTabFolder and CTabItem. I felt to add components to CTabItem composite is good enough)
...
0
votes
2answers
124 views
Selective menu detection within a Composite
I want to add some objects into an Composite object. Objects can have different shapes (rectangle, circle, ellipse or even weird shape (represented by a polygon). So I defined classes like this:
...
1
vote
1answer
187 views
Mouse events in SWT
I defined a Node class extends Canvas class and handle the mouse event.
public class Node extends Canvas {
String name;
public String getName() { return name; }
public Node(Composite parent, int ...
-1
votes
1answer
46 views
Draw in composite [closed]
I have a Composite called Workspace. In this composite I want to add some graphics object. Each object can be selected, dragged, moved and can have complicated shape (circle, ellipse, polygon,...). I ...
2
votes
1answer
34 views
How To Find A Label In A Composite
I am trying to refresh a clabel in a composite. However the clabel does not always exist. I need a way to check if exists in the composite. I have tried the getChildren class on the composite, and I ...
0
votes
1answer
124 views
How create action for composite
I've created my own org.eclipse.swt.widgets.Composite. I am using this composite within a org.eclipse.jface.wizard.WizardPage.
org.eclipse.swt.widgets.Composite has a variable pageComplete. I have to ...
1
vote
2answers
351 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
338 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 ...
2
votes
1answer
91 views
Get SWT widget at location
I have a set of x/y coordinates relative to a composite, how do find what widget those coords fall in?
1
vote
2answers
473 views
SWT Composite alignment
I would like to know what is the normal/common practices here for a SWT Composite object.
I have found out that whenever I add a Composite (with any UIs example: TextBox or Button) The UI created ...
0
votes
1answer
461 views
How do I make it possible to resize a composite by dragging the corner
I am working with SWT and I would like to be able to resize a composite by dragging the corner of it, the same way that you can resize a shell. I'm sure someone out there has implemented a good ...
2
votes
0answers
46 views
Enabling focus listeners on the composite container
I have four composites aligned in order.
Each composite has a check box, Label, and 2 Buttons. Now these composites are aligned one after another.
I want to enable focus on these items, i.e. when I ...
1
vote
1answer
1k views
SWT: GridLayout column span
I've been using SWT for a few years, but i can't seem to figure this one out:
I need to SPLIT a VIEW into 2 "zones": LEFT and RIGHT
So i use a Composite with GridLayout with 2 columns to do it.
...
0
votes
0answers
369 views
Redraw SWT dynamically object
Good evening.
I created SWT application, which contains shell with two elements: ExpandBar and Button.
At application start all items of ExpandBar are expanded and Button is under ExpandBar. I want to ...
-1
votes
2answers
183 views
how to add panel/jpanel or any panel of any package to composite in java?? (using RAP, SWT)
I am creating an RAP application in JAVA.
i want to have a GUI like master detail. in which left side has panel that has a tree (like in windows 7) and on the right side there will be text fields ...
0
votes
3answers
420 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
2answers
787 views
How to dispose all children of Composite object?
I hava a
Composite descComp
with some stuff in it... basically it is a container for a form, consisting of number of labels, Combos and buttons, all aligned in a line.
My form is not finite, I ...
2
votes
2answers
2k views
SWT Use Gridlayout in Scrolled Composite
I am trying to created a scrolled composite that has a composite with a gridlayout inside.
However when I try to set the content of the scrolled composite nothing loads.
This appears only to affect ...
0
votes
1answer
126 views
SWT How to put a Color Dialog in composite [closed]
The title talk about itself.
I would like put the content of a swt.colorDailog in a swt.Composite
so without using a new dialog window.
Thank you in advance,
0
votes
1answer
372 views
How to adding scroll bar and it work in Composite
ScrolledComposite sc = new ScrolledComposite(parent, SWT.H_SCROLL | SWT.V_SCROLL);
Composite composite = new Composite(sc, SWT.NONE);
composite.setSize(1000, 1000);
...
0
votes
1answer
1k views
Eclipse rcp layout issue
I am facing an issue with editor and its contents layout. Its following: there is an editor with print preview functionality, main part of the editor is taken by paper clips PrintPreview component, on ...
0
votes
1answer
297 views
SWT/JFace: multicolumn TreeViewer with composite as content
I want to create a multicolumn tree like interface for a graphics editor, similar to the one here: http://imageshack.us/photo/my-images/854/51909806.png/. It will contain layers as parent tree items ...
4
votes
2answers
272 views
SWT user control design decision
Hypothetical question:
What about this SWT design decision that to make a custom compound widget I have to subclass Composite? Is that really wise?
Wouldn't it be better if SWT had a UserControl ...
0
votes
1answer
597 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= ...
1
vote
1answer
389 views
flickering of image in SWT
I am building an SWT application, I have used a scrolled composite and a composite inside that. This has a few more buttons and checkboxes . All this is inside a composite. Now I tried to put this ...
4
votes
1answer
2k views
SWT Composite maximum size
I have a ScrolledComposite, the contents of which are being truncated. I have Googled and am aware that it is a known issue on Windows.
The only suggested workaround I can find is to use the ...
3
votes
2answers
528 views
SWT ScrolledComposite cutting off information.
I'm making an application that has many lines of data coming back from a Database stub(which will become an Oracle database), and for some reason the scroll bar stops at about the 500th element. I'm ...
2
votes
1answer
1k views
Redrawing control behind composite with SWT.NO_BACKGROUND
Original goal:
I have a TreeMenu that i use to display my Menu.
In this tree, a user can select different items.
I would like to disable the tree, so that a user cannot select a new item after ...
1
vote
0answers
2k views
SWT nested composite layout issue
I am new to SWT but have plenty of experience w/ other GUI layout managers.
I have run in to a weird problem when nesting a composite inside of another composite.
...
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
481 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 ...