0
votes
0answers
15 views

WindowTester - Accessing file system (tree) item in a rcp client

I am wondering weather it is possible to reach tree elements in a Java RCP-Client which display a file system by using googles windowtester pro. The tree (swt widget) shows my local file system ...
-1
votes
3answers
133 views

Getting the correct coordinates of all nodes to paint a tree

Hello stackoverflow community, I have the following problem. Lets say I have a tree where each node has a variable amount of children (where leafs of course have 0 children and other nodes 1 to ...
0
votes
0answers
49 views

Not able to implement drag and drop; dragSetData not getting called

I am trying to incorporate a drag-and-drop feature with our product. I have created a new custom view which has a tree structure and am interested in dropping the content from this tree to an already ...
0
votes
1answer
71 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 ...
1
vote
1answer
131 views

how to change colour of label in swt tree editor

I have a TreeEditor and some text in its first column. I need to append some text to it using a label or string. In addition, I want to change the color of the appended string to green. I tried to ...
0
votes
1answer
52 views

SWT Tree in a ScrolledComposite

I have been trying for some time to create a dialog which contains a composite. The composite has the ability to add horizontal and vertical scrollbars if it becomes too small to show its content. ...
0
votes
2answers
154 views

SWT: prevent Tree from expanding by doubleclick?

I have a problem with SWT Tree. My situation is like this: I have a SWT Tree, which contains many TreeItems (Log entries), which contain TreeItems too. Those log entries have really long messages, ...
1
vote
2answers
118 views

SWT Tree population

I have an SWT tree I've populated from a 2d array list but it's not coming out quite right. I'm trying to group the top tree items by item number, and I'm not having any luck with my algorithm. I've ...
2
votes
1answer
301 views

How to use CheckboxTreeViewer properly?

I'm facing the problem, that a implemented CheckboxTreeViewer works perfect on Linux Debian, but under Windows doesn't. First of all I don't understand the concept of "setGrayed()".. Is it to show, ...
0
votes
1answer
87 views

how to make a specific level of a SWT Tree editable

I have SWT tree which has child. Now I want to provide a right click menu and on click of the menu want to make 1st level of the Tree editable (the name of the tree) as shown in the diagram. I want to ...
2
votes
1answer
71 views

How to set Cursor to a Particular Cell of a SWT Tree

I have a SWT Tree, and I want to set the cursor to a particular cell of that SWT Tree. I have access of TreeViewer. The screenshot below shows the cursor at column 1. I did it manually, but I want to ...
0
votes
1answer
603 views

How to set double click to edit a Table cell in SWT/JFace?

Is it possible to change the default behavior of SWT/JFace to enable cell editing only with double clicking? The way it is now (with single click) is hard to select a table row without bringing the ...
2
votes
1answer
135 views

why dashed lines disappear in SWT.Tree when Tree's style set to FULL_SELECTION

See the demo code in java2s's Tree demo code. If I change the Tree's sytle to SWT.FULL_SELECTION, the dashed lines that are connecting the nodes disappear. What should I do to make the dashed lines ...
0
votes
2answers
144 views

Tree not occupying entire parent composite

I am trying to display a SWT Tree in a Group composite within a SashForm. The SWT Tree is not filling up the entire Group composite on startup, but it does, once I re-size the SashForm. I am getting ...
1
vote
3answers
430 views

How to attach data to TreeItem in SWT/Java?

I'm starting to use the SWT GUI toolkit in Java. I have a need to attach some data to the TreeItems. Each toolkit I've previously used had a tree item, which contained a raw pointer or a base object ...
0
votes
1answer
292 views

How to parse xml to tree using SWT or Jface? And How to synchronize the tree and the xml?

I'd like to build a tree like following using SWT or JFace: http://publib.boulder.ibm.com/infocenter/adiehelp/v5r1m1/topic/com.ibm.etools.xsdeditor.doc/images/ncalxml.gif How to build the tree base ...
1
vote
1answer
205 views

How to trigger setData event programmatically on SWT tree in VIRTUAL mode

is it possible to trigger setData event programatically on SWT tree in VIRTUAL mode?
0
votes
1answer
402 views

programmatically scrolling a TreeViewer in SWT

I have two TreeViewer components. The horizontal scroll bars have to be synchronized. I have tried with setSelection and setTopItem methods but both have no effect to other tree. only the ScrollBar is ...
1
vote
4answers
2k views

Change row height in SWT Table/Tree

I have a Tree, which is populated with TreeItems that may have an image (a row with a thumbnail). I resize the row height with MeasureItem listener, and everything is good. But, now I want to make ...
0
votes
1answer
364 views

accessing subItem of a Tree in SWT Eclipse

I have used Tree to display all the data. I have expanded the data having the same LoanId with different IssueAmount . My output is as shown in the Image. In the Image the row containing S.No. 3 is ...
0
votes
1answer
298 views

How to eliminate rectangle box around selected text in the TreeItem widget?

I want to implement a tree with checkable root nodes and some parameters (actually, parameters in this case does not matter) inside. So, I make a Tree, then place there 2 columns, and after that place ...
1
vote
1answer
489 views

Scrolling TreeViewer Tree SWT

My dialog have two TreeViewer components. The vertical scroll bars have to be synchronized. I have tried with setSelection and setTopItem methods but both have no effect to other tree. xViewerLeft = ...
1
vote
2answers
777 views

SWT JFace: How to implement a “leveled or expandable TableViewer”?

I think this question is quite common. Recently I have got a requirement that I need to make a leveled or expandable table-like view. If you need an example, you can refer to Mac OS X's Activity ...
1
vote
2answers
743 views

SWT/JFace TreeColumn reordering - issue with setMoveable()

I am trying to set up a multi-column SWT Tree (via a JFace TreeViewer) that allows its columns to be re-ordered by the user by dragging the column headers. However, the first column should remain ...
1
vote
3answers
570 views

Disable Alt+Enter for TreeViewer in Eclipse

I have added a key listener to a tree in SWT and when i press Alt+Enter the state of the key event is keyCode = 65536 and statemask = 0, when it should have been keyCode='\r' and statemask=65536. ...
0
votes
1answer
564 views

SWT Tree with columns: Remove alternating background coloring for rows on Linux/Mac

I'm coloring some of the columns of a tree with columns (which looks like a Table). On Windows systems it looks good but on Linux/Mac it doesn't because they use alternating background coloring ...
0
votes
2answers
768 views

Expanding Java SWT Tree asynchronously

I am having a problem with my SWT Tree. It contains many leaves what makes expanding an item very time consuming. Sometimes I even need to expand all items. Is there a way to expand it ...
1
vote
2answers
3k views

Java SWT: remove selection of a tree item

I need to create a popup Menu for a Tree in Java SWT. But the menu should only pop up when no items are selected (when I click on a blank space of the TreeViewer). If I now select an item of the ...
0
votes
1answer
748 views

SWT tree > move the verticle scrollbar to the left of the tree without changing the orientation

any idea how put the vertical scroll bar on the left hand side of the tree? thanks!
1
vote
1answer
3k views

SWT tree: auto resize all columns

In a tree with multiple columns, how do I resize columns to contents upon expand/collapse and data updates? The solution to the similar question for tables doesn't work. Same as ...