Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] how can I convert a exits SWT application to RCP application conveniently ?

Sorry that I've to ask about this, but I thought that RCP and SWT where the same. Could anyone explain to me the RCP concept ? i don't seem to get it...
 
Thanks !!

 
On 9/7/05, Carolyn MacLeod <Carolyn_MacLeod@xxxxxxxxxx> wrote:

From John Arthorne:
----------
Here is a simple manual process to create an RCP application with one view containing arbitrary SWT controls:

1) File > New > Project > Plugin Project
2) Give the project a name. Hit Next.
3) Toggle the "Would you like to create a rich client application" to "Yes". Hit Next.
4) Select "RCP application with a view". Hit Finish.
5) Open the class in your new project called "View".  Replace the createPartControl method with whatever you want in the view:

        public void createPartControl(Composite parent) {
                //create your SWT controls here with the provided parent
        }

Voila...
-----------
Hope this helps,
Carolyn




bbskill <bbkills@xxxxxxx>
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

09/07/2005 03:48 AM

Please respond to
"Eclipse Platform SWT component developers list."

To
platform-swt-dev@xxxxxxxxxxx
cc
Subject
[platform-swt-dev] how can I convert a exits SWT application to RCP application conveniently ?





hello all,
I have written a SWT application ,and now I want to convert it to
a RCP application . how can I convert it quickly and conveniently ?
I will feel very disappointed if I must rewrite it fully using RCP ?
is there some information about converting SWT to RCP conveniently ?
Thank you with much appreciation !
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev


_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev




Back to the top