0
votes
1answer
16 views
SWT version of: getOppositeComponent on focus change
In Swing you can get "the other Component involved in this focus change" from this: getOppositeComponent. There does not seem to be a similar call in SWT, does anyone have a workaround or fix for …
0
votes
1answer
19 views
How to remove “restore defaults” and “apply” button in custom RCP Preference Page
When creating a preference page in RCP, e.g. something like:
public class MyPreferencePage extends org.eclipse.jface.preference.PreferencePage implements IWorkbenchPreferencePage
how can I remove …
2
votes
1answer
27 views
Styling a SWT label to be italic
How would I go about styling a SWT label created along the following lines so it is displayed italicised?
Label label = formToolkit.createLabel(composite, "My label name");
1
vote
1answer
16 views
SWT: How to “render” a Widget in the background / into an offscreenbuffer
Hello Experts,
I would very much appreciate your advice and help:
How can I render a SWT Widget/Component in the BACKGROUND (offscreenbuffer?) and get the “painted” pixels that were drawn by the …
0
votes
0answers
22 views
PNG image with transparency on SWT
I've got a Composite and would like to use a png file as background image. I can do that, the problem is when the image uses transparency it doesn't work and shows a white colour instead. Any thoughts …
0
votes
0answers
13 views
OSGI + SWT: How to split the View (GUI) in many bundles
I'm writing a graphic application, with java, swt and osgi. The bundle A holds the application main window. Depending on the selection of the user, a different user interface must be loaded. That is, …
1
vote
1answer
41 views
Lazy and Deferred TreeViewer questions
Hello Everyone,
I have actually two questions but they are kind of related so here they go as one...
How to ensure garbage collection of tree nodes that are not currently displayed using …
0
votes
2answers
81 views
Mouse events on an SWT Scrollbar
Using standalone SWT Scrollbars is something of a hack (using this workaround), but it can be done. Here's a snippet:
ScrolledComposite scrolledComposite = new ScrolledComposite(
parent, …
1
vote
1answer
25 views
Is there a better way to use sorting and filtering with ILazyTreeContentProvider
Apparently if using ILazyTree(TreePath)ContentProvider sorting and filtering is not supported by TreeViewers. So setting ViewerFilters or Sorters/Comparators to your TreeView won't do any good. …
0
votes
2answers
64 views
Create a custom button with SWT
I would like to ask the same thing than this question but using SWT: Is there a way to make a Button with your own button graphic not just with an image inside the button? If not is another way to …
2
votes
3answers
98 views
Beautifying a SWT application on Mac
SWT is designed to be cross-platform, so it can run on a Mac. The problem is it commits the cardinal sin of Macland - it's UGLY. Toolbars don't look like Mac toolbars, status bars don't look like …
0
votes
1answer
26 views
add toolbar to section
Hello,
I want to add a toolbar to a section in SWT.
There is an example i saw in the PDE manifest editor.
How can i add this toolbar or buttons?
maybe i need to use a different control?
Thank you,
…
0
votes
2answers
66 views
Populating huge table in SWT/JFace RCP application
How would you go about displaying huge amount of rows in SWT table? Huge is something above 20K rows, 20 columns. Don't ask me why I need to show that much data, it's not the point. The point is how …
1
vote
8answers
187 views
Rapid switch to Java for an experienced C++ developer
I'm am looking for online tutorials/books, which assume a solid knowledge of OOP/Design patterns concepts and stress on differences (both conceptional and syntactical) between C++ and Java thus …
1
vote
1answer
132 views
How to implement a Google-chrome-like title bar for Java SWT application
I have inherited development of a Java/SWT application running on Windows only. One of the feature requests that I need to scope is a Google-chrome-type title bar in place of the SWT windows title …
