blob: bbfe04704fb2b9df222f3fb85b9ac5df4ec458e0 [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "UI Components";
$pageKeywords = "platform ui development resources";
$pageAuthor = "Platform UI Monkey";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Platform UI</h2>
<p>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 <strong>Rich Client Platform</strong> (RCP).
The Eclipse IDE is just one instance of an RCP application, but it demonstrates the power and extensibility achievable by RCP applications.</p>
Some of the components provides by Platform UI can be reused in arbitrary applications, while others are specific to the Eclipse IDE.
Examples these components are the Eclipse services, the dependency injection framework, the CSS engine, <strong>JFace</strong> and much more.</p>
</p>
<p>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 databinding and
viewers. Databinding allows to synchronize arbitrary properties of objects. Viewers are model
based adapters for certain SWT widgets, simplifying the presentation of
application data structured as lists, tables or trees.</p>
<p>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 <em>Generic Workbench</em>, to distinguish it from its instantiation in the Eclipse IDE, where it is called the <em>IDE Workbench</em>.</p>
<p>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.</p>
<p>For more details on the Rich Client Platform and other components available for use in RCP applications, see the
<A HREF="https://wiki.eclipse.org/Rich_Client_Platform">RCP wik page</A>.
</p>
<div class="homeitem3col">
<h3>What's Happening</h3>
<a name="HAPPENING"></a>
<ul>
<li><a href="https://wiki.eclipse.org/Platform_UI/Plan/4.6">4.6 Development plan</a>
</li>
<li><a href="https://wiki.eclipse.org/Platform_UI/Plan/4.6/Milestones">Bugs targeting Eclipse 4.6 </a>
</li>
</ul>
</div>
<div class="homeitem3col">
<h3>Get Involved</h3>
<a name="INVOLVED"></a>
<p>
If you are interested in participating in the development of the UI component, check out the <a href="http://wiki.eclipse.org/Platform_UI/How_to_Contribute">wiki page on how to contribute</a>
</p>
</div>
<div class="homeitem3col">
<h3>Development Resources</h3>
<a name="DEV"></a>
<ul>
<li>For Platform UI developers, check out the <a href="http://dev.eclipse.org/viewcvs/index.cgi/platform-ui-home/dev.html?view=co">Development Resources</a></li>
</ul>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Quick Links</h6>
<ul>
<li><a href="#DEV">Development Resources</a></li>
<li><a href="#HAPPENING">What's Happening</a></li>
<li><a href="#INVOLVED">Get Involved</a></li>
</ul>
</div>
<div class="sideitem">
<h6>Platform UI Related Links</h6>
<ul>
<li><a href="http://wiki.eclipse.org/Platform_UI">Platform UI Wiki</a></li>
<li><a href="https://wiki.eclipse.org/Platform_UI/How_to_Contribute">How to contribute to Platform UI</a></li>
<li><a href="https://dev.eclipse.org/mailman/listinfo/platform-ui-dev">Mailing List</a></li>
</ul>
</div>
<div class="sideitem">
<h6>Thanks to Yourkit</h6>
YourKit is kindly supporting open source projects with its full-featured
<a href="http://www.yourkit.com/java/profiler/index.jsp">YourKit Java Profiler</a>.
<a href="http://www.yourkit.com">YourKit, LLC</a> is the creator of innovative and intelligent tools for profiling Java and .NET applications.
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>