0
votes
0answers
2 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, …
0
votes
0answers
8 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
16 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 …
2
votes
1answer
24 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
21 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. …
1
vote
1answer
33 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
1answer
25 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
53 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 …
0
votes
0answers
7 views
linkActivated is not called from IHyperlinkListener class on SLED11
Hello, I used the IHyperlinkListener class to implment links on a composite. The linkActivated() was called correctly when I did a mouse click on the Windows OS.
However, when I did a mouse click on …
0
votes
2answers
70 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, …
2
votes
3answers
97 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 …
1
vote
8answers
185 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 …
0
votes
0answers
19 views
How do I run the SWT Win32 extension example program locally?
I am looking into using the SWT Win32 Extension. I downloaded the extension jar files, and the example code. However, I couldn't find how to run the example. When I run the application with their jnlp …
0
votes
2answers
43 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 …
0
votes
1answer
38 views
swt GUI performance problem on linux.
We have a monitoring application built on swt and running on linux. we have few buttons and a dynamic part that changes as we click on these buttons. The problem is that if some ones click too rapidly …
