0
votes
2answers
137 views

SWT - Only allowing 1 Dialog to be open

I have a button in a base dialog that opens a results dialog. private void showPlotResultsDialog() { resultsDialog = new AplotPlotResultsDialog(getShell()); resultsDialog.setBlockOnOpen(true); ...
0
votes
1answer
147 views

Java SWT Dragging Dialog Causes Application To Crash

I have a dialog box that loads an image when a button is clicked. Essentially when the button is clicked it opens a larger version of the image displayed on they button. The dialog opens and displays ...
2
votes
1answer
71 views

CheckedTreeSelectionDialog check elements initially

I am using a CheckedTreeSelectionDialog and I want to select initially some items. How do I use the method setInitialSelections to select children (level2 items) and not level1. ...
0
votes
1answer
69 views

Taking a Swing dialog method and converting it to SWT

I am trying to take the following method of Swing code and migrate to SWT for my application. I know some of it. SWT SWING Label JLabel Button JButton Dialog ...
0
votes
1answer
415 views

SWT: InputDialog used for password input

How can I use a SWT InputDialog object to enter a password, replacing normal characters with usual *? Or it is not possible?
0
votes
1answer
75 views

Dialog - Opening a closed dialog without creating a new dialog

This is a much simpler question. private static AplotBaseDialog dlg; public Object execute(final ExecutionEvent event) throws ExecutionException { if (dlg == null){ try { Shell ...
0
votes
1answer
312 views

SWT - Inheriting parent dialog shell?

I am really needing to understand how parent/child dialogs work. My users use a OTB Application called Teamcenter. I am writing a add on application that is invoked from a menu selection in the ...
1
vote
1answer
374 views

TitleAreaDialog - adjusting the title image

So I am creating a image to place in the title area. Everything works with the exception that only a 1/4th of the image is displayed? my image is actually text and a image combine in one image EX: ...
0
votes
0answers
125 views

SWT Jface refresh/reopen dialog

So I have these dialogs, (Alot) and every dialog has a "Reset" button. The problem is every dialog has lots of Controls(List,text,checkbox,button) that have default values. Returning them to defaults ...
0
votes
1answer
118 views

Opening a dialog box from a table cell button

I need to allow my users to edit a filename value in the my table. So in my tableviewer I added the code to create and display the edit button(s) in my last column. I have this working. When they ...
2
votes
1answer
343 views

SWT TitleAreaDialog: How to place a Button on the LEFT of ButtonArea?

I just created a new class that extends TitleAreaDialog. I overrode the method createButtonsForButtonBar and I was able to add new buttons. But placing one on the LEFT?? (Default is the right, besids ...
0
votes
1answer
235 views

Find currently opened dialog in Eclipse RCP

My question is: I want to find the name of currently opened dialog(being displayed on top of all views) and finally reload it. Can anyone guide me for this ?
2
votes
1answer
140 views

SWT - Advice needed about Text Boxes / Tables / Adding and Removing values

I would really like some advice on how to proceed with the following requirement. I am going to create a new dialog. In the dialog I want 2 boxes. 1 box with populated values and the other empty. I ...
0
votes
1answer
319 views

SWT - Closing a dialog window from a different class

Let me try and explain what I am talking about better. Main GUI has a button that when clicked opens Dialog A Dialog A's OK button runs a method in the main GUI public void ...
1
vote
3answers
790 views

SWT - MessageDialog - Shells

I have an operations class that has no gui. The class basically does data management. The class is called from a method in my Main GUI. The problem I am having is with displaying messages to the user ...
0
votes
1answer
124 views

Resolution independent SWT Dialog

Can somebody tell me how to achieve resolution independence for size and appearance of swt dialogs. my dialog works correct in 1680x1050, but when resolution is changed to 1280x800, part of dialog is ...
2
votes
1answer
763 views

SWT modal dialog not modal

According to another discussion here, I try to open a modal view like so: public void widgetSelected(SelectionEvent e) { final Shell dialogShell = new Shell(ApplicationRunner.getApp() ...
1
vote
1answer
258 views

JFace Dialog maximize programmatically

I am currently trying to maximize a JFace Dialog programmatically. Usually calling setMaximized(true) on the parentShell of the Dialog would be sufficient to achieve this. However, it does not work ...
1
vote
1answer
102 views

Is it possible to show the default Windows progress dialog using SWT

Can I display the default Windows progress dialog using SWT? Here's the dialog that I'm referring to: I've seen some implementations of it in .Net but was curious about doing the same in Java. ...
4
votes
1answer
418 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 ...
1
vote
1answer
451 views

Swt file dialog too much files selected?

the swt file dialog will give me an empty result array if I select too much files (approx. >2500files). The listing shows you how I use this dialog. If i select too many sound files, the syso will ...
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 ...
1
vote
0answers
1k views

eclipse jface filtered items selection dialog with multiple-column table

I'm coding up a dialog box for an Eclipse plug-in much like the built-in FilteredItemsSelectionDialog from jface, except that the items that can be selected are (basically) made up of three strings, ...