Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Platform UI"

Line 1: Line 1:
 
{{Platform UI}}
 
{{Platform UI}}
 
+
{{Infobox
 +
| name = Platform UI
 +
| download = http://download.eclipse.org/eclipse/downloads/
 +
| website = http://projects.eclipse.org/projects/eclipse.platform.ui
 +
| newsgroup = eclipse.platform
 +
| list = platform-ui-dev
 +
| product = Platform
 +
| component = UI
 +
| source = http://git.eclipse.org/c/platform/eclipse.platform.ui.git/
 +
}}
 
Platform UI consists of several components, which provide the basic building blocks for user interfaces built with Eclipse. Some of these can be reused in arbitrary applications, while others are specific to the Eclipse IDE.
 
Platform UI consists of several components, which provide the basic building blocks for user interfaces built with Eclipse. Some of these can be reused in arbitrary applications, while others are specific to the Eclipse IDE.
  

Revision as of 18:25, 7 March 2013

Template:Platform UI

Platform UI
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Platform UI consists of several components, which provide the basic building blocks for user interfaces built with Eclipse. Some of these can be reused in arbitrary applications, while others are specific to the Eclipse IDE.

Two of the Platform UI components form the Rich Client Platform UI. These are JFace and the Workbench. JFace and the Workbench can be used to build arbitrary applications, not just the Eclipse IDE. The Eclipse IDE is just one instance of an RCP application, but it demonstrates the power and extensibility achievable by RCP applications.

Platform UI also provides the IDE application plug-in, which instantiates and configures the Generic Workbench to form the IDE Workbench, on top of which lies the rest of the Eclipse IDE Platform and the Eclipse SDK (including the Java Development Tools and Plug-in Development Environment). Unlike the Generic Workbench, the IDE application plug-in is intended only for use in the IDE Platform, and is not designed as a reusable component for use in other RCP applications.

Platform UI does, however, provide some other components that can be reused in other RCP applications. These are:

  • the Outline and Properties views
  • the Console view (owned by Debug)
  • the Welcome Page / Intro support, with guided assistance (owned by User Assistance)
  • Cheat Sheets, which guide the user through a long-running, multi-step task (owned by User Assistance)
  • Common Navigator Framework and default instance ("Project Explorer")
  • Platform Text generic support for text editors and annotations

For more details on the Rich Client Platform and other components available for use in RCP applications, see the RCP Home Page and the RCP FAQ.

Links of general interest:

Back to the top