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

m (See Also)
m (removed the Exec prefix of the events)
Line 32: Line 32:
 
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
 
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
  
* {{ScoutEvent|ExecInit}}
+
* {{ScoutEvent|Init}}
  
 
Events of the application:
 
Events of the application:
* {{ScoutEvent|ExecOpen}}: used to start the Form responsible to represent pages in the main windows.
+
* {{ScoutEvent|Open}}: used to start the Form responsible to represent pages in the main windows.
* {{ScoutEvent|ExecClosed}}: occures before the application quit.
+
* {{ScoutEvent|Closed}}: occures before the application quit.
* {{ScoutEvent|ExecOutlineChanged}}: the active {{ScoutLink|Concepts|Outline|outline}} changed.
+
* {{ScoutEvent|OutlineChanged}}: the active {{ScoutLink|Concepts|Outline|outline}} changed.
  
 
Events to handle GUI:
 
Events to handle GUI:

Revision as of 16:34, 30 October 2010

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

Desktop is the root component of Scout Client applications.


Description

The desktop is the entry point of every Scout Client application. It can (may) consist of:

  • 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 The Scout documentation has been moved to https://eclipsescout.github.io/. methods.


Events

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

Events of the application:

Events to handle GUI:


See Also

Back to the top