summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/ctaskbar.cxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-19 04:20:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-19 04:20:56 +0000
commit38b3dcac9e4dcb225ceaa7a4798a644537c50ece (patch)
treeaec833bcd4833134c4a769b6e3057a06eb2a9f74 /NxWidgets/nxwm/src/ctaskbar.cxx
parente5350e893168b675cfd96b36fd7aad3ccfabf791 (diff)
downloadnuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.tar.gz
nuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.tar.bz2
nuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.zip
NxWM unit test now appears bug free (other than some NxConsole-related issues).
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4750 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/nxwm/src/ctaskbar.cxx')
-rw-r--r--NxWidgets/nxwm/src/ctaskbar.cxx16
1 files changed, 11 insertions, 5 deletions
diff --git a/NxWidgets/nxwm/src/ctaskbar.cxx b/NxWidgets/nxwm/src/ctaskbar.cxx
index b4df0bb86..6b0510017 100644
--- a/NxWidgets/nxwm/src/ctaskbar.cxx
+++ b/NxWidgets/nxwm/src/ctaskbar.cxx
@@ -47,6 +47,7 @@
#include "cwidgetcontrol.hxx"
#include "cnxtkwindow.hxx"
+#include "cwindowmessenger.hxx"
#include "ctaskbar.hxx"
/********************************************************************************************
@@ -748,7 +749,7 @@ void CTaskbar::clickIcon(int index, bool click)
/**
* Create a raw window.
*
- * 1) Create a dumb CWigetControl instance
+ * 1) Create a dumb CWigetControl instance (see note below)
* 2) Pass the dumb CWidgetControl instance to the window constructor
* that inherits from INxWindow. This will "smarten" the CWidgetControl
* instance with some window knowlede
@@ -756,13 +757,18 @@ void CTaskbar::clickIcon(int index, bool click)
* 4) After that, the fully smartened CWidgetControl instance can
* be used to generate additional widgets by passing it to the
* widget constructor
+ *
+ * NOTE: Actually, NxWM uses the CWindowMessenger class that inherits from
+ * CWidgetControl. That class just adds some unrelated messenging capability;
+ * It cohabitates with CWidgetControl only becuase it nees the CWidgetControl
+ * this point.
*/
NXWidgets::CNxWindow *CTaskbar::openRawWindow(void)
{
- // Initialize the widget control using the default style
+ // Create the widget control (with the window messenger) using the default style
- NXWidgets::CWidgetControl *control = new NXWidgets::CWidgetControl((NXWidgets::CWidgetStyle *)NULL);
+ CWindowMessenger *control = new CWindowMessenger((NXWidgets::CWidgetStyle *)NULL);
// Get an (uninitialized) instance of the background window as a class
// that derives from INxWindow.
@@ -797,9 +803,9 @@ NXWidgets::CNxWindow *CTaskbar::openRawWindow(void)
NXWidgets::CNxTkWindow *CTaskbar::openFramedWindow(void)
{
- // Initialize the widget control using the default style
+ // Create the widget control (with the window messenger) using the default style
- NXWidgets::CWidgetControl *control = new NXWidgets::CWidgetControl((NXWidgets::CWidgetStyle *)NULL);
+ CWindowMessenger *control = new CWindowMessenger((NXWidgets::CWidgetStyle *)NULL);
// Get an (uninitialized) instance of the framed window as a class
// that derives from INxWindow.