Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 274378 Details for
Bug 535657
[GTK 3.22] Combo overlaps with label on resize
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
SWT snippet to reproduce the problem with. Shrink shell width to observe the problem.
BugComboOverlapsWithLabelOnResize.java (text/x-java), 1.88 KB, created by
Simeon Andreev
on 2018-06-07 12:01:59 EDT
(
hide
)
Description:
SWT snippet to reproduce the problem with. Shrink shell width to observe the problem.
Filename:
MIME Type:
Creator:
Simeon Andreev
Created:
2018-06-07 12:01:59 EDT
Size:
1.88 KB
patch
obsolete
>package swt.problems; > >import org.eclipse.swt.SWT; >import org.eclipse.swt.layout.GridData; >import org.eclipse.swt.layout.GridLayout; >import org.eclipse.swt.widgets.Combo; >import org.eclipse.swt.widgets.Composite; >import org.eclipse.swt.widgets.Display; >import org.eclipse.swt.widgets.Group; >import org.eclipse.swt.widgets.Label; >import org.eclipse.swt.widgets.Shell; > >public class BugComboOverlapsWithLabelOnResize { > > public static void main(String[] args) { > Display display = new Display(); > Shell shell = new Shell(display); > shell.setSize(400, 200); > shell.setText("Bug_odd_combos_on_resize"); > shell.setLayout(new GridLayout()); > > createGroup(shell); > > shell.open(); > > while (!shell.isDisposed()) { > if (!display.readAndDispatch()) > display.sleep(); > } > display.dispose(); > } > > private static void createGroup(Composite parent) { > Group group = new Group(parent, SWT.SHADOW_IN); > > group.setText("some group"); > GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, false); > gridData.horizontalSpan = 2; > group.setLayoutData(gridData); > > GridLayout gridLayout = new GridLayout(2, false); > group.setLayout(gridLayout); > > class LabelAndText { > String labelText; > String comboItem; > > LabelAndText(String labelText, String comboItem) { > this.labelText = labelText; > this.comboItem = comboItem; > } > } > > LabelAndText[] texts = { > new LabelAndText("Some label text: ", "some text"), > new LabelAndText("Some label text: ", "some long combo text"), > new LabelAndText("Some label text: ", "some text"), > }; > > for (LabelAndText text : texts) { > Label label = new Label(group, SWT.NONE); > label.setText(text.labelText); > Combo combo = new Combo(group, SWT.READ_ONLY | SWT.DROP_DOWN); > GridData comboGridData = new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1); > combo.setLayoutData(comboGridData); > combo.add(text.comboItem); > } > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 535657
: 274378 |
274379
|
274380