Tagged Questions
0
votes
1answer
109 views
How to handle Windows key press with SWT AWT, minimize window and go back to desktop
For my firsts steps with SWT (and more generally with Java), I try to make a simple app with few basics components. It's a simple window which maximise with NO_TRIM.
Now I want to write an ...
0
votes
1answer
73 views
Xlib: unexpected async reply (sequence 0x1cb4)!
I am unable to run Windows tester on SLED 10 machine. When I try to run test as JUnit plugin-in-test, eclipse launches and I see Xlib: unexpected async reply (sequence 0x1cb4)! error in console and ...
0
votes
0answers
56 views
SWT global DragStart detection
I have a problem with lotus notes (SWT). I want to create a Drag and Drop feature, which droppes files onto a SWT.Mozilla Browser.
I need to decide, if the drag was startet within notes (an email or ...
11
votes
2answers
627 views
JAVA SWT/AWT Eclipse Mac OSX Java Cocoa CompatibilityMode Enabled
I'm developing a fairly complex Java application mixing Swing and SWT. Whenever I start the application, this is the console output (and the app doesn't show up):
2012-12-19 12:45:45.359 ...
0
votes
1answer
338 views
SWT - AWT Bridge
Main GUI is SWT based. I am running a print operation from a printPDF class with a button click.
public void startPDFPrint() throws Exception {
Display.getCurrent().syncExec(
new ...
2
votes
1answer
222 views
SWT UI Thread is not Responding - Printing Error
I have a Print Button in my SWT TitleAreaDialog.
viewPDFButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
try {
...
-1
votes
1answer
220 views
How to embed a jframe in an eclipse view [duplicate]
Possible Duplicate:
Any way to embed a Swing JFrame in the AWT Frame from the SWT_AWT bridge?
I have an RCP application with many views.
I have a class which extends JPanel and draws some ...
2
votes
1answer
244 views
Copy Image to Clipboard not working on Linux (Java AWT & SWT)
I am developing an Eclipse RCP Application which includes JFreeChart. One of its features is to copy graphs to the clipboard in order to paste them into other applications but it does not work on ...
1
vote
3answers
284 views
How to show message by messages from main class in UI window?
Unfortunately I can't do step by step output in the main program window (object g).
Part of main class:
/* Create a main window of GUI*/
Gui g = new Gui();
g.showitself(); ...
2
votes
5answers
453 views
Graph visualization libraries for SWT/AWT
Is there a mature, solid open-source graph visualization library implementation for SWT or AWT (I am referring to sets of vertices connected with edges, not charts and diagrams)?
Which one do you ...
0
votes
1answer
211 views
SWT_AWT.new_Frame: JComboBox never lose focus when window is moved
I do have a strange focus problem when using a JComboBox inside an embedded frame.
i created a new Shell like
shell = new Shell(display.getActiveShell(), SWT.SHELL_TRIM | SWT.APPLICATION_MODAL);
...
6
votes
3answers
1k views
is there an equivalent in Java for fieldset (HTML)?
Is there an element in Java (i.e. Swing/AWT or SWT) that is equivalent to the HTML element fieldset? Thanks
0
votes
1answer
105 views
Need to validate for invalid xml characters in SWT/AWT Text box
I have a window that has textbox, with OK and Cancel buttons.
upon clicking Ok button, I need to validate the entered text contains invalid xml characters and show a warning popup message.
I am able ...
3
votes
3answers
2k views
How to draw a tree (Swing / AWT / SWT / JFace)?
I want to display a tree in a Java GUI, but I dont know how!
I should say that i have my own tree class
like this:
...
1
vote
1answer
285 views
SWT - get actual screen position of an image
I have drawn an image on a Composite using the following code
imageCanvas = new Composite(shell, SWT.BORDER);
//adding paintListener to the canvas
imageCanvas.addPaintListener(new ...
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
360 views
JAXB marshal/unmarshal - ing SWT.Image or AWT BufferedImage
I am trying to marshal with jaxb an object which contains an Image, and afterwards unmarshalling it (i.e. save/load).
Is there a way to store that image?
I am trying to create a function which ...
2
votes
3answers
355 views
Java - Building GUI for application
I've written a lot of Java applications over the years, but the vast majority of them have been simple command line programs with only a few hundred lines and (at most) several classes.
My question ...
2
votes
2answers
644 views
SWT and AWT, what is the difference?
I understand that this question is rather general and kind of a holy war. Could you explain to me why SWT is successful when AWT is not, while these two frameworks use the same idea of native ui ...
0
votes
2answers
1k views
How to convert BufferedImage which has a ComponentColorModel to SWT ImageData?
This SWT snippet converts a BufferedImage to SWT ImageData:
static ImageData convertToSWT(BufferedImage bufferedImage) {
if (bufferedImage.getColorModel() instanceof DirectColorModel) {
...
2
votes
1answer
786 views
Android Dalvik, supports general Java Swing, Awt, Swt, Gwt, SwingX, ApachePivot?
For my Eee pad transformer, i am trying to write general Java code. But will it be same if i have Swing, Awt, Swt, Gwt, SwingX, Apache Pivot GUI's?
146
votes
9answers
61k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot? [closed]
There is quite a lot of gui frameworks out there for java, but what is reckognized as todays framework of choice?
The following is my understanding of the different frameworks, please correct me if ...
2
votes
0answers
177 views
SWT/AWT integration: alternatives to or further development of Albireo
There is quite a lot of manual work needed to improve SWT/Swing integration when using SWT_AWT bridge. Albireo project was intended to fix this, but it's now archived. Is there any alternative? Or is ...
8
votes
5answers
45k views
Create GUI using Eclipse (Java) [duplicate]
Possible Duplicate:
Best GUI designer for eclipse?
Is there any Eclipse Plugin tool(s) who can help to create Graphical User Interface for (swing, awt or swt), because I'm tired of writing ...
4
votes
1answer
747 views
Conversion from BufferedImage to SWT Image
After much looking, I found a bit of code that converts a BufferedImage to a SWT Image (don't bother reading it yet):
public static ImageData convertToSWT(BufferedImage bufferedImage) {
if ...
1
vote
0answers
178 views
Why SWT Shell won't get expanded when using SWT_AWT bridge, linux?
I'm using it in Applet. Here is source of init function:
java.awt.Canvas awtParent;
setLayout(new java.awt.GridLayout(1, 1));
awtParent = new java.awt.Canvas();
add(awtParent);
display = new ...
3
votes
2answers
417 views
SWT vs AWT in image file process performance?
In server side image process, should I use AWT or SWT?
I think AWT maybe too abstract away from the actual image data bits, so I guess SWT maybe slightly faster.
Or do you suggest another open ...
0
votes
1answer
467 views
Any way to embed a Swing JFrame in the AWT Frame from the SWT_AWT bridge?
I'm integrating a Swing application into an Bioclipse/Eclipse plug-in, and since Eclipse uses SWT, I have to use the SWT_AWT bridge somehow.
The problem is that the starting point I get from the ...
2
votes
1answer
371 views
How do I create a C64 style loading screen in Java (Swing/SWT/AWT)?
I was thinking of doing a commodore 64 style loading screen (with the alternating bars that change colour and grow/shrink in size) and was wondering if anyone has tried this or knows of any code I ...
2
votes
4answers
922 views
Converting an AWT application to SWT/JFace
I am currently toying with the idea of converting a small/medium sized project from AWT to SWT, although Swing is not totally out of the picture yet.
I was thinking about converting the main window ...
2
votes
1answer
311 views
Java Arabic (Hirji) Calendar
I've been trying to find good international Calendar support (Hirji included) for a mobile app. My main constraint is that the JVM is 1.3 and we've got AWT only. There is an option to move over to ...
1
vote
1answer
1k views
Video Swing JPanel Within SWT View
I'm building an Eclipse RCP application. I want to embed a video feed on one of the views. I'm using the Java Media Framework to build the video feed. Yes, my job requires me to be a masochist.
...
1
vote
1answer
340 views
JTextPane in a JScrollPane doesn't react to mouse wheel
I used the following structure in my (SWT) java app:
org.eclipse.swt.widgets.Composite contains a
org.eclipse.swt.custom.CTabFolder.CTabFolder contains zero to n
org.eclipse.swt.custom.CTabItem ...
4
votes
3answers
320 views
IPhone password field in AWT/SWT?
I want to create a special Password Dialog for my eclipse product, which is used with an on screen keyboard.
It would be very nice, if i could use a component like the IPhone Password field. In this ...
0
votes
1answer
71 views
Is GC drawing on top of an SWT_AWT Bridged frame possible?
I am trying to do something of this sort with no luck.
Composite c = new Composite(shell);
JFrame frame = SWT_AWT.new_Frame(c);
GC gc = new GC(c);
c.fillRectangle(0, 0, 100, 100);
code runs fine but ...
0
votes
0answers
154 views
java novice migrating objects from Swing to SWT
I am in the middle of converting an application that uses swing and awt to draw things to SWT. Since it's sort of overwhelming I'm going through, replacing all references to "awt" to the corresponding ...
0
votes
2answers
183 views
Can Swing components under SWT be accelerated?
When using the SWT/AWT bridge to draw Swing components inside an SWT application, can these components benefit from AWT's hardware acceleration?
0
votes
2answers
188 views
What GUI toolkit is Cisco's ASDM written in?
I like the way ASDM on a ASA5505 works very much. Would anyone know what GUI toolkit did Cisco use to develop it?
0
votes
2answers
765 views
Workflow UI in Java
Does anyone know of a Java (Swing) based UI framework for building a Workflow application?
-Users are given a set of activities
-They can drag and drop these activities
-Link activities to each other ...
1
vote
1answer
440 views
Modality issue in SWT_AWT bridge
I am using EmbeddedSwingComposite (built on SWT_AWT bridge) which is mentioned in the following article :
http://www.eclipse.org/articles/article.php?file=Article-Swing-SWT-Integration/index.html
...
0
votes
5answers
2k views
Java UnsatisfiedLinkError when mixing AWT and SWT?
I'm an Eclipse newbie and I'm trying to build a mixed AWT/SWT application. Here's my code:
public class HelloWorldSWT {
public static void main(String[] args) {
Frame frame = new ...
4
votes
1answer
4k views
Find composite location on screen
I am implementing a on screen keyboard in Java for SWT and AWT.
One important thing is to move the keyboard to a position where the selected text field can show and is not lying behind the on screen ...

