[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] SWT Programming Techniques

Hi guys,
I'm looking to make an application which consists of 3 forms (Login, Main 
and Detail).

Does anyone have advice on how to go about doing this?

All of the examples I've seen so far only have a single shell, and therefore 
they simply put it all in the main method.

I want to start with the Login form, which can progress to the Main form. 
The main form links to the Detail form or the Login form. The Detail form 
only links to the Main form.

After Login there will be a fair chunk of processing that needs to be done 
to build the Main form.

So..
My questions are:
1) what classes should I have? (One for each or just put them in a single 
class)
2) where do I build up the GUIs?
3) how can I code it so that the processing is performed in a seperate 
thread from the GUI thread.