summaryrefslogtreecommitdiff
path: root/NxWidgets/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-14 20:46:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-14 20:46:47 +0000
commit8c194ec17b4fc4810bde451e803d9cb29db28e59 (patch)
tree5828697d06531c289a2027a08cf997598923738d /NxWidgets/ChangeLog.txt
parent85875d96df46aefef80c0fa242525646b4090247 (diff)
downloadnuttx-8c194ec17b4fc4810bde451e803d9cb29db28e59.tar.gz
nuttx-8c194ec17b4fc4810bde451e803d9cb29db28e59.tar.bz2
nuttx-8c194ec17b4fc4810bde451e803d9cb29db28e59.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: svn://svn.code.sf.net/p/nuttx/code/trunk@4736 42af7a65-404d-4744-a932-0658087f49c3
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.