Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Visual Editor (VE) » Support of JFace and swt library
Support of JFace and swt library [message #86446] Mon, 11 April 2005 03:36 Go to next message
Emerson Cargnin is currently offline Emerson CargninFriend
Messages: 125
Registered: July 2009
Senior Member
It was said here that the ve version for the M6 eclipse version would
support JFace. Does the last release ( N20050407 ) has already support for
JFace?

The code generated for a swt composite has the following:

public static void main(String[] args) {
// TODO Auto-generated method stub
/* Before this is run, be sure to set up the following in the launch
configuration
* (Arguments->VM Arguments) for the correct SWT library path.
* The following is a windows example:




* -Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_
3.0.0\os\win32\x86"

It looks that the swt plugin are deployed as a jar, and the comments says
about the directory plugin, so I think one would have to change those
comments.
I had to extract the dll's by hand and point the VM arg to there.

Thanks
Emerson
Re: Support of JFace and swt library [message #86517 is a reply to message #86446] Mon, 11 April 2005 13:05 Go to previous messageGo to next message
Srimanth  is currently offline Srimanth Friend
Messages: 225
Registered: July 2009
Senior Member
I have added comments to the JFace defect
https://bugs.eclipse.org/bugs/show_bug.cgi?id=90059 for tracking this.
Basically we should make use of the SWT application launch configuration
to launch correctly SWT/JFace apps. Please add yourself onto the CC list
of the defect to track its progress.
Regards,
Sri.



Emerson Cargnin wrote:
> It was said here that the ve version for the M6 eclipse version would
> support JFace. Does the last release ( N20050407 ) has already support for
> JFace?
>
> The code generated for a swt composite has the following:
>
> public static void main(String[] args) {
> // TODO Auto-generated method stub
> /* Before this is run, be sure to set up the following in the launch
> configuration
> * (Arguments->VM Arguments) for the correct SWT library path.
> * The following is a windows example:
>
>
>
>
> * -Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_
> 3.0.0\os\win32\x86"
>
> It looks that the swt plugin are deployed as a jar, and the comments says
> about the directory plugin, so I think one would have to change those
> comments.
> I had to extract the dll's by hand and point the VM arg to there.
>
> Thanks
> Emerson
>
>
Re: Support of JFace and swt library [message #86789 is a reply to message #86517] Tue, 12 April 2005 05:49 Go to previous messageGo to next message
Emerson Cargnin is currently offline Emerson CargninFriend
Messages: 125
Registered: July 2009
Senior Member
I didn't find anything about visual jface editing, will this be supported?

thanks
Emerson

"Sri Gunturi" <sgunturi@us.ibm.com> escreveu na mensagem
news:d3dt03$n5l$1@news.eclipse.org...
> I have added comments to the JFace defect
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=90059 for tracking this.
> Basically we should make use of the SWT application launch configuration
> to launch correctly SWT/JFace apps. Please add yourself onto the CC list
> of the defect to track its progress.
> Regards,
> Sri.
>
>
>
> Emerson Cargnin wrote:
> > It was said here that the ve version for the M6 eclipse version would
> > support JFace. Does the last release ( N20050407 ) has already support
for
> > JFace?
> >
> > The code generated for a swt composite has the following:
> >
> > public static void main(String[] args) {
> > // TODO Auto-generated method stub
> > /* Before this is run, be sure to set up the following in the launch
> > configuration
> > * (Arguments->VM Arguments) for the correct SWT library path.
> > * The following is a windows example:
> >
> >
> >
> >
> >
* -Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_
> > 3.0.0\os\win32\x86"
> >
> > It looks that the swt plugin are deployed as a jar, and the comments
says
> > about the directory plugin, so I think one would have to change those
> > comments.
> > I had to extract the dll's by hand and point the VM arg to there.
> >
> > Thanks
> > Emerson
> >
> >
Re: Support of JFace and swt library [message #86805 is a reply to message #86789] Tue, 12 April 2005 12:48 Go to previous messageGo to next message
Gili Mendel is currently offline Gili MendelFriend
Messages: 338
Registered: July 2009
Senior Member
In M1 we are going to support the creation/editing of a RCP ViewPart.
This support required VE to support a wrapper class with a creatPartControl(), spacialized handling when
instantiating and reverse parsing for these type of classes and code patterns.

This preCursor support for the ViewPart pattern, will be the base for supporting JFace in general as we move forward.

We hope to have an M1 integration build this week, go through a test-path/fix effort, and provide the final M1 driver on
the download page.
Re: Support of JFace and swt library [message #86869 is a reply to message #86789] Tue, 12 April 2005 14:32 Go to previous message
Joe Winchester is currently offline Joe WinchesterFriend
Messages: 496
Registered: July 2009
Senior Member
Emerson Cargnin wrote:

> I didn't find anything about visual jface editing, will this be supported?

We also hope to support JFace viewers in a future release (not M1).
This is tracked in bugzilla 91133 and would allow you to select classes
in the JFace viewer hierarchy (such as TableViewer, TextViewer,
TreeViewer, etc..) and work with these so you could manipulate the
properties and visuals of the control together with the JFace extra
properties such as its providers. This requires work to recognize the
code patterns and also the delegate pattern that JFace uses.

Best regards,

Joe Winchester
Re: Support of JFace and swt library [message #607101 is a reply to message #86446] Mon, 11 April 2005 13:05 Go to previous message
Srimanth  is currently offline Srimanth Friend
Messages: 225
Registered: July 2009
Senior Member
I have added comments to the JFace defect
https://bugs.eclipse.org/bugs/show_bug.cgi?id=90059 for tracking this.
Basically we should make use of the SWT application launch configuration
to launch correctly SWT/JFace apps. Please add yourself onto the CC list
of the defect to track its progress.
Regards,
Sri.



Emerson Cargnin wrote:
> It was said here that the ve version for the M6 eclipse version would
> support JFace. Does the last release ( N20050407 ) has already support for
> JFace?
>
> The code generated for a swt composite has the following:
>
> public static void main(String[] args) {
> // TODO Auto-generated method stub
> /* Before this is run, be sure to set up the following in the launch
> configuration
> * (Arguments->VM Arguments) for the correct SWT library path.
> * The following is a windows example:
>
>
>
>
> * -Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_
> 3.0.0\os\win32\x86"
>
> It looks that the swt plugin are deployed as a jar, and the comments says
> about the directory plugin, so I think one would have to change those
> comments.
> I had to extract the dll's by hand and point the VM arg to there.
>
> Thanks
> Emerson
>
>
Re: Support of JFace and swt library [message #607115 is a reply to message #86517] Tue, 12 April 2005 05:49 Go to previous message
Emerson Cargnin is currently offline Emerson CargninFriend
Messages: 125
Registered: July 2009
Senior Member
I didn't find anything about visual jface editing, will this be supported?

thanks
Emerson

"Sri Gunturi" <sgunturi@us.ibm.com> escreveu na mensagem
news:d3dt03$n5l$1@news.eclipse.org...
> I have added comments to the JFace defect
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=90059 for tracking this.
> Basically we should make use of the SWT application launch configuration
> to launch correctly SWT/JFace apps. Please add yourself onto the CC list
> of the defect to track its progress.
> Regards,
> Sri.
>
>
>
> Emerson Cargnin wrote:
> > It was said here that the ve version for the M6 eclipse version would
> > support JFace. Does the last release ( N20050407 ) has already support
for
> > JFace?
> >
> > The code generated for a swt composite has the following:
> >
> > public static void main(String[] args) {
> > // TODO Auto-generated method stub
> > /* Before this is run, be sure to set up the following in the launch
> > configuration
> > * (Arguments->VM Arguments) for the correct SWT library path.
> > * The following is a windows example:
> >
> >
> >
> >
> >
* -Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_
> > 3.0.0\os\win32\x86"
> >
> > It looks that the swt plugin are deployed as a jar, and the comments
says
> > about the directory plugin, so I think one would have to change those
> > comments.
> > I had to extract the dll's by hand and point the VM arg to there.
> >
> > Thanks
> > Emerson
> >
> >
Re: Support of JFace and swt library [message #607118 is a reply to message #86789] Tue, 12 April 2005 12:48 Go to previous message
Gili Mendel is currently offline Gili MendelFriend
Messages: 338
Registered: July 2009
Senior Member
In M1 we are going to support the creation/editing of a RCP ViewPart.
This support required VE to support a wrapper class with a creatPartControl(), spacialized handling when
instantiating and reverse parsing for these type of classes and code patterns.

This preCursor support for the ViewPart pattern, will be the base for supporting JFace in general as we move forward.

We hope to have an M1 integration build this week, go through a test-path/fix effort, and provide the final M1 driver on
the download page.
Re: Support of JFace and swt library [message #607123 is a reply to message #86789] Tue, 12 April 2005 14:32 Go to previous message
Joe Winchester is currently offline Joe WinchesterFriend
Messages: 496
Registered: July 2009
Senior Member
Emerson Cargnin wrote:

> I didn't find anything about visual jface editing, will this be supported?

We also hope to support JFace viewers in a future release (not M1).
This is tracked in bugzilla 91133 and would allow you to select classes
in the JFace viewer hierarchy (such as TableViewer, TextViewer,
TreeViewer, etc..) and work with these so you could manipulate the
properties and visuals of the control together with the JFace extra
properties such as its providers. This requires work to recognize the
code patterns and also the delegate pattern that JFace uses.

Best regards,

Joe Winchester
Previous Topic:Cannot Launch VE
Next Topic:Moving from JBuilder to Eclipse
Goto Forum:
  


Current Time: Tue Mar 19 06:25:20 GMT 2024

Powered by FUDForum. Page generated in 0.02531 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top