1
vote
2answers
44 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 bar …
0
votes
1answer
18 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(
…
1
vote
8answers
171 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++ …
0
votes
0answers
13 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 applica …
0
votes
1answer
39 views
Add an SWT widget to a swing JPanel
I understand that this may be impossible, but I would sure like to know if somebody has accomplished this, or have a work-around.
I have an SWT Button and am wanting to overwrite …
0
votes
0answers
24 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 on …
1
vote
2answers
27 views
Drawing into an Eclipse editor
I am trying to draw some shapes (boxed ans arrows) into, i.e., "over" the text in an eclipse editor. To get started, I wrote the following code:
IWorkbenchPage activePage = …
0
votes
1answer
20 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 …
0
votes
2answers
41 views
Turning on anti-aliasing in SWT
I've called gc.setAntialias(SWT.ON); and it does nothing. According to that method, it should work.
The Javadoc states:
Sets the receiver's anti-aliasing
value to the param …
0
votes
2answers
33 views
GWT + OSX = SWT issues
I'm new to GWT development and I'm putting myself through the paces with Google's tutorial but I'm getting errors:
java[10574:80f] [Java CocoaComponent compatibility mode]: Ena …
1
vote
1answer
24 views
Adding item to Eclipse text viewer context menu
Hello. I am developing a plugin for eclipse. In this plugin I need to be able to add an item to the context menu in the text editor. So far I have been unsuccessful in this, does a …
2
votes
5answers
234 views
Does Eclipse look like native GUIs?
I am currently reading about SWT. There is often written, that Eclipse as an SWT application looks like the standard GUIs of the host platform or OS. But I dont think so. At least …
1
vote
1answer
159 views
how to make a jar file that include dll files
hi all,
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how c …
0
votes
1answer
21 views
SWT Cross-Platform Enter Detection
Hi,
I have a global filter (Display.addFilter) in SWT in which I want to detect Enter key. In Windows, pressing Enter generates SWT.CR in 'keyCode' part of KeyListener event. Is th …
1
vote
2answers
22 views
SWT standalone scrollbar widget
Is there a way to create a "standalone" scrollbar in SWT? I would like to have a scrollbar which I have full control over myself and use it to control the contents of another widge …
