1 | Extended system tray widget for XCenter/eCenter
|
---|
2 |
|
---|
3 | Version 0.1.1 (28-03-2011)
|
---|
4 |
|
---|
5 | Copyright (C) 2009-2011 Dmitriy Kuminov
|
---|
6 |
|
---|
7 | Extended system tray widget is free software; you can redistribute it
|
---|
8 | and/or modify it under the terms of the GNU General Public License as
|
---|
9 | published by the Free Software Foundation, in version 2 as it comes in
|
---|
10 | the "COPYING" file of the Extended system tray widget distribution. This
|
---|
11 | program is distributed in the hope that it will be useful, but WITHOUT
|
---|
12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
13 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
---|
14 | more details.
|
---|
15 |
|
---|
16 |
|
---|
17 |
|
---|
18 | INTRODUCTION
|
---|
19 |
|
---|
20 | The extended system tray widget is a plugin for XCenter that provides support
|
---|
21 | for the system tray area in the XCenter bar. This area, also called as the
|
---|
22 | notification or indicator area, is commonly used by long running applications
|
---|
23 | to display their status using graphical icons and to provide a way to control
|
---|
24 | these applications by clicking on their icons.
|
---|
25 |
|
---|
26 | There is a number of other tools to implement the described functionality (for
|
---|
27 | example, SysTray/WPS by Dmitry Zaharov and the XCenter plugin for it by Eugene
|
---|
28 | Romanenko). The main reason to create yet another implementation is that
|
---|
29 | existing ones do not provide the level of functionality required by the Qt
|
---|
30 | toolkit for which this extended implementation was created for.
|
---|
31 |
|
---|
32 | Note that since the SysTray/WPS API is being already used by a number of OS/2
|
---|
33 | applications to implement system tray icons (e.g. PM Downloader, CoolFM), the
|
---|
34 | Extended system tray widget implements this API as well to provide backward
|
---|
35 | compatibility. See the API file for more information.
|
---|
36 |
|
---|
37 | The word "extended" in the widget name is used to distinguish from the XCenter
|
---|
38 | widget by Eugene Romanenko and also to indicate that this one provides some
|
---|
39 | extended functionality (for example the ability to add any valid icon to the
|
---|
40 | tray, not only the frame window's icon).
|
---|
41 |
|
---|
42 |
|
---|
43 |
|
---|
44 | XSYSTRAY API
|
---|
45 |
|
---|
46 | The Extended system tray widget application also provides a DLL and an import
|
---|
47 | library containing the easy-to-use API for applications that want to add icons
|
---|
48 | to the system tray area. The API DLL is installed together with the widget
|
---|
49 | plugin, the import library with the C header file is contained in a separate
|
---|
50 | package within the installation archive.
|
---|
51 |
|
---|
52 | This API is in particular used by the OS/2 version of the Qt4 toolkit and
|
---|
53 | by the OpenJDK framework.
|
---|
54 |
|
---|
55 | The API documentation is contained in the supplied C header file.
|
---|
56 |
|
---|
57 |
|
---|
58 |
|
---|
59 | MANUAL INSTALLATION
|
---|
60 |
|
---|
61 | In order to manually install the extended system tray widget plugin to XCenter,
|
---|
62 | copy <plugin>\xsystray.dll to
|
---|
63 |
|
---|
64 | <XWorkplace installation folder>\plugins\xcenter\
|
---|
65 |
|
---|
66 | If you are using eCenter (rebranded XCenter included in the latest eComStation
|
---|
67 | releases), copy xsystray.dll to
|
---|
68 |
|
---|
69 | <Boot drive>:\ecs\system\ewps\plugins\xcenter\
|
---|
70 |
|
---|
71 | Also, copy <dll>\xsystray.dll to some path listed in your LIBPATH environment
|
---|
72 | variable. This DLL is necessary for all applications using XSYSTRAY API for
|
---|
73 | interfacing with the Extended system tray.
|
---|
74 |
|
---|
75 | Then you should close all XCenter instances and start them again. The system
|
---|
76 | tray widget will appear in the widget list under the name "Extended system
|
---|
77 | tray".
|
---|
78 |
|
---|
79 |
|
---|
80 |
|
---|
81 | MANUAL UPGRADING
|
---|
82 |
|
---|
83 | If you are upgrading from the previous version, you should do the following:
|
---|
84 |
|
---|
85 | - Unlock the old plugins\xcenter\xsystray.dll file (for example, using
|
---|
86 | unlock.exe from the lxlite package).
|
---|
87 |
|
---|
88 | - Overwrite it with the new <plugin>\xsystray.dll file.
|
---|
89 |
|
---|
90 | - Stop all applications using <%LIBPATH%>\xsystray.dll file.
|
---|
91 |
|
---|
92 | - Overwrite it with the new <dll>\xsystray.dll file.
|
---|
93 |
|
---|
94 | - Restart WPS. Note that restarting XCenter is not enough since the old DLL
|
---|
95 | will remain loaded in this case.
|
---|
96 |
|
---|
97 | The new version should be now picked up automatically.
|
---|
98 |
|
---|
99 |
|
---|
100 |
|
---|
101 | HISTORY
|
---|
102 |
|
---|
103 |
|
---|
104 | 0.1.1 (28-03-2011)
|
---|
105 |
|
---|
106 | Improvements:
|
---|
107 |
|
---|
108 | - Separate WPI archive (still hosted within the Qt4 SVN).
|
---|
109 |
|
---|
110 | - Added a 2px horizontal padding when no icons are shown, to make it possible
|
---|
111 | to move the widget and call its context menu with the mouse.
|
---|
112 |
|
---|
113 | - Added a tooltip "Indicator area" shown when the mouse is over the padding
|
---|
114 | zone between and around icons (also when no icons are shown, in which case
|
---|
115 | "(empty)" is added to the tooltip string).
|
---|
116 |
|
---|
117 | Fixes:
|
---|
118 |
|
---|
119 | - xsystray version was wrongly reported as 1.0.0 instead of 0.1.0.
|
---|
120 |
|
---|
121 |
|
---|
122 | 0.1.0 (11-11-2009, released as part of Qt4 Beta 4)
|
---|
123 |
|
---|
124 | - Initial release.
|
---|
125 |
|
---|
126 |
|
---|
127 |
|
---|
128 | CREDITS AND COPYRIGHTS
|
---|
129 |
|
---|
130 | This product uses code from the XWorkplace project (c) by Ulrich Moeller.
|
---|
131 |
|
---|
132 | SysTray/WPS is copyright (c) by 1999-2002 OS2.Ru DevTeam.
|
---|
133 | Syswray widget is copyright (c) by Eugene Romanenko.
|
---|
134 |
|
---|
135 | Qt is a trademark of Nokia Corporation and/or its subsidiary(-ies).
|
---|
136 | OS/2 and OS/2 Warp are trademarks of the IBM Corporation and/or its subsidiary(-ies).
|
---|
137 | eComStation is a trademark of Serenity Systems International and/or its subsidiary(-ies).
|
---|
138 |
|
---|
139 | Etc.
|
---|
140 |
|
---|