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 "Scout/Concepts/ClientSession"

(New page: {{ScoutPage|cat=Concepts}} Desktop is the root component of Scout Client applications. * implements: {{ScoutJavadoc|IDesktop|I}} * extends: {{ScoutJavadoc|AbstractDesktop|C}} == Descri...)
 
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
Desktop is the root component of Scout Client applications.
+
 
+
* implements: {{ScoutJavadoc|IDesktop|I}}
+
* extends: {{ScoutJavadoc|AbstractDesktop|C}}
+
 
+
 
+
== Description ==
+
The desktop is the entry point of every Scout client application. It can (may) consist of:
+
 
+
* Top-level {{ScoutLink|Concepts|Menu|menus}}
+
* {{ScoutLink|Concepts|Tool|Tools}}
+
* Set of available {{ScoutLink|Concepts|Outline|outlines}} and an active {{ScoutLink|Concepts|Outline|outline}}
+
 
+
* active message box stack
+
* active tableview
+
* active detail form
+
* active search form
+
* form stack (swing: dialogs on desktop as JInternalFrames; eclipse: editors or views)
+
* dialog stack of modal and non-modal dialogs (swing: dialogs as JDialog, JFrame; eclipse: dialogs in a new Shell)
+
 
+
 
+
== Properties ==
+
''Defined with {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx()}} methods''.
+
 
+
* {{ScoutProp|Title}}: title of the application.
+
* {{ScoutProp|Outlines}}: provide a list of the Outlines defined in the application.
+
 
+
 
+
== Events ==
+
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
+
 
+
* {{ScoutEvent|Init}}
+
 
+
Events of the application:
+
* {{ScoutEvent|Open}}: used to start the Form responsible to represent pages in the main windows.
+
* {{ScoutEvent|Closed}}: occures before the application quit.
+
* {{ScoutEvent|OutlineChanged}}: the active {{ScoutLink|Concepts|Outline|outline}} changed.
+
 
+
Events to handle GUI:
+
* {{ScoutEvent|GUIAttached}}
+
* {{ScoutEvent|GUIDetached}}
+
 
+
 
+
== See Also ==
+
* {{ScoutLink|Concepts|Outline|Outline}}
+
* {{ScoutLink|Concepts|Client Plug-In|Client Plug-In}}
+

Latest revision as of 04:17, 14 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top