Tagged Questions
1
vote
1answer
34 views
Layouting the parent of a parent of a parent
We have a tool, that has a GUI which contains multiple Sections. In these sections, we have Expandable Composites which are not expanded by default. When we try to expand these composites, the + ...
0
votes
1answer
26 views
Grabbing Excess Space Equally
When using "Grab Excess Horizontal Space" on multiple SWT controls within the same space, the default behavior does not divide the space between them exactly equally. Some sort of behind-the-scenes ...
0
votes
1answer
37 views
How do I make an resizable layout in SWT with standard sizes
I'm currently trying to make an application using SWT, I want to have something like in Finder where I can resize the different composites by dragging the edges. I also want to be able to set default ...
0
votes
1answer
78 views
row layout not changing controls when resizing
I am facing some problem in RowLayout while resizing the shell. I created the composite and set the layout as RowLayout for that composite. Added three Buttons inside the composite. Now when I resize ...
3
votes
1answer
26 views
Layout, which will wrap it's content automatically?
I have a composite A, which should contains another composite B.
Composite B will change it's size.
What layout should I apply to composite A, so that it will wrap composite B automatically?
1
vote
1answer
78 views
SWT ScrollableComposite filled with text, want to wrap horizontally and scroll vertically
I've got a ScrolledComposite set to take up the whole area of my shell, and I've got multiple Labels in a horizontal RowLayout inside it. I'd like to make it so that when the window is resized the ...
2
votes
1answer
47 views
SWT resizeble layout
There is anyresizeble layout on SWT?
If I want to build a windows with two components. The first will have a mininum size, but the user will can chance the width selecting the "border".
There is any ...
9
votes
3answers
318 views
Menu on the right side?
Is possible to add MenuItem (or second Menu) on the right side of the application window (as on image below)?
0
votes
2answers
134 views
SWT RowLayout: what is the minimum size?
I must be missing something stupid. The docs clearly state that the RowData object for the RowLayout layout lets you specify a minimum size (width and height), which makes sense. However, when the ...
0
votes
1answer
156 views
Input form using FormLayout in swt
i am new to swt and im trying to create a layout in a window. Each texfield will have a label to the left of the textfield- however in some cases there may be two textfields per label, and maybe at a ...
0
votes
2answers
122 views
Tree not occupying entire parent composite
I am trying to display a SWT Tree in a Group composite within a SashForm. The SWT Tree is not filling up the entire Group composite on startup, but it does, once I re-size the SashForm. I am getting ...
0
votes
1answer
225 views
SWT - GridData Layout
I have a method that creates 4 buttons. The buttons sit next to each other from left to right.
|-[b1] [b2] [b3] [b4]-----------------| <- edge of dialog
I want to be able to have a empty space ...
0
votes
1answer
279 views
SWT Text Component will not fill Horizontally
I working with SWT and am having some issues laying things out the way I want. Essentially I have a Text object that I want to have its width be what ever the width of the component it is located in ...
2
votes
1answer
137 views
SWT - Advice needed about Text Boxes / Tables / Adding and Removing values
I would really like some advice on how to proceed with the following requirement.
I am going to create a new dialog. In the dialog I want 2 boxes. 1 box with populated values and the other empty. I ...
0
votes
1answer
281 views
ScrolledComposite does not scroll within SashForm
I have the following SWT layout:
TabItem
SashForm
Composite (GridLayout)
Label (Fill W, Grab H)
ScrolledComposite (Fill W/H, Grab H/V)
Composite (RowLayout)
Composite (GridLayout)
Label (Fill ...
1
vote
2answers
736 views
SWT components relayout after visibility set to false
Lets say if I have a GridLayout composite with column = 1. (Something like a vertical flow layout)
I have added Label 1, Label 2, Label 3 to this composite, and they will appear accordingly.
...
1
vote
1answer
883 views
SWT - GridData and buttons
I have a method to create 2 buttons. These buttons are different than the OK, Close buttons. They will perform different actions when clicked. I want the 2 buttons side by side and at the top of my ...
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.
...
5
votes
2answers
941 views
Eclipse RCP IPageLayout woes
I have an Eclipse RCP application with a sort of three column layout:
The editor area is at the extreme right. Now, when you get an IPageLayout to work with, the editor area is already added in. ...
0
votes
1answer
56 views
Why should I use formlayout/formdata instead of setBounds?
When creating something as simple as a Combo, why should I use FormLayout with FormData instead of settings the bounds?
0
votes
3answers
161 views
SWT composite ordering in layout
I have a composite that contains two child composites
+---+---+
| 1 | 2 |
+---+---+
How can I change the order of these two composites when the user clicks a button?
Result should be:
+---+---+
...
1
vote
1answer
226 views
How to “anchor” SWT widgets?
I'm trying to make a simple browser with the SWT library. I'm having a problem though trying to get objects to anchor to the top left and such.
I'm using Eclipse and using the layout assistant I set ...
0
votes
1answer
97 views
How to allow user to resize widget?
I'm using SWT Java. I'd like to implement layout that is resizable by user.
For example File Tree on left side, text editor on right side and user can change size ratio between them.
1
vote
1answer
151 views
SWT Layout reposition form controls
This is my code and screenshot of form .
I want the top most text box to take all free horizontal space.
![Display display = new Display();][1]
Shell shell = new Shell(display);
...
2
votes
1answer
335 views
Changing application menubar in Eclipse RCP
I want to change the position of the application menu in an Eclipse RCP application. This is what my UI designer wants it to look like:
Note that you have the menubar on the left and a tab-bar on the ...
1
vote
1answer
74 views
Scaling an Address Form on Resize
My application has a form for filling in the names and addresses of a donor. Each donor gets a closable tab and each tab has an address form.
The problem is that the application runs in a regular ...
0
votes
1answer
159 views
Is there anything like BOXLAYOUT in SWT Eclipse
I need to arrange Component One below other like Swing's BoxLayout Y axis scenario .
I thought of using Gridlayout inside Gridlayout , but is there any better option. I have already 4 columns and ...
0
votes
1answer
369 views
swt layout suggestion
I need one layout where 2 compsites can sit together VERTICALLY.
The first composite should have a bigger height than the second. I can't use null layout. I have to use some layout manager for this.
...
1
vote
2answers
669 views
borderlayout in swt or swing
I want to arrange components as shown in image. I can do this by using gridbaglayout but I want to do this using borderlayout. I tried it but could not achieve what I wanted. so please guide me here.
...
3
votes
1answer
89 views
Layouting custom buttons
I am trying to create buttons shaped as in the following picture:
This works pretty well by doing the following:
class ArrowButton extends Composite {
ArrowButton(Composite parent, int style) {
...
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
2answers
179 views
A layout implementation such as Eclipse
I have been working on a project model and pretty much completed it. Now I must implement the view of the project. I like eclipse view layout very much and tried to implement like this but I ...
1
vote
1answer
249 views
SWT layout selection
I'm trying to make a box that allows you to select some variables, and re-order the ones that are selected. So the LEFT box starts filled, the RIGHT box starts empty. You move items from the left to ...
0
votes
1answer
650 views
How to make horizontally expanding Control next to fixed-width Control in SWT
I would like to accomplish the following:
Where one fixed-width control is adjacent to a horizontally-expanding control that fills the available space.
I am already able to use GridLayout to ...
2
votes
1answer
145 views
What about object instances reuse?
I am wondering if there is any convention in Java (through Javadoc or implicit convention) to indicate that a given same class instance can be reuse in several contexts ?
I am asking that because in ...
0
votes
0answers
376 views
Bad text alignment in SWT Label
I am trying to do something that should be absolutely trivial, namely add a product version number to an RCP application's splash screen. So my code goes like this:
class ARMSplashHandler extends ...
1
vote
2answers
312 views
SWT Miglayout Problem
I'm using miglayout in my swt application but when the content of a text field is large it tends to push the width/height of the text field out of view, this issue also affects table component with ...
1
vote
1answer
260 views
SWT Text widget does not show up
package org.jilen.editor
import org.eclipse.swt.widgets.Display
import org.eclipse.swt.widgets.Shell
import org.eclipse.swt.widgets.Text
import org.eclipse.swt.SWT
object EditorApp {
def main(args: ...
0
votes
1answer
706 views
Group.layout() not displaying newly added fields in modified group? (SWT Newbie!)
I am new to SWT development and am trying to build an extremely simple GUI window (going by the online tutorials and examples). My little GUI takes a string and parses it (using a parsing lib) and ...
0
votes
1answer
125 views
Is it possible to use anything other than GridLayout on Eclipse preference pages?
The following simple preference page fails with a ClassCastException:
@Override
protected Control createContents(Composite parent) {
Composite container = new Composite(parent, SWT.NONE);
...
2
votes
4answers
630 views
How do I neatly indent some components using Java Swing layouts
Using Swing, what is the best way to indent some components underneath a checkbox or radio button? I need to make something in the style of Firefox 3.6's Options->Privacy dialog where some checkboxes ...
0
votes
1answer
444 views
Vertically expandable Composite
I'm building an SWT UI, and it has a window (Shell) with three Composites stacked one below the other. I want that:
all to expand to the maximum possible width (width of the window)
the first and ...
1
vote
1answer
3k views
How to set SWT label padding?
When i assign text to my Labels, they wrap around it very tightly, sometimes cutting the lower edges off 'p', 'y' and alike. I would like to have some padding between text and border. I am using a ...
1
vote
1answer
2k views
Layout issue: autogrow label (SWT)
I'm using a GridLayout trying to make a label autogrow without hiding anything of its content. Here's a simple code to test: Everytime I press the button the label text grows larger, but only after I ...
0
votes
0answers
915 views
SWT Layout for absolute positioning with minimal-spanning composites
I'm writing a DND-editor where I can position elemtents (like buttons, images ...) freely via absolute positioning. Every element has a parent composite. These composites should span/grasp/embrace ...
2
votes
2answers
4k views
Date time picker control
I look for date time picker control which look like this:
All controls which I found don't use system layout.
It would be great if this control use system style and layout.
1
vote
3answers
9k views
SWT update / redraw / layout problem
I know many people experience this problem, but the solutions I found online do not seem to solve mine. I have a composite that has three buttons. What I want is the following :
When I click one ...
4
votes
1answer
4k views
SWT: Nested Layouts with ScrolledComposite exceeds available space
I want to build a Master-Detail layout for one of my applications using SWT.
Container, Content, Sidebar and Part1 are Composite instances.
Scrolled is a ScrolledComposite
The desired layout is ...
0
votes
1answer
321 views
Vertical center a TextFlow in GEF
I'm trying to vertical center a multiline textbox within a RectangleFigure in GEF. It needs to be ajusted on resize.
This would be best done with a layout, but I can't figure out how that works.
I'm ...
