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.
0
votes
1answer
26 views
How to synchronize changes in Eclipse RCP?
I have a view with a tableviewer and another one with a text widget. When I select something in table viewer the text selected is shown in the text widget and I can edit that text. How can I update ...
0
votes
0answers
12 views
Controlling selection of row in GridTreeViewer (TreeViewer)
When I programmatically selecting a row in a GridTreeViewer:
StructuredSelection s = new StructuredSelection(model);
gTree.setSelection(s, true);
The selection is made of the whole row:
Is there ...
-1
votes
1answer
6 views
How to change border color of a Jface Dialog(or TitleAreaDialog)?
I'm tring to change the border color of a TitleAreaDialog.
But after research found no support for this attempt.
0
votes
0answers
13 views
ViewerSupport.bind doesn't work correct with entities
In my RCP-Application I have a TableViewer which is bind to a WritableList of persons:
input = new WritableList(ModelProvider.INSTANCE.getPersons(), Person.class);
ViewerSupport.bind(viewer, input, ...
1
vote
1answer
31 views
Style TreeViewer's scrollbar
I have an editor that has both draw2d tree and Nebula's GridTreeViewer (basically a JFace TreeViewer). What I need is working, except scrollbars. In draw2d I get scrollbars provided by ...
0
votes
0answers
25 views
SWT treeviewer contentprovider
I am trying to modify a tableviewer to a treeviewer in order to add some parents to the elements in the list, and I have used the same tableviewer of tableviewer but I implemented ...
0
votes
2answers
13 views
Properties editor Ui to use in swt/jface application
I am currently working on a project where i have a need to integrate/build a properties editor (like Jboss tools properties editor open in eclipse for editing hibernate configuration files) in my ...
0
votes
1answer
16 views
How to make a TableEditor editable when there is nothing in it
I am having a problem with the TableEditor in SWT. I am working from the code in this link:
...
0
votes
0answers
18 views
Jface ContentProposalAdapter not working on first typed char
I'm trying to make field-assisting for a Text widget I'm using in a SWT/JFace application.
I have a ModifyListener added on the Text component, and when this is triggered by a ModifyEvent, the ...
0
votes
1answer
13 views
JFace TreeViewer restore selection
I'm doing my first RCP example using the TreeViewer for directory browsing.
My work did start from the example http://www.ibm.com/developerworks/opensource/library/os-ecgui1/
For the TreeViewer of ...
-1
votes
2answers
42 views
Style of the Button in SWT/JFace [closed]
I am new to SWT/JFace development. I am trying to change the style of the
Button displayed in the JFace Dialog Box like color, font, size and add image to the button.
for e.g; i have to create a ...
0
votes
2answers
24 views
java.lang.NoClassDefFoundError: Fast way to add lots of classpath variables at once
I'm getting tons of errors when I try to run a baby SWT/JFace application. EEach error disappears - and is replaced by a new one - as soon as I go into the BuildPath and add a Variable to satisfy what ...
0
votes
2answers
25 views
Eclipse RCP authentication
I would like to know how to implement authentication in Eclipse RCP. I have started an app and I have two views, one for admin and one for a regular user. At startup I want to show the login dialog ...
0
votes
1answer
10 views
Jface TreeViewer diposed during refresh()
what if I do a viewer.refresh() at the same time I close the tree viewer on the UI.
What will happen and how I can handle this situation?
thanks,
0
votes
1answer
30 views
Can't compile a simple JFACE program; java.lang.NoClassDefFoundError
I am trying to run a very simple JFace program:
import org.eclipse.jface.window.*;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
public class HelloSWT_JFace extends ApplicationWindow{
...
1
vote
1answer
45 views
How can i use form toolkit to change the bordercolor of composite?
I want to change the border color of the composite using form tool kit.But the result is something unexpected.It sets the background to white.
CODE:
FormColors formColor = new ...
0
votes
1answer
40 views
Problems occurred when invoking code from plug-in: “org.eclipse.jface” - Export Deployable Eclipse plug-in
I'm building an eclipse plug-in. Execution env is JavaSE-1.6
I can deploy the plug-in without any errors, but when the plug-in runs there is an error coming out of it:
"Problems occurred when ...
0
votes
1answer
17 views
get error list from org.eclipse.jface.text.Document
I want to get from my document (org.eclipse.jface.text.Document) or from my plugin workspace the list of the errors that occur on the document which can be found in the Markers view in eclipse , if ...
0
votes
1answer
30 views
Eclipse jface tableviewer - changing celleditor at runtime
I am using a Table Viewer with cell editors... one is a ComboxBox and the other one is a textcell editor... At runtime based on the selection in the combo box i want to change the other cell editor to ...
0
votes
0answers
45 views
How can change the validators of textbox depending on radiobutton selection?
I want to change the textbox validatrs depending on radio button selection.In 1st selection i want the text field to be 16bits long in 2nd selection it should be 32bits long.So thats why i have tried ...
0
votes
0answers
11 views
View XML in view and changes in view change the XML
I am working on a eclipse PDE application.
I took some help from this link which helped me in creating a JFACE WIZARD.
http://www.eclipse.org/articles/article.php?file=Article-JFaceWizards/index.html
...
1
vote
1answer
25 views
How can i change the information icon in progressbardialog?
I want a dialog box where i can show the progressbar like eclipse progressbar.But i donot want the information icon.In that place I want to place a widget .So i am extending progressbardialogclass. ...
0
votes
1answer
45 views
java radio buttons in jface automatically setting the first button to true
Here is a puzzler, every time I create a group of radio buttons in SWT/JFace, the first button is always true, but if create a standard button and call it to reset the radio button it will reset to ...
0
votes
0answers
18 views
Separation of content from presentation in JFace Editor
Requirement: I am developing an Eclipse editor. I am extending the JFace text editor for this purpose. The requirement is that the editor should be able to hide semantic text. For example:
Input ...
0
votes
1answer
31 views
JFace TableViewer Listener to deselect previously selected row
Does anybody knows any how to deselect row in TableViewer but in case of second click to this row (means if i click on row which was previously selected) ?
By default 1st click marks this row ! , but ...
0
votes
1answer
27 views
JFace TreeViewer, how to notify the tree, when some empty folder was popluted
I build a TreeViewer with a tree structure advisor like this:
public class ExplorerTreeStructureAdvisor extends TreeStructureAdvisor {
@Override
public Object getParent(Object element) {
...
1
vote
1answer
53 views
Listener to tell if a table has an element in it
I'm working on a Java project using SWT/JFace. I have a Table that is using a TableViewer. The table will only ever have 0 or 1 items in it (depending on the data it's viewing...). Is there a way to ...
0
votes
1answer
40 views
Retrieve widget from TableItem
I built a Table (org.eclipse.swt.widgets.Table) and used a TableEditor to add 2 checkboxes on each TableItem (row).
TableItem tableItem = new TableItem(tableClientes, SWT.NONE);
TableEditor editor = ...
0
votes
0answers
69 views
How can i add tooltip for specific column in a table viewer?
I want to add a tooltip for the specific column in table viewer.I want each column tooltip top be different and in some case i donot want tooltip at all. Below i have pasted some code but i am ...
0
votes
0answers
14 views
How to make a jface table cell incrementor
So I am making a jface table, in one of the columns I want to increase or decrease a number with up and down arrow keys. I found exactly what I want to do in the eclipse run configurations. As you can ...
0
votes
0answers
46 views
Binding a number of text areas to a list
This is my first time posting so apologies if I get something wrong.
I'm working on a Java project using SWT and JFace. Basically within the program, the user can input ideas. These ideas can then ...
0
votes
1answer
59 views
Data binding between SWT and Xtext
I am building a plugin for eclipse that provides a graphical editor.
In this editor, I want to bind some data between an XText model and the SWT widgets. How can I do this while updating the ...
0
votes
1answer
33 views
How to get cursor column location in an eclipse TextEditor
I want to develop an eclipse plugin and need to do some operation based on cursor location in a texteditor.
It seems easy to get cursor's line location, see:
How to get cursor position in an eclipse ...
0
votes
0answers
48 views
No More Handles Exception for getImage in ColumLabelProvider
I know that there are several other threads talking on SWT on No More Handles errors, e.g., SWT No More Handles.
However, I am facing a problem I have when I use a ColumnLabelProvider for a ...
2
votes
1answer
57 views
How can i get a balloon in my custom tool tip?
I am creating a custom tooltip where i have a textbox.I am able to do that but i could not get balloon like icon as in the attached picture .Can anyone help me regarding this.
Mytooltip class:
...
0
votes
0answers
11 views
Select arguments in method during content assist
I am writing content assist implementation for DSL editor. What part of Content Assist API is responsible for selecting and advancing through argument list in method using tab as shown below when ...
0
votes
1answer
20 views
How to add a seperator between two TreeTable ini jface
I have created an eclipse plugin project using one of the sample templates available. I want to have two viewers side by side. I am able to accomplish this. But the thing is..there is no seperator as ...
0
votes
2answers
75 views
How can i expand a textfield when it's in focus and when it's out of focus it should collapse?
I want to use a text field which will expand when the user enters some data and when the user is done editing and move out of text field than it should collapse. After that when ever user focus on ...
0
votes
0answers
24 views
How can I add JFace source in Eclipse
According to http://wiki.eclipse.org/JFace I should find JFace source in plugins\org.eclipse.rpc.source_<version>.
.21. Now press the Extension... button. This will open the Variable ...
0
votes
1answer
19 views
Can I use Jface to build an editor to plug in in my application?
I want to create an editor just like an Eclipse editor and want to plug that editor in my JSP page.
Is it possible to do so using JFace?
I looked at the following example but not sure if this will ...
0
votes
1answer
26 views
eclipse field editor for password
I have a preferences page that has some StringFieldEditor to hold different values. One of them is meant for password. I want the password to be displayed as asterisk or some other special character. ...
0
votes
1answer
107 views
eclipse rcp:how to pass selection into handler
I have a view part in my ecp application, it just contains a TreeViewer.
each tree node has a action provider which will contribute to the context menu when the node is right clicked:
MenuManager ...
1
vote
1answer
69 views
JFace ColumnWeigthData causes parent to grow
I got an Eclipse RCP app and want to use dynamic column size in a TableViewer using ColumnWeigthData as ColumnLayoutData. Problem is that the parent form (ScrolledForm in example code) grows a few ...
1
vote
1answer
88 views
How can i disable a button when the model is not updated?
In my UI i have 2 text field and and 2 buttons .I am using jface data binding to bind the text field and i am doing the validation and depending on the validation success the model is updated other ...
0
votes
1answer
67 views
resize/grow jface treeviewer dynamically
Is it possible to resize/growthe Jface treeviewer dynamically ?
I mean we have a composite and treeviewer has some contents, and user is clicking on the expand button to expand the contents, now ...
0
votes
1answer
36 views
SWT Table switching using SWT/Jface
I have table which get's loaded when application starts. This table is created in composite. Now i have another function search button which will populate the same table based on search input. I am ...
1
vote
1answer
62 views
JFace dialog button translation
I am creating a standalone SWT/JFace application.
I used to use plain old SWT MessageBox:
int style = SWT.APPLICATION_MODAL | SWT.YES | SWT.NO;
MessageBox messageBox = new MessageBox (getShell(), ...
0
votes
1answer
47 views
Render index of duplicate elements at table using JFace
I have been trying to render table using jface.
the issue is one of the columns I render holds the index of the element inside the array.
I do the follwoing:
TableViewerColumn tableViewerColumn = new ...
0
votes
1answer
21 views
jface.resource.ImageDescriptor - How to tell which kind of file properties will be properly displayed?
I am desperate.
I have the following code in my application to load PNG files:
public static Image loadImageFromLocal(Class<?> clazz, String fileName) {
ImageDescriptor imageDesc = ...
0
votes
1answer
40 views
varying sizes of rows in table for any particular column using swt/Jface
Please let me know how to get varying sizes of rows in table for any particular column using swt/Jface?

