summaryrefslogtreecommitdiff
path: root/NxWidgets/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-09 14:54:29 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-09 14:54:29 +0000
commit42a56e78dda5561d301ec2e61a0bac17e7342525 (patch)
tree5dec10051ddb12ddf1d6d7f02c69d09ad2a27895 /NxWidgets/ChangeLog.txt
parent2b35c03044dc6acfe720522f943ee07df1b65897 (diff)
downloadpx4-nuttx-42a56e78dda5561d301ec2e61a0bac17e7342525.tar.gz
px4-nuttx-42a56e78dda5561d301ec2e61a0bac17e7342525.tar.bz2
px4-nuttx-42a56e78dda5561d301ec2e61a0bac17e7342525.zip
Several patches from Petteri Aimonen (mostly NxWidgets)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5324 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/ChangeLog.txt')
-rw-r--r--NxWidgets/ChangeLog.txt19
1 files changed, 18 insertions, 1 deletions
diff --git a/NxWidgets/ChangeLog.txt b/NxWidgets/ChangeLog.txt
index f4aedd828..113945f2f 100644
--- a/NxWidgets/ChangeLog.txt
+++ b/NxWidgets/ChangeLog.txt
@@ -182,4 +182,21 @@
* libnxwidgets/src/cnxserver.cxx: Reduce delay to allow NX server
to start. One second was un-necessarily long. Reduced to 50 MS.
Reduction suggested by Petteri Aimonen.
-
+* tools/bitmap_converter.py: This script converts from any image type
+ supported by Python imaging library to the RLE-encoded format used by
+ NxWidgets.
+* NxWidgets/nxwm/src/capplicationwindow.cxx: If the "desktop" is empty,
+ users have no need to minimize any windows. If the buttons are small,
+ it's easy to hit minimize button accidentally when trying to close an
+ application. Contributed by Petteri Aimonen.
+* NxWidgets/nxwm/src/ctaskbar.cxx: Add an option to eliminate the
+ background image. Contributed by Petteri Aimonen.
+* NxWidgets/nxwm/src/chexcalculator.cxx and NxWidgets/nxwm/src/cstartwindow.cxx:
+ The config settings CONFIG_NXWM_STARTWINDOW_ICON and CONFIG_NXWM_HEXCALCULATOR_ICON
+ allow changing the icons used for these applications. However, to declare symbols
+ for these icons user would need to modify NxWidgets header files.
+ This commit adds a simple forward declaration to the relevant files, based on the
+ configured icon. If the icon does not exist, linker will give an error about it.
+ Contributed by Petteri Aimonen.
+* NxWidgets/nxwm/src/ctaskbar.cxx: Highlight the current window in the task bar.
+ Contributed by Petteri Aimonen.