1

I'm working with RAP and want to add something look like this image into my view. But I have no idea to call this thing to search on internet.

enter image description here

So sorry for unspecific question.

Baz
  • 36,440
  • 11
  • 68
  • 94
gamo
  • 1,549
  • 7
  • 24
  • 36
  • What is your Widget supposed to do? Or do you want to find out the name of the id of the Extensions view in Eclipse? – Calon Sep 30 '14 at 05:08
  • In my application I want to make a view look like "All Extensions". But I don't exactly what is that thing call to search on google. – gamo Sep 30 '14 at 06:11
  • What part do you want to copy? Do you want a table like that, or do you want to show extension points in your registry? – Calon Sep 30 '14 at 06:19
  • I want a view inside another view(All Extensions view inside Extensions view) with a Title and a CoolBar like that. – gamo Sep 30 '14 at 06:30

2 Answers2

3

The picture you show is part of a FormEditor.

The top line ('Extensions') is a FormPage title.

The 'All Extensions' part is a SectionPart containing a filtered tree and button.

All these are part of the org.eclipse.ui.forms plugin Eclipse Forms

greg-449
  • 109,219
  • 232
  • 102
  • 145
1

I think what you are looking for is a multipage-editor. You can have a look at the code of the Extensions View by using the Plugin spy (select the View -> Alt+Shift+F1) to get the containing plugin and then import the plugin into your workspace. Or you can try to work yourself into using a framework like Sapphire. Take a look at their page. The example looks like the editor you are looking for.

Calon
  • 4,174
  • 1
  • 19
  • 30