Difference between revisions of "System Tray"

From Trinity Desktop Project Wiki
Jump to navigation Jump to search
(Small fixes and doc-link update)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Image:docking.png|thumb|A CD Player and a Notes application inside the panel's system tray.]]
[[Category:KDE3]]
 
[[Category:Architecture]]
 
[[Category:Developers]]
 
{{Applicable to TDE}}
 
 
   
 
A '''tray window''' is a small window (typically 24x24 pixel) that docks into the system tray in the desktop panel. It usually displays an icon or an animated icon there. The icon serves as representative for the application, similar to a taskbar button, but consumes less screen space.
 
A '''tray window''' is a small window (typically 24x24 pixel) that docks into the system tray in the desktop panel. It usually displays an icon or an animated icon there. The icon serves as representative for the application, similar to a taskbar button, but consumes less screen space.
 
[[Image:docking.png|thumb|A CD Player and a Notes application inside the panel's system tray.]]
 
   
 
When the user clicks with the left mouse button on the icon, the main application window is shown/raised and activated. With the right mouse button, (s)he gets a popupmenu with application specific commands, including "Minimize/Restore" and "Quit".
 
When the user clicks with the left mouse button on the icon, the main application window is shown/raised and activated. With the right mouse button, (s)he gets a popupmenu with application specific commands, including "Minimize/Restore" and "Quit".
Line 16: Line 10:
   
 
The mechanism works for non-TDE applications just as well. See the description of the [https://web.archive.org/web/20100420080204/http://developer.kde.org/documentation/library/kdeqt/kde3arch/protocols-docking.html system tray docking protocol] for details.
 
The mechanism works for non-TDE applications just as well. See the description of the [https://web.archive.org/web/20100420080204/http://developer.kde.org/documentation/library/kdeqt/kde3arch/protocols-docking.html system tray docking protocol] for details.
  +
 
[[Category:KDE3]]
 
[[Category:Architecture]]
 
[[Category:Developers]]

Latest revision as of 15:35, 21 April 2022

A CD Player and a Notes application inside the panel's system tray.

A tray window is a small window (typically 24x24 pixel) that docks into the system tray in the desktop panel. It usually displays an icon or an animated icon there. The icon serves as representative for the application, similar to a taskbar button, but consumes less screen space.

When the user clicks with the left mouse button on the icon, the main application window is shown/raised and activated. With the right mouse button, (s)he gets a popupmenu with application specific commands, including "Minimize/Restore" and "Quit".

Having an icon on the system tray is a useful technique for daemon-like applications that may run for some time without user interaction but have to be there immediately when the user needs them. Examples are kppp, kisdn, kscd, kmix or knotes. With kppp and kisdn, the docked icon even provides real-time information about the network status.

With the KSystemTray in libtdeui, TDE provides a very simple API to add system tray items from your application. See the KSystemTray documentation in the Trinity API Reference for further details.

The mechanism works for non-TDE applications just as well. See the description of the system tray docking protocol for details.