Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » How the Eclipse Layout is build?
How the Eclipse Layout is build? [message #441184] Wed, 11 August 2004 12:43 Go to next message
Eclipse UserFriend
Originally posted by: hu_wi.gmx.net

Hi.

I want to build an application layout with SWT simlar the Eclipse one.
e.g. Java-perspective: left hand "package explorer", right hand "outline",
In concrete one application with 4 fixed sub-windows, with individuell
menues.

Unfortunatly I did not find a example and guess that a "tabfolder" do not
satiesfy my needs.

And as a newbie I'm lack of ideas.

thx
Hugo
Re: How the Eclipse Layout is build? [message #441205 is a reply to message #441184] Thu, 12 August 2004 03:40 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: trevor.campbell.kaz.com.au

The easiest way to get a look and feel like the Eclipse IDE is to use the
Rich Client Platform (RCP) SDK. There is a tutorial in three parts to
help get you started.
http://dev.eclipse.org/viewcvs/index.cgi/%7echeckout%7e/org. eclipse.ui.tutorials.rcp.part1/html/tutorial1.html

Hugo wrote:

> Hi.

> I want to build an application layout with SWT simlar the Eclipse one.
> e.g. Java-perspective: left hand "package explorer", right hand "outline",
> In concrete one application with 4 fixed sub-windows, with individuell
> menues.

> Unfortunatly I did not find a example and guess that a "tabfolder" do not
> satiesfy my needs.

> And as a newbie I'm lack of ideas.

> thx
> Hugo
Re: How the Eclipse Layout is build? [message #441210 is a reply to message #441205] Thu, 12 August 2004 08:14 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: hu_wi.gmx.net

Thanks for that hint!

Unfortunatly I forgot to mention that I have to use Eclipse 2.1.1. with
IBM WebSphere Studio Application Developer 5.1.

When I'm right the RCP is shipped only since Eclipse 3.0.

"With previous version of Eclipse, this was possible but difficult,
especially when you wanted to heavily customize the menus, layouts, and
other user interface elements. That was because the "IDE-ness" of Eclipse
was hard-wired into it. Version 3 introduces the Rich Client Platform,
which is basically a refactoring of the fundamental parts of Eclipse's UI,
allowing it to be used for non-IDE applications."

I need to reach the layout with SWT.

any hints welcome :-)
Hugo






Trev wrote:

> The easiest way to get a look and feel like the Eclipse IDE is to use the
> Rich Client Platform (RCP) SDK. There is a tutorial in three parts to
> help get you started.
>
http://dev.eclipse.org/viewcvs/index.cgi/%7echeckout%7e/org. eclipse.ui.tutorials.rcp.part1/html/tutorial1.html

> Hugo wrote:

> > Hi.

> > I want to build an application layout with SWT simlar the Eclipse one.
> > e.g. Java-perspective: left hand "package explorer", right hand "outline",
> > In concrete one application with 4 fixed sub-windows, with individuell
> > menues.

> > Unfortunatly I did not find a example and guess that a "tabfolder" do not
> > satiesfy my needs.

> > And as a newbie I'm lack of ideas.

> > thx
> > Hugo
Re: How the Eclipse Layout is build? [message #441212 is a reply to message #441210] Thu, 12 August 2004 10:27 Go to previous messageGo to next message
Benjamin Pasero is currently offline Benjamin PaseroFriend
Messages: 337
Registered: July 2009
Senior Member
To give some short hints, what Eclipse 2.1 is using for the GUI, have a
look at the .custom package in SWT. For example SashForms are used in
order to vertical / horizontal resize the ViewForms (which draw the 3D
Border, one is used for each "window" inside the IDE and have a title area
to place a header on the left and buttons on the right). The CTabFolder is
used to display CTabItems.

Hope that helps,
Ben

> Thanks for that hint!

> Unfortunatly I forgot to mention that I have to use Eclipse 2.1.1. with
> IBM WebSphere Studio Application Developer 5.1.

> When I'm right the RCP is shipped only since Eclipse 3.0.

> "With previous version of Eclipse, this was possible but difficult,
> especially when you wanted to heavily customize the menus, layouts, and
> other user interface elements. That was because the "IDE-ness" of Eclipse
> was hard-wired into it. Version 3 introduces the Rich Client Platform,
> which is basically a refactoring of the fundamental parts of Eclipse's UI,
> allowing it to be used for non-IDE applications."

> I need to reach the layout with SWT.

> any hints welcome :-)
> Hugo






> Trev wrote:

> > The easiest way to get a look and feel like the Eclipse IDE is to use the
> > Rich Client Platform (RCP) SDK. There is a tutorial in three parts to
> > help get you started.
> >
>
http://dev.eclipse.org/viewcvs/index.cgi/%7echeckout%7e/org. eclipse.ui.tutorials.rcp.part1/html/tutorial1.html

> > Hugo wrote:

> > > Hi.

> > > I want to build an application layout with SWT simlar the Eclipse one.
> > > e.g. Java-perspective: left hand "package explorer", right hand
"outline",
> > > In concrete one application with 4 fixed sub-windows, with individuell
> > > menues.

> > > Unfortunatly I did not find a example and guess that a "tabfolder" do not
> > > satiesfy my needs.

> > > And as a newbie I'm lack of ideas.

> > > thx
> > > Hugo
Re: How the Eclipse Layout is build? [message #441441 is a reply to message #441212] Mon, 16 August 2004 12:00 Go to previous message
Eclipse UserFriend
Originally posted by: hu_wi.gmx.net

Thanks for that hint!
To build the layout works fine, but how to build a the tile-bar in each
view?

viewForm.setTopCenter( toolBar )
do not work.

thx a lot
Hugo


Benjamin Pasero wrote:

> To give some short hints, what Eclipse 2.1 is using for the GUI, have a
> look at the .custom package in SWT. For example SashForms are used in
> order to vertical / horizontal resize the ViewForms (which draw the 3D
> Border, one is used for each "window" inside the IDE and have a title area
> to place a header on the left and buttons on the right). The CTabFolder is
> used to display CTabItems.

> Hope that helps,
> Ben

> > Thanks for that hint!

> > Unfortunatly I forgot to mention that I have to use Eclipse 2.1.1. with
> > IBM WebSphere Studio Application Developer 5.1.

> > When I'm right the RCP is shipped only since Eclipse 3.0.

> > "With previous version of Eclipse, this was possible but difficult,
> > especially when you wanted to heavily customize the menus, layouts, and
> > other user interface elements. That was because the "IDE-ness" of Eclipse
> > was hard-wired into it. Version 3 introduces the Rich Client Platform,
> > which is basically a refactoring of the fundamental parts of Eclipse's UI,
> > allowing it to be used for non-IDE applications."

> > I need to reach the layout with SWT.

> > any hints welcome :-)
> > Hugo






> > Trev wrote:

> > > The easiest way to get a look and feel like the Eclipse IDE is to use the
> > > Rich Client Platform (RCP) SDK. There is a tutorial in three parts to
> > > help get you started.
> > >
> >
>
http://dev.eclipse.org/viewcvs/index.cgi/%7echeckout%7e/org. eclipse.ui.tutorials.rcp.part1/html/tutorial1.html

> > > Hugo wrote:

> > > > Hi.

> > > > I want to build an application layout with SWT simlar the Eclipse one.
> > > > e.g. Java-perspective: left hand "package explorer", right hand
> "outline",
> > > > In concrete one application with 4 fixed sub-windows, with individuell
> > > > menues.

> > > > Unfortunatly I did not find a example and guess that a "tabfolder" do
not
> > > > satiesfy my needs.

> > > > And as a newbie I'm lack of ideas.

> > > > thx
> > > > Hugo
Previous Topic:import SWT app in another SWT app as popup
Next Topic:Is it possible to add caption and menue to viewform?
Goto Forum:
  


Current Time: Tue May 07 11:10:55 GMT 2024

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

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

Back to the top