Skip to main content

Notice: This Wiki is now read only and edits are no longer 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"

 
m (Reverted edits by Unnamed Poltroon (talk) to last revision by Ralf.petter.gmail.com)
 
(44 intermediate revisions by the same user not shown)
Line 1: Line 1:
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}}
 +
{{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/
 +
}}
  
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.
+
The Platform UI project is responsible for the runtime, user interface and help components of Eclipse. Platform UI provides the basic building blocks to create the Eclipse IDE and other Eclipse based applications called Rich Client Platform (RCP). The Eclipse IDE is just one instance of an RCP application, but it demonstrates the power and extensibility achievable by RCP applications.
  
JFace is a UI toolkit with classes for handling many common UI programming tasks. JFace is window-system-independent in both its API and implementation, and is designed to work with [[SWT]] without hiding it. JFace includes the usual UI toolkit components of image and font registries, text, dialog, preference and wizard frameworks, and progress reporting for long running operations. Two of its more interesting features are actions and viewers. The action mechanism allows user commands to be defined independently from their exact whereabouts in the UI. Viewers are model based adapters for certain SWT widgets, simplifying the presentation of application data structured as lists, tables or trees.
+
== Components ==
  
The Workbench provides the user interface structure for Eclipse. The purpose of the Workbench is to facilitate the seamless integration of tools. These tools contribute to extension points defined by the Workbench. The Workbench is responsible for the presentation and coordination of the user interface. The tools metaphor is not specific to development tools, but can apply equally well to arbitrary applications. Note that the Workbench is sometimes called the Generic Workbench, to distinguish it from its instantiation in the Eclipse IDE, where it is called the IDE Workbench.
+
* [[Eclipse4|Eclipse 4]] - Integrating work from the e4 incubator into the Eclipse platform
 
+
* [[Rich Client Platform|RCP]] - Packages UI components for use in non-IDE 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.
+
* [[Workbench]] - Provides UI structure
 
+
* [[JFace]] - A UI toolkit with SWT based views
Platform UI does, however, provide some other components that can be reused in other RCP applications. These are:
+
* [[Common Navigator Framework]] - Assists with UI navigation of content
 
+
* [[Platform_UI/Accessibility_Features|Accessibility]] - Guidelines and support for UI accessibility
* the Outline and Properties views
+
* the Console view
+
* the Welcome Page / Intro support, with guided assistance
+
* Cheat Sheets, which guide the user through a long-running, multi-step task
+
 
+
For more details on the Rich Client Platform and other components available for use in RCP applications, see the [[Rich Client Platform][RCP Home Page]] and the [[RCP FAQ]].
+

Latest revision as of 10:09, 5 April 2021

Template:Platform UI

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

The Platform UI project is responsible for the runtime, user interface and help components of Eclipse. Platform UI provides the basic building blocks to create the Eclipse IDE and other Eclipse based applications called Rich Client Platform (RCP). The Eclipse IDE is just one instance of an RCP application, but it demonstrates the power and extensibility achievable by RCP applications.

Components

  • Eclipse 4 - Integrating work from the e4 incubator into the Eclipse platform
  • RCP - Packages UI components for use in non-IDE applications
  • Workbench - Provides UI structure
  • JFace - A UI toolkit with SWT based views
  • Common Navigator Framework - Assists with UI navigation of content
  • Accessibility - Guidelines and support for UI accessibility

Back to the top