swt Questions
2
I’m pretty new in SWT/JFace technology and I’ve found a problem that it’s driving me crazy. In an Eclipse RCP application I have a view where I’ve placed a SWT tree with a JFace TreeViewer which pr...
Shod asked 22/1, 2014 at 9:9
4
Solved
Anyone know where I can download swt.jar?
2
Solved
I have this module that's being used in multiple parts of the application COMM (on the SWT Ui side , on the backend etc). This module has a method sendMessage in which I want to add a routine to de...
2
Solved
I'm attempting to draw a transparent mask of combined shapes over the top of an already in place image. I have provided an example of the techniques I'm trying via the dialog code included in this ...
Saunder asked 23/10, 2018 at 13:25
2
I am using below maven dependency to develop swt application.
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt</artifactId>
<ver...
1
Solved
With the help of this question I was able to figure out how I can display a link inside a StyledText widget in SwT. The color is correct and even the cursor changes shape when hovering over the lin...
1
I am working on Eclipse RCP application, I want to achieve the eclipse workspace job with a Dialog with the buttons like "Run in Background", "Cancel" and "Details". I tried all the options but all...
2
Solved
We use SWT browser in our java app to render HTML content. The problems arise when the environment has a very high resolution (4K). When the content has a such html:
<html> <head> <...
Sinistrality asked 16/5, 2018 at 7:33
4
Solved
I'm using a SWT DateTime component. It sets the current date as a default selection, when instanciated. How can i prevent this?
I want that no date is selected at all...
Thanks
Patrick
Attila asked 12/1, 2010 at 11:31
2
Solved
I'm trying to build a (nearly) platform independent SWT Maven archetype to build SWT applications out of. It should automatically download the needed SWT libraries depending on the platform. This i...
5
I have following problems with layout settings in the FieldEditorPreferencePage.
My code is something like this:
public void createFieldEditors () {
Group pv = new group(getfieldEditorParent(), ...
Hanyang asked 29/1, 2009 at 0:20
13
Solved
I'm trying to debug this problem but not sure where exactly i need to replace SWT jar file for Eclipse.
Current System Config:
Eclipse Helios 3.6 - 32 Bit
JDK 1.6
JVM - 32 Bit
Windows 7 - 64 B...
Bowery asked 13/6, 2012 at 20:12
3
How to do vertical scroll of SWT table programatically?
I'm implementing search function on the table. When an item was found then it will be scrolled to the item found.
Wedged asked 20/8, 2010 at 13:9
2
Solved
I need to hide a composite (and all children inside). Just setting setVisible(false) will keep the space of the composite.
Composite outer = new Composite(parent, SWT.NONE);
outer.setLayout(new G...
3
I'm trying to get Office 2007/2010 application embedded inside a Java application using SWT using the following code:
import java.awt.Canvas;
import javax.swing.JFrame;
import org.eclipse.swt.SWT...
3
Solved
The Info.plist of our Java-based application contains following entries:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.d...
1
TL;DR
Based on Thomas Schindl's article JFace-Viewer and Eclipse Databinding with > 10.000 Objects (which suggests a very good idea), I'd like to convert a regular TreeViewer + multiple ITreeConte...
Prothonotary asked 19/3, 2017 at 18:52
4
Solved
How do I set the background of a control to be transparent?
I am speaking of Label and Text controls at the moment, but can be any of the standard controls that I see in the GUI.
Furrier asked 7/1, 2014 at 15:50
2
I have this JFace dialog:
setShellStyle(SWT.APPLICATION_MODAL | SWT.CLOSE);
setBlockOnOpen(false);
Is there a way to make it close by clicking somewhere outside the dialog?
Maybe something like ...
3
I am confused and don't know which to select: SWT/JFace or JavaFX. Which one is better? I know that SWT is native, but is JavaFX native or not? Is it important to use native UI, or is JavaFX the be...
Freed asked 8/11, 2011 at 8:0
1
Solved
In order to be able to use my Eclipse plugin "treezCore" also as a Java9 module I created a module-info.java in my src folder.
Furthermore, I moved the Plug-in Dependencies from the Classpath to ...
Butacaine asked 12/12, 2017 at 12:49
4
my RCP application (Video-Player with OpenCV java) throws the famous:
org.eclipse.swt.SWTError: No more handles Error
So now I found Sleak and a tutorial
I tryed the first way, but when I start ...
4
Solved
Group group = new Group(parent, SWT.NONE);
StyledText comment = new StyledText(group, SWT.BORDER_DASH);
This creates a group with a text area inside.
How can I later delete the text (remove it f...
4
How do I create an in-memory fully transparent SWT image and draw a black line on it with antialias enabled?
I expect the result to include only black color and alpha values ranging from 0 to 255 ...
4
Solved
I develop Eclipse RCP application and got a problem with a Table. We have some data in database in boolean format and users wants to see that field using checkbox.
I tried to implement it using Bu...
Tyranny asked 23/1, 2012 at 7:27
© 2022 - 2024 — McMap. All rights reserved.