Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] Project Type

Sorry -- my message sent prematurely :)

Ah okay, so it sounds like you want to extend the
org.eclipse.ui.perspectives extension point as well.  (Same process as
extending the org.eclipse.ui.newWizards extension point).  Create a
new perspective by implementing IPerspectiveFactory.

In the extension element details of your new project type wizard, make
sure your final perspective property points to the id of your new
perspective.


Yours,
Cherie.

On 11/20/05, Cherie Wong <cherie.wong@xxxxxxxxx> wrote:
> Ah okay, so it sounds like you want to extend the
> org.eclipse.ui.perspectives extension point as well.  (Same process as
> extending the org.eclipse.ui.newWizards extension point).  Create a
> new perspective by implementing
>
> In the extension element details of your new project type wizard
>
> On 11/20/05, daz lee <dazlee4@xxxxxxxxxxx> wrote:
> >
> >
> > sorry I wasn't too clear.
> >
> > basically, I want to install with the plug-in a perspective, that will have
> > all my views showing etc
> >
> > so its part of the package...
> >
> > ----- Original Message -----
> > From: Cherie Wong
> > To: Eclipse PDE general developers list.
> >
> > Sent: 20 November 2005 22:14
> > Subject: Re: [pde-dev] Project Type
> >
> > To put a project type in the New (Project) wizard, you'll to make your
> > plug-in extend org.eclipse.ui.newWizards with a 'wizard'.
> >
> > i.e.
> > Go to plugin.xml.
> > On the Extensions tab, click Add...
> > Select the org.eclipse.ui.newWizards extension point.
> > Click OK.
> > On the extension point, right click.  Select New->wizard and fill in
> > Extension Element Details accordingly. Create the wizard for your
> > project type and make sure your extension element details reflect this
> > wizard class in the 'class' property field.
> >
> > When I tried this out, I went to New->Project->Other to see my new project
> > type.
> >
> >
> > As for your perspective question, it sounds like you're looking for a
> > button or a setting where everything you save is saved directly into a
> > plug-in?  (Can you give a scenario for this?  I may be misinterpreting
> > your question).
> >
> > Yours,
> > Cherie.
> >
> > On 11/20/05, daz lee <dazlee4@xxxxxxxxxxx> wrote:
> > >
> > >
> > > what I mean is be able to go to file, new, have my plugin Dir and have a
> > > project type, like a java project or w/e which will dump in some default
> > > files etc.
> > >
> > > and with perspective Is there a way to make what you save part of your
> > > plugin?
> > >
> > > ----- Original Message -----
> > > From: Cherie Wong
> > > To: Eclipse PDE general developers list.
> > > Sent: 20 November 2005 21:48
> > > Subject: Re: [pde-dev] Project Type
> > >
> > > Hi Daz,
> > >
> > > I'm not sure of your exact question so correct me if I'm wrong.
> > >
> > > If you're just making a plug-in, you need only go to
> > > File->New->Plug-in Development->Plug-in Project.
> > > What kind of project/plug-in types are you looking to make?
> > >
> > > If you would like to customize your perspective you can go to
> > > Windows->Customize Perspective...
> > >
> > > Was that what you were looking for?
> > >
> > > Yours,
> > > Cherie.
> > >
> > > On 11/20/05, daz lee <dazlee4@xxxxxxxxxxx> wrote:
> > > >
> > > > Hi everybody.
> > > >
> > > > I'm new to making projects, I can create an editor, and I can create
> > > views,
> > > > but I cant find any information on creating a project type (so it can
> > copy
> > > > over default files and dirs etc) and on creating a custom perspective.
> > > >
> > > > Can anyone shed some light on this?
> > > >
> > > > Thanks
> > > >
> > > > Daz
> > > > _______________________________________________
> > > > pde-dev mailing list
> > > > pde-dev@xxxxxxxxxxx
> > > > https://dev.eclipse.org/mailman/listinfo/pde-dev
> > > >
> > > >
> > > >
> > > _______________________________________________
> > > pde-dev mailing list
> > > pde-dev@xxxxxxxxxxx
> > > https://dev.eclipse.org/mailman/listinfo/pde-dev
> > >
> > > _______________________________________________
> > > pde-dev mailing list
> > > pde-dev@xxxxxxxxxxx
> > > https://dev.eclipse.org/mailman/listinfo/pde-dev
> > >
> > >
> > >
> > _______________________________________________
> > pde-dev mailing list
> > pde-dev@xxxxxxxxxxx
> > https://dev.eclipse.org/mailman/listinfo/pde-dev
> >
> > _______________________________________________
> > pde-dev mailing list
> > pde-dev@xxxxxxxxxxx
> > https://dev.eclipse.org/mailman/listinfo/pde-dev
> >
> >
> >
>


Back to the top