aboutsummaryrefslogtreecommitdiff
path: root/NxWidgets/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-14 20:46:47 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-14 20:46:47 +0000
commitdb2bfa3e69fee84003a2fe13632c21046a1dc5b4 (patch)
tree5828697d06531c289a2027a08cf997598923738d /NxWidgets/ChangeLog.txt
parent5baa9ac0f90e1243622b4454cb27e35384d49794 (diff)
downloadpx4-firmware-db2bfa3e69fee84003a2fe13632c21046a1dc5b4.tar.gz
px4-firmware-db2bfa3e69fee84003a2fe13632c21046a1dc5b4.tar.bz2
px4-firmware-db2bfa3e69fee84003a2fe13632c21046a1dc5b4.zip
NxWM: Calibration is now done on a separate thread; Change mechanism for reporting calibration data; add method to determine if the application is full-screen
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4736 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'NxWidgets/ChangeLog.txt')
-rwxr-xr-xNxWidgets/ChangeLog.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/NxWidgets/ChangeLog.txt b/NxWidgets/ChangeLog.txt
index 0cb95cc13..5b14799bd 100755
--- a/NxWidgets/ChangeLog.txt
+++ b/NxWidgets/ChangeLog.txt
@@ -70,4 +70,16 @@
a button. Probably should separate basic imaging functionality as CImage
and create a new CImageButton.
* NxWM::CStartWindow: Now ignores any close application button presses
- (You can't close the start window). \ No newline at end of file
+ (You can't close the start window).
+* NxWM::CCalibration: The calibration application now has its own thread.
+ This was necessary for a proper integration with the taskbar.
+* NxWM::CCalibration and NxWM:CTouchscreen: Changed the mechanism use
+ to report calbration data. It is now reported directly from CCalibration
+ to CTouchscreen. If external logic needs calibration, it can now get it
+ from CTouchscreen instead of CCalibration. This change was necessary
+ to make the termination conditions of CCalibration clean (it used to
+ have to persist until some external logic got the Calibration data).
+* IApplication, IApplicationWindow, and all classes that inherit from
+ these: Now support method to report if the application is a full-screen
+ or a normal application. This is necessary to prevent CTaskbar from
+ displaying a task bar on top of a full-screen window.