Tagged Questions
0
votes
1answer
41 views
How to synchronize events of two swt buttons?
I have two SWT buttons, button("Start") & button("Stop"). When I press on "Start", I call a method:
printFiles(inputPath, printer) //scans "inputPath" directory for pdfs and sends them to the ...
3
votes
1answer
58 views
Java SWT and Invalid Thread Access
I've seen this but it doesn't work for my code. This is my unique class:
public static void main(String[] args) {
try {
Main window = new Main();
window.open();
...
0
votes
3answers
120 views
SWT: Periodically update GUI
I have an SWT GUI which displays a list taken from a database. What I would like for it to do is to periodically update the GUI, which would involve clearing everything in the shell and running the ...
0
votes
1answer
47 views
use StyledText.append() from other thread at high speed
I am writing a desktop app using SWT which receive log data from network at high speed rate (nearly 100 packet per second). Each packet contains a line which must be appended to a StyledText. Since I ...
2
votes
1answer
79 views
Does Java SWT Widgets influence Thread perfomance?
I'm using StyledText 400x100 widget and it's working like a console where the program interacts with the user.
This is how I update the widget:
private static Shell MainShell = null;
public void ...
0
votes
1answer
434 views
Java how to prevent widget disposed error?
When I'm closing the main window I'm getting an error because it's disposed. I'm trying to "filter out" (using a condition), but I can't get it to work.
if(!Display.getDefault().isDisposed()){
...
0
votes
1answer
39 views
SWT - Is there a way to show running threads [duplicate]
Possible Duplicate:
Get a List of all Threads currently running in Java
This is just for testing purposes - not production UI
Is it possible to set something like a button on my ...
0
votes
1answer
104 views
Stopping Thread B when Thread A Stops
I have a operation listener that starts and runs Thread A. When the operation completes Thread A stops and the Dialog Window Closes.
I have created a simple progress bar that is UNKNOWN. Mainly, ...
1
vote
1answer
64 views
Java SWT control modified doesn't change
I'm making a couple of programs for a chat: a server and the client.
Both of them have a GUI made with SWT. Server always runs great.
In the other side, the GUI of the client doesn't. When I connect ...
-1
votes
1answer
394 views
Java chat socket reading and sending data [closed]
I successfully developed an app which you can create/connect to a server. I have a class named Person in which I have a public static LinkedList. In this list I'm storing clients who are connected to ...
2
votes
1answer
136 views
ProgressMonitorDialog - Watching active thread to update monitor
In my GUI I have a PDF file creation operation. The operation can take up to 10-15 seconds to complete. When I start the operation, I attach a listener to it. The listener changes the cursor and ...
0
votes
1answer
80 views
display.async and smooth transitions
I have got my custom widget that changes background when hover. It is working nice but I would like to have smooth transition between no background and hover background. It will work with ...
0
votes
1answer
162 views
Java: Invalid thread access
I am java noob programmer and I have got problem with SWT Exception Invalid thread access, I have look for that and I have found that It happens when you try to act upon an interface item from a ...
0
votes
3answers
159 views
Learning Threads - Running a method only after the other has finished
In my button execution, I am calling 2 methods.
plotButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
startPrinterListOperation();
...
0
votes
0answers
107 views
Possible to run SWTBot tests within main UI Thread?
Usually testing a SWT application (no RCP!) works as follows:
@Test
public void test()
Thread uiThread = new Thread(new Runnable(){
// start my UI application, which endless loop until I ...
0
votes
2answers
56 views
Why Object#wait is not a “reasonable opportunity” for Display.asyncExec or Display.asyncExec?
I am trying to show progress while I am reading an excel file. I share an Object that contains the maximum row number and the last row number read.
Every 150 rows I save the value in my object, I put ...
1
vote
2answers
569 views
Java SWT GUI Becomes Unresponsive to Updates During Long Running Background Process
Technologies Used:
Java 1.6
SWT GUI
Problem:
GUI information updates eventually stall (GUI becomes completely unresponsive) after approximately 60 minutes of a background task running.
The problem ...
0
votes
1answer
74 views
Threads with SWT Eclipse while accessing UI in a recursive method
I have a recursive method like this:
protected void executeAction( TreeItem ti )
{
boolean isChecked = ti.getChecked();
if ( isChecked )
{
Somedata data = (SomeData) ...
2
votes
3answers
1k views
Java - how post event to UI thread or call a function of UI thread?
I have a java code that looks like this:
//UI thread
//Some code
Job j = new Job(jobName) {
@Override
public IStatus run(IProgressMonitor monitor) {
try {
//Some code
...
0
votes
1answer
221 views
Java SWT - best way to return data from components to other threads
I have a Java SWT app which runs a separate thread (other than the UI) for a connection to a chat server. If I want to update components of the UI from the connection thread, I can easily do this:
...
0
votes
2answers
307 views
UI Freeze in simple Socket (Java) app using SWT for UI
I'm new to Java Socket Programming and currently exploring its Socket APIs. I've created a new simple App that starts ServerSocket and listens for Clients, when client writes something on the socket, ...
1
vote
1answer
421 views
swt/rmi java-application doesn't shut down properly on mac/OSX
i have an SWT Application which uses RMI. Only on mac/cocoa it won't shut down properly. I closed everything, shutdown the executor-service I use, but it won't quit.
This is my ThreadDump:
...
2
votes
1answer
506 views
SWT/Swing -> Threads n' Hell
I have an SWT application. I was frustrated at SWT for not making it easy to do what I wanted to do. So I used Swing. Swing made my life easy. Yay. Except now, the two have to talk. The issue is, they ...
1
vote
1answer
154 views
SWT proper way to populate GUI widget using threads?
I am having a rough time trying to figure out a way to properly populate an SWT GUI element that takes some time (ie: I dont want it to hang the APP). Currently I am doing this, but I feel like there ...
0
votes
1answer
324 views
Java Thread join problem
public void setGifImage(InputStream inputStream) {
checkWidget();
if (thread != null) {
thread.stopRunning();
try {
thread.join();
} ...
6
votes
1answer
479 views
Using multiple progress bars for multiple threads without jamming the GUI
I am writing an Eclipse RCP application in which multiple threads will update the user on progress each through its own progress bar in the GUI. I have been told that to allow each to individually ...
0
votes
1answer
400 views
SWT Table, adding items from a thread hangs
I have a GUI with a table - that table is populated by the contents of an InputStreamReader. In order to do this, I am creating a thread that monitors the InputStream, and when there is a new line to ...
1
vote
2answers
570 views
Thread Invalid Access Error in SWT
Could you let me know the reason for this error in SWT
"org.eclipse.swt.SWTException" Invalid Thread access ?
And How to fix such errors.
3
votes
2answers
389 views
SWT single threading problem
I faced a problem while using threading for the first time, In an SWT program in the main thread I have created the GUI and opened the shell, and then a new thread is started to run some logic in the ...
1
vote
2answers
2k views
What is the recommended way for SWT Views (ViewPart) which receive a external event to update a GUI element?
My View is derived from ViewPart, but I have a listener on it which receives Events from non-GUI threads.
If something is supposed to happen on within the GUI thread, it has to go through ...
2
votes
2answers
1k views
Threaded drawing onto a canvas in Java SWT
I've been working quite a bit on something I can only describe as a "threaded canvas" for some time now. In a moment I'll describe what I have, but since I'm really open to new ideas, existing ...
7
votes
4answers
9k views
How to update a GUI from another thread in Java
I am writing a desktop application using SWT. What is the simplest way to update GUI controls from another thread?
1
vote
5answers
654 views
What's the best way to return variables from a syncExec?
In my SWT Java app I often want to return information from inside a Display.syncExec() call. The best way I've found so far to do this is:
final ArrayList<Integer> result = new ...

