Tagged Questions
JFace is a Java application framework based on SWT, the Standard Widget Toolkit. The goal of JFace is to provide a set of reusable components that make it easier to write a Java-based GUI application.
9
votes
3answers
1k views
SWT/JFace or Eclipse RCP?
Which are the reasons to choose the Eclipse Rich Client Platform as the base of my application, instead of just using SWT/JFace?
9
votes
2answers
3k views
Eclipse JFace's Wizards
I need a wizard which second page content depends on the first page's selection. The first page asks the user the "kind" of filter he wants to create and the second one asks the user to create one ...
7
votes
4answers
712 views
Make JFace Window blink in taskbar or get users attention?
Hi folks
I wonder someone has any idea how to solve this:
In my Java Eclipse plugin there are some processes which take some time. Therefore the user might minimize the window and let the process run ...
5
votes
3answers
4k views
Proper way to bind a radio button group using JFace data binding
I was wondering if anyone could explain to me how I could properly bind a group of radio buttons to a boolean variable in the model using JFace data binding.
Let me explain the situation first: I've ...
4
votes
1answer
96 views
SWT Text widget: how to insert own MenuItems into the default context menu?
The default context menu for the org.eclipse.swt.widgets.Text class is quite a rich thing, packed with features that the user has come to depend on ...
However, as soon as I assign my own context ...
4
votes
3answers
456 views
“Quick find” for an SWT Table
I have a table that displays the output from a database, this can often be up to or over 10,000 rows. I'm looking to implement a 'quick find' function that will allow the user to easily scroll to a ...
4
votes
1answer
312 views
4
votes
3answers
1k views
SWT Table with variable row height: Working on Linux, but not Mac/Windows
Problem: I need an SWT Table (JFace TableViewer) with variable row height. In fact, I solved this on my development machine (running Ubuntu 10.10). Unfortunately, this doesn't work on Windows nor on ...
4
votes
1answer
417 views
Learning Eclipse RCP and SWT/JFace
I am new to to Eclipse RCP and SWT/JFace. I intend to purchase the Second Edition of the well known Eclipse Rich Client Platform book by Jeff McAffer, Jean-Michel Lemieux, Chris Aniszczyk. I wish to ...
4
votes
1answer
179 views
How to determine that a JFace or SWT Dialog is currently open?
In our RCP application, we need to resort to using a global key event handler (via Display.addFilter()) for more advanced key event handling/routing irrespective of current focus. We need to be able ...
4
votes
1answer
907 views
SWT table: auto resize all columns
Qt solution is a single call to resizeColumnsToContent(), in .NET one can use TextRenderer.MeasureText(), JTable could use AUTO_RESIZE_ALL_COLUMNS.
In SWT, is there a way to programmaticaly resize ...
4
votes
1answer
185 views
How would one use IDecorationContext api from Eclipse JFace
Is there an example out there for using IDecorationContext for label decorations?
By the looks of it, IDecorationContext class seems to provide some sort of contextual decoration support, but for the ...
4
votes
1answer
600 views
JFace question: How do I select all items in a ListSelectionDialog?
I create a JFace ListSelectionDialog as follows.
final ListSelectionDialog dialog = new ListSelectionDialog(
PlatformUI.getWorkbench().getDisplay().getActiveShell(),
...
3
votes
1answer
137 views
SWT event propagation
I'm trying to detect click events on a Composite control that contains a number of other composites. I tried:
topComposite.addMouseListener(new MouseListener() {
...
@Override
...
3
votes
2answers
389 views
Eclipse: OSGI Preferences vs. PreferenceStore
I'm working on an Eclipse plugin (or in fact, a plugin for an Eclipse-based application) which needs some configuration to be entered by the user.
From looking at the documentation, there seem to be ...
3
votes
1answer
369 views
Constructing a JFace TableViewer with EditingSupport for a mathematical matrix
Our application (Eclipse RCP-based, using a JFace/SWT-based interface) needs to support editing of mathematical matrices. The matrices are always square and can be any size from 2x2 to 11x11. ...
3
votes
2answers
1k views
how can I set the selection on a swt table using setSelection and setting reveal to false?
I'm trying to select some items in my table, but i DONT want them to be revealed.
The problem is that calling the method (seen below) automatically results in showSelected() being called inside of ...
3
votes
1answer
540 views
Resources for data binding with WindowBuilder with SWT/JFace
I just started creating a SWT/JFace application using the (now free) WindowBuilder from Google (previously instantiations).
I find the Data binding part difficult although it -should- make it easier ...
3
votes
1answer
409 views
Using JFace databinding with Hibernate: is this possible?
Our project is an Eclipse RCP application using Hibernate as an ORM. I recently learned about JFace databinding, in which the GUI and data models can be synchronized automagically.
I put together a ...
3
votes
1answer
764 views
Where can I download the javadoc for swt(Only)
Does anyone know where I can download the javadoc files for Swt and/or JFace?
I do not want the api docs for the rest of Eclipse. I found a place where the docs are available for reading online but I ...
3
votes
2answers
296 views
how to hide “help” image from wizard?
Do someone know how to hide such help image from my custom wizard?
setHelpAvailable(false) doesn't work, it hides "rectangular help button", not this image.
Thanks
3
votes
3answers
2k views
JFace examples in Eclipse like SWT Examples?
Are there any all-in-one JFace controls example out there like the SWT Examples in Eclipse? Searching (googling and searching here on stackoverflow.com) did not help me.
It would be nice if it was a ...
3
votes
1answer
412 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. ...
3
votes
2answers
713 views
Using a ILightweightLabelDecorator decorator
Having implemented one of the above, can anyone say how I might wire it up directly to a viewer? None of the usual sources explain.
Martin.
3
votes
3answers
3k views
Looking for a Combo(Viewer) in SWT/JFace which supports autocomplete
I'm looking for a Combo(Viewer) in SWT/JFace which supports autocomplete / type-ahead, i.e. the user can enter a couple of characters and the drop down list should show all matching elements.
3
votes
2answers
477 views
Eclipse JFace's Wizards (Again …)
Now that I am able to set the content of my second wizard's page depending on the first page selection, I am looking for a way to give the focus to my 2nd page's content when the user clicks the next ...
3
votes
3answers
4k views
How do I change the background selection color for a jface table
In a elipse-rcp application I am setting the background color for a row in a jface table but I don't want the selection to change this color. I want to be able to specify the color change for a ...
3
votes
2answers
3k views
Eclipse RCP, SWT, JFace: How to create a dialog that is modal only to a view (not the entire shell)?
Is there anyway to create a dialog that is modal to a view and not the entire shell (application)? So if say, I have one view called A that is overlaying another view called B, I want to open a ...
3
votes
4answers
4k views
How to get JavaDoc for SWT and JFace in Eclipse?
I'm a newbie to Eclipse and can't figure out how to get the JavaDocs for SWT and JFace to show up when I am editing.
How do I do this? Thanks!
3
votes
2answers
843 views
Layout problems by FieldEditorPreferencePage
I have following problems with layout settings in the FieldEditorPreferencePage.
My code is something like that:
public void createFieldEditors () {
Group pv = new ...
2
votes
3answers
31 views
SWT/JFace Minimize/Maximize EditorArea
I didn't manage to find any functionalities for minimizing/maximizing programatically.
I want to minimize my editorArea when all the editors are closed.
Any suggestions?
Thanks in advance.
2
votes
3answers
58 views
Exception when add data into TableViewer
I have 2 TableViewer controls in a composite (Supposed they are : viewer1, viewer2). When initialize application, one "viewer1" is filled data from server while "viewer2" is set null.
...
2
votes
1answer
53 views
TreeViewer selections and the Clipboard
Is it possible to place more than one object (which represent TreeViewer selections) into the clipboard? Here's my Cut code.
static public void Cut(EssentialData dataInst)
{
IStructuredSelection ...
2
votes
1answer
86 views
Java ComboViewer react on edit, KeyListener?
I am using a JFace ComboViewer in my Plugin. As a convenience feature I'd like to change the current selection just by starting typing.
For that I added a KeyListener to the underlying Combo Element
...
2
votes
1answer
53 views
Is it possible to get a Tooltip when hovering over one Cell in a JFace TreeViewer
I have a TreeViewer with three columns. The first column shows the name of an element, the second one property and in the third I would like to display an icon if another property is filled and show ...
2
votes
1answer
95 views
Java: theater seating chart
I'm looking for a solution (library) to generate and/or display a dynamic seating chart using Java (and Swing/JFace).
There should be possibilities to add color to single seats and for defining ...
2
votes
3answers
173 views
How do you get a TreeViewer in SWT to refresh properly?
I have an app that uses a JFace TreeViewer. I have it hooked up to a ContentProvider. Mostly, it works great. However, for some actions, like adding a Node in the middle of a list of Nodes or ...
2
votes
3answers
77 views
SWT needs to much lines of code
I wondering why swt is so inconvenient to use. We as programmers have to produce tons of unnecessary source code. Here an example.
Label label = new Label(parent, SWT.NONE);
...
2
votes
2answers
80 views
how to change appearance of ContentProposalAdapter
I'm using a ContentProposalAdapter to auto completion of a textbox, it work's OK, but I want change its appearance like font or background color of popup, and more, I searched but I can't find any ...
2
votes
1answer
332 views
How to right-align text in a SWT Table cell?
I have a SWT table which wrapped by the JFace TableViewer, but this problem also applies to org.eclipse.swt.widgets.Table.
When I use a StyledCellLabelProvider, the text is always left aligned, even ...
2
votes
1answer
66 views
TreeViewer with a Composite as content
I want to build a Tree with a custom bunch of widgets as content. So not only a simple label, but something more complex arranged in a Composite. Is this possible in current SWT/JFace (3.7)? If yes, ...
2
votes
1answer
125 views
Close JFace window on initialization
I have a JFace application with a list of files. A child window is opened when a user clicked on a file in the list. The child window automatically loads the file content into a Text widget.
Loading ...
2
votes
1answer
187 views
RCP/RAP: Link in SWT/JFace-TableViewer-Cell
Does anyone know a possibility to place a link in a JFace-TableViewer-Cell? I just need something that fires an event, when it is clicked on. Something that looks like a hyperlink would be perfect. ...
2
votes
1answer
130 views
TableViewer: how to force a selection change
When invoking tableViewer.getTable().selectAll() the registered selection listeners will not be notified (as usual for all kind of programmatic selection changes in SWT - according to my knowledge). ...
2
votes
1answer
596 views
TreeViewer.setSelection() does not select the correct item after the path given
If there are more tree items based on the same object in the tree viewer, making a TreePath and passing it to TreeViewer.setSelection() does not select the item correctly when the current selection is ...
2
votes
1answer
96 views
Should I dispose jface CellEditors returned from EditorSupport
Should I dispose CellEditor returned from EditingSupport.getCellEditor, and if so when should I do it.
On one of the tutorials on jface TableViewer i saw following snippet:
public class ...
2
votes
2answers
285 views
Non-Modal JFace Dialog?
Simply put: Is there any way to create non-modal JFace dialog? I've tried calling setShellStyle to no avail. If I remember right this isn't a problem in swing - is this a shortcoming of SWT, or am I ...
2
votes
1answer
389 views
SWT and JFace in stand-alone mode tutorial recommendation
could you recommend me some good one tutorial about using SWT and JFace in stand-alone mode.
2
votes
2answers
326 views
SWT: how to create a plain push button from an action
I need a Button build from an IAction. Should I do that myself or is there already something in JFace which I can reuse? Note, I need the button instance, because I want to make it the default button ...
2
votes
1answer
207 views
SWT open source applications gallery?
I'm new to SWT/JFace. I would like to know if someone could indicate real world apllications based on SWT/Jface but not on Eclipse RCP. I can see lot of examples (come of them very professional) of ...