Changeset 843 for trunk/src/3rdparty/os2/xsystray
- Timestamp:
- Mar 28, 2011, 12:59:31 PM (14 years ago)
- Location:
- trunk/src/3rdparty/os2/xsystray
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/README
r837 r843 1 1 Extended system tray widget for XCenter/eCenter 2 Version 0.1.0 2 3 Version 0.1.1 (28-03-2011) 3 4 4 5 Copyright (C) 2009-2011 Dmitriy Kuminov … … 18 19 19 20 The extended system tray widget is a plugin for XCenter that provides support 20 for the system tray area in the XCenter bar. This area is commonly used by 21 long running applications to display their status using graphical icons and to 22 provide a way to control these applications by clicking on their icons. 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. 23 25 24 26 There is a number of other tools to implement the described functionality (for … … 40 42 41 43 42 INSTALLATION 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 43 60 44 61 In order to manually install the extended system tray widget plugin to XCenter, 45 copy xsystray.dll to62 copy xsystray.dll to 46 63 47 64 <XWorkplace installation folder>\plugins\xcenter\ … … 50 67 releases), copy xsystray.dll to 51 68 52 <Boot drive>:\ecs\system\ewps\plugins\xcenter\ 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. 53 74 54 75 Then you should close all XCenter instances and start them again. The system … … 58 79 59 80 60 UPGRADING81 UPGRADING 61 82 62 83 If you are upgrading from the previous version, you should do the following: 63 84 64 - Unlock the old xsystray.dll file (for example, using unlock.exe from the 65 lxlite package). 66 - Overwrite it with the new xsystray.dll file. 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 67 94 - Restart WPS. Note that restarting XCenter is not enough since the old DLL 68 95 will remain loaded in this case. … … 74 101 HISTORY 75 102 76 ... unreleased yet ... 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. 77 120 78 121 122 123 124 125 126 79 127 80 128 CREDITS AND COPYRIGHTS -
trunk/src/3rdparty/os2/xsystray/apilib/apilib.pro
r835 r843 12 12 INCLUDEPATH += .. ../plugin ../apilib 13 13 14 DESTDIR = $$[QT_INSTALL_PLUGINS]/xcenter/apilib14 DESTDIR = /apilib -
trunk/src/3rdparty/os2/xsystray/plugin/plugin.pro
r835 r843 12 12 INCLUDEPATH += .. ../apilib 13 13 14 DESTDIR = $$[QT_INSTALL_PLUGINS]/xcenter14 DESTDIR =
Note:
See TracChangeset
for help on using the changeset viewer.