summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-07 22:49:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-07 22:49:27 +0000
commitf1954ba315f940c46402865763164bceb7537710 (patch)
treebdca666857e53cd34c4869880ffd4e8bd39c5d31 /NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx
parent9bc51533db436502b50aaa0014aa272576968df2 (diff)
downloadnuttx-f1954ba315f940c46402865763164bceb7537710.tar.gz
nuttx-f1954ba315f940c46402865763164bceb7537710.tar.bz2
nuttx-f1954ba315f940c46402865763164bceb7537710.zip
Big NxWidgets simplification. Remove all hierarch logic. Widgets now exist only in a two-dimensional plane
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4712 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx')
-rw-r--r--NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx b/NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx
index de8a31b4b..21d21add9 100644
--- a/NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx
+++ b/NxWidgets/libnxwidgets/src/cwidgeteventhandlerlist.cxx
@@ -280,40 +280,6 @@ void CWidgetEventHandlerList::raiseDropEvent(nxgl_coord_t x, nxgl_coord_t y)
}
/**
- * Raise a move forward event to the event handler.
- */
-
-void CWidgetEventHandlerList::raiseMoveForwardEvent(void)
-{
- if (isEnabled())
- {
- CWidgetEventArgs e(m_widget, 0, 0, 0, 0, KEY_CODE_NONE);
-
- for (int i = 0; i < m_widgetEventHandlers.size(); ++i)
- {
- m_widgetEventHandlers.at(i)->handleMoveForwardEvent(e);
- }
- }
-}
-
-/**
- * Raise a move backward event to the event handler.
- */
-
-void CWidgetEventHandlerList::raiseMoveBackwardEvent(void)
-{
- if (isEnabled())
- {
- CWidgetEventArgs e(m_widget, 0, 0, 0, 0, KEY_CODE_NONE);
-
- for (int i = 0; i < m_widgetEventHandlers.size(); ++i)
- {
- m_widgetEventHandlers.at(i)->handleMoveBackwardEvent(e);
- }
- }
-}
-
-/**
* Raise a key press event to the event handler.
*
* @param key The code of the key that caused the event.