summaryrefslogtreecommitdiffstats
path: root/examples/org.eclipse.swt.examples/plugin.properties
diff options
context:
space:
mode:
authorVeronika Irvine <veronika>2002-06-19 20:04:33 +0000
committerVeronika Irvine <veronika>2002-06-19 20:04:33 +0000
commit8dbde78609c1a7aba227cffd91cc3edc2ce231a5 (patch)
treee7471119d750c0357fef406918bae6d993527bc1 /examples/org.eclipse.swt.examples/plugin.properties
parentd7e920b839c121a5575de05e68d5985f6209cd01 (diff)
downloadeclipse.platform.swt-8dbde78609c1a7aba227cffd91cc3edc2ce231a5.tar.gz
eclipse.platform.swt-8dbde78609c1a7aba227cffd91cc3edc2ce231a5.tar.xz
eclipse.platform.swt-8dbde78609c1a7aba227cffd91cc3edc2ce231a5.zip
documentation updatesv2047a
Diffstat (limited to 'examples/org.eclipse.swt.examples/plugin.properties')
-rwxr-xr-xexamples/org.eclipse.swt.examples/plugin.properties55
1 files changed, 33 insertions, 22 deletions
diff --git a/examples/org.eclipse.swt.examples/plugin.properties b/examples/org.eclipse.swt.examples/plugin.properties
index 0cc61041f8..6382611aed 100755
--- a/examples/org.eclipse.swt.examples/plugin.properties
+++ b/examples/org.eclipse.swt.examples/plugin.properties
@@ -4,21 +4,26 @@ plugin.SWTStandaloneExampleSet.name = SWT Standalone Examples Plugin
launchcategory.SWTStandaloneExamples.name = Standalone
launchcategory.SWTStandaloneExamples.description = \
A collection of Standard Widget Toolkit examples that run independant \
- of the Eclipse Platform.\n\n\
- These examples may take a moment to start while a new runtime environment \
- is created in the background.
+ of the Eclipse Platform.
launchitem.AddressBook.name = Address Book
launchitem.AddressBook.description = \
- The AddressBook example shows how the org.eclipse.swt.Table class can be used to \
- present tabular information.\n\n\
- The application can save and load address books, sort the entries, search for strings within \
- the fields and perform other operations that would typically be found in this kind of application.
+ The AddressBook example shows how the Table control can be used to \
+ present information in a tabular format.\n\n\
+ The application can save and load data from a file, sort the entries, and \
+ search for strings within the fields.
+
+launchitem.ControlExample.name = SWT Controls Example
+launchitem.ControlExample.description = \
+ The Controls example is a simple demonstration of common SWT controls. \n\n\
+ It consists of a tab folder where each tab in the folder allows the user \
+ to interact with a different control. \
+ The user can change styles and settings and view how this affects the control.
launchitem.FileViewer.name = File Viewer
launchitem.FileViewer.description = \
The File Viewer example shows how a simple application can be implemented using SWT.\n\n\
- This application provides the ability to browse files and folders and manipulate via Drag & Drop. \
+ This application provides the ability to navigate files and folders and manipulate them via Drag and Drop. \
It includes the use of alternate threads for long actions and demonstrates the use of the Tree, \
Table, Toolbar and Program.
@@ -28,35 +33,32 @@ launchitem.HoverHelp.description = \
on a number of different SWT controls including Buttons, TableItems, ToolItems and TreeItems.\n\n\
The example implements its own tooltip and hover help support. \
To see the custom tooltips in action, hover over an item or button in the UI. \
- Notice that images appear in the left-hand corner of the tooltip, unlike standard SWT tooltips \
- created using setToolTip() on those widgets that natively support them.\n\n\
- To see the custom hover help in action, hover over an item or button in the UI as before until \
- the tooltip is displayed. Without moving the pointer, hit F1. A new Shell will pop up with the \
- extended hover help information for the UI element in question.
+ An image appears in the left-hand corner of the tooltip.\n\n\
+ To see the custom hover help in action, hover over an item or button in the UI until \
+ the tooltip is displayed. Without moving the mouse, hit F1. A new Shell will pop up with the \
+ extended hover help information for the UI element in question
launchitem.HelloWorld1.name = Hello World (1)
launchitem.HelloWorld1.description = \
- This example demonstrates the minimum amount of code required to open an SWT Shell and \
- process the events.
+ This example demonstrates how to open a Shell and process the events.
launchitem.HelloWorld2.name = Hello World (2)
launchitem.HelloWorld2.description = \
- This example builds on HelloWorld1 and demonstrates the minimum amount of code required to \
- open an SWT Shell with a Label and process the events.
+ This example builds on HelloWorld1 and demonstrates how to display a Label inside the Shell.
launchitem.HelloWorld3.name = Hello World (3)
launchitem.HelloWorld3.description = \
- This example builds on HelloWorld2 and demonstrates how to resize the Label when the Shell \
- resizes using a Listener mechanism.
+ This example builds on HelloWorld2 and demonstrates how to resize the Label \
+ when the Shell resizes using a Listener mechanism.
launchitem.HelloWorld4.name = Hello World (4)
launchitem.HelloWorld4.description = \
- This example builds on HelloWorld2 and demonstrates how to resize the Label when the Shell \
- resizes using a Layout.
+ This example builds on HelloWorld2 and demonstrates how to resize the Label \
+ when the Shell resizes using a Layout.
launchitem.HelloWorld5.name = Hello World (5)
launchitem.HelloWorld5.description = \
- This example builds on HelloWorld1 and demonstrates how to draw directly on an SWT Control.
+ This example builds on HelloWorld1 and demonstrates how to draw directly on an SWT Control using a graphic context.
launchitem.ImageAnalyzer.name = Image Analyzer
launchitem.ImageAnalyzer.description = \
@@ -91,6 +93,15 @@ launchitem.JavaViewer.description = \
To see the effect of the line styler, open a *.java file. \
When the contents of the file are displayed in the editor area, notice that the keywords have been highlighted.
+launchitem.LayoutExample.name = Layout Example
+launchitem.LayoutExample.description = \
+ This example is a simple demonstration of common SWT layouts. \n\n\
+ It consists of a tab folder where each tab in the folder allows the \
+ user to interact with a different SWT layout. \
+ The user can insert widgets into a layout and set the values of the layout data \
+ using a property sheet. When the user has a suitable arrangement, code can be \
+ generated by clicking on the Code button.
+
launchitem.TextEditor.name = Text Editor
launchitem.TextEditor.description = \
This example demonstrates how to use the StyledText widget to implement \