summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/src
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-09 19:31:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-09 19:31:48 +0000
commitd97899b6e2c22b4f33f23a8333a03cd323bcd45e (patch)
tree3275cf363a5ddb67c70108c4712f8903fb0b958c /NxWidgets/libnxwidgets/src
parent0f72f7085182b9038e0037c3b949458ac3306fdc (diff)
downloadnuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.tar.gz
nuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.tar.bz2
nuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.zip
NxWidgets: Remove modal loops, Add CWindowEventHandler*. NxWM: Add support for full screen applications
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4716 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/libnxwidgets/src')
-rw-r--r--NxWidgets/libnxwidgets/src/cnxserver.cxx20
-rw-r--r--NxWidgets/libnxwidgets/src/cnxwidget.cxx53
-rw-r--r--NxWidgets/libnxwidgets/src/cwidgetcontrol.cxx187
3 files changed, 110 insertions, 150 deletions
diff --git a/NxWidgets/libnxwidgets/src/cnxserver.cxx b/NxWidgets/libnxwidgets/src/cnxserver.cxx
index 69b1c5c4e..dc6316835 100644
--- a/NxWidgets/libnxwidgets/src/cnxserver.cxx
+++ b/NxWidgets/libnxwidgets/src/cnxserver.cxx
@@ -215,7 +215,7 @@ bool CNxServer::connect(void)
// Start the server task
gvdbg("NxServer::connect: Starting server task\n");
- serverId = task_create("NX Server", CONFIG_NXWIDGETS_SERVERPRIO,
+ serverId = TASK_CREATE("NX Server", CONFIG_NXWIDGETS_SERVERPRIO,
CONFIG_NXWIDGETS_SERVERSTACK, server, (FAR const char **)0);
if (serverId < 0)
{
@@ -291,7 +291,7 @@ bool CNxServer::connect(void)
#ifndef CONFIG_NX_MULTIUSER
void CNxServer::disconnect(void)
{
- /* Close the server */
+ // Close the server
if (m_hNxServer)
{
@@ -324,7 +324,7 @@ void CNxServer::disconnect(void)
}
}
- /* Disconnect from the server */
+ // Disconnect from the server
if (m_hNxServer)
{
@@ -346,7 +346,7 @@ int CNxServer::server(int argc, char *argv[])
int ret;
#if defined(CONFIG_NXWIDGETS_EXTERNINIT)
- /* Use external graphics driver initialization */
+ // Use external graphics driver initialization
dev = up_nxdrvinit(CONFIG_NXWIDGETS_DEVNO);
if (!dev)
@@ -356,7 +356,7 @@ int CNxServer::server(int argc, char *argv[])
}
#elif defined(CONFIG_NX_LCDDRIVER)
- /* Initialize the LCD device */
+ // Initialize the LCD device
ret = up_lcdinitialize();
if (ret < 0)
@@ -365,7 +365,7 @@ int CNxServer::server(int argc, char *argv[])
return EXIT_FAILURE;
}
- /* Get the device instance */
+ // Get the device instance
dev = up_lcdgetdev(CONFIG_NXWIDGETS_DEVNO);
if (!dev)
@@ -374,11 +374,11 @@ int CNxServer::server(int argc, char *argv[])
return EXIT_FAILURE;
}
- /* Turn the LCD on at 75% power */
+ // Turn the LCD on at 75% power
(void)dev->setpower(dev, ((3*CONFIG_LCD_MAXPOWER + 3)/4));
#else
- /* Initialize the frame buffer device */
+ // Initialize the frame buffer device
ret = up_fbinitialize();
if (ret < 0)
@@ -395,7 +395,7 @@ int CNxServer::server(int argc, char *argv[])
}
#endif
- /* Then start the server */
+ // Then start the server
ret = nx_run(dev);
gvdbg("nx_run returned: %d\n", errno);
@@ -436,7 +436,7 @@ FAR void *CNxServer::listener(FAR void *arg)
break;
}
- /* If we received a message, we must be connected */
+ // If we received a message, we must be connected
if (!This->m_connected)
{
diff --git a/NxWidgets/libnxwidgets/src/cnxwidget.cxx b/NxWidgets/libnxwidgets/src/cnxwidget.cxx
index 4d8a97627..97d24b73c 100644
--- a/NxWidgets/libnxwidgets/src/cnxwidget.cxx
+++ b/NxWidgets/libnxwidgets/src/cnxwidget.cxx
@@ -174,7 +174,6 @@ CNxWidget::CNxWidget(CWidgetControl *pWidgetControl,
m_flags.erased = true;
m_flags.visibleRegionCacheInvalid = true;
m_flags.hidden = false;
- m_flags.modal = false;
// Set hierarchy pointers
@@ -398,17 +397,6 @@ const bool CNxWidget::isEnabled() const
}
/**
- * Is the widget modal? Only true if the Widget singleton is also modal.
- *
- * @return True if the widget is modal.
- */
-
-const bool CNxWidget::isModal(void) const
-{
- return m_widgetControl->isModal() & m_flags.modal;
-}
-
-/**
* Insert the dimensions that this widget wants to have into the rect
* passed in as a parameter. All coordinates are relative to the widget's
* parent.
@@ -576,10 +564,6 @@ void CNxWidget::close(void)
release(clickedWidget->getX(), clickedWidget->getY());
}
- // Ensure the widget isn't running modally
-
- stopModal();
-
if (m_parent != (CNxWidget *)NULL)
{
m_parent->closeChild(this);
@@ -622,10 +606,6 @@ bool CNxWidget::hide(void)
if (!m_flags.hidden)
{
m_flags.hidden = true;
-
- // Ensure the widget isn't running modally
-
- stopModal();
m_widgetEventHandlers->raiseHideEvent();
return true;
}
@@ -1399,39 +1379,6 @@ bool CNxWidget::removeChild(CNxWidget *widget)
}
/**
- * Run the widget modally.
- */
-
-void CNxWidget::goModal(void)
-{
- // Remember that we're running modally
-
- m_flags.modal = true;
-
- // Steal focus
-
- focus();
-
- // Loop until no longer modal
-
- while (isModal())
- {
- // Process pending events
-
- bool interestingEvent = m_widgetControl->pollEvents(this);
-
- // Did any interesting events occur?
-
- if (!interestingEvent)
- {
- // No, give up the CPU until something interesting happens.
-
- m_widgetControl->waitForModalEvent();
- }
- }
-}
-
-/**
* Get the child widget at the specified index.
*
* @param index Index of the child to retrieve.
diff --git a/NxWidgets/libnxwidgets/src/cwidgetcontrol.cxx b/NxWidgets/libnxwidgets/src/cwidgetcontrol.cxx
index 9c0d67be3..5ecd8ab22 100644
--- a/NxWidgets/libnxwidgets/src/cwidgetcontrol.cxx
+++ b/NxWidgets/libnxwidgets/src/cwidgetcontrol.cxx
@@ -83,7 +83,6 @@ CWidgetControl::CWidgetControl(FAR const CWidgetStyle *style)
// Initialize state
m_port = (CGraphicsPort *)NULL;
- m_modal = false;
m_haveGeometry = false;
m_clickedWidget = (CNxWidget *)NULL;
m_focusedWidget = (CNxWidget *)NULL;
@@ -108,12 +107,15 @@ CWidgetControl::CWidgetControl(FAR const CWidgetStyle *style)
// Intialize semaphores:
//
- // m_modalSem. The semaphore that will wake up the modal loop on mouse or
- // keypress events
+ // m_waitSem. The semaphore that will wake up the external logic on mouse events,
+ // keypress events, or widget deletion events.
// m_geoSem. The semaphore that will synchronize window size and position
- // informatin.
+ // information.
- sem_init(&m_modalSem, 0, 0);
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ m_waiting = false;
+ sem_init(&m_waitSem, 0, 0);
+#endif
#ifdef CONFIG_NX_MULTIUSER
sem_init(&m_geoSem, 0, 0);
#endif
@@ -141,9 +143,12 @@ CWidgetControl::CWidgetControl(FAR const CWidgetStyle *style)
CWidgetControl::~CWidgetControl(void)
{
- // Stop any ongoing modal operation
+ // Notify any external waiters... this should not happen becaue it
+ // it is probably already too late
- stopModal();
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ postWindowEvent();
+#endif
// Delete any contained instances
@@ -165,88 +170,69 @@ CWidgetControl::~CWidgetControl(void)
}
/**
- * Run the widget modally. This will run the CWidgetControl
- * application until stopModal() is called.
- */
-
-void CWidgetControl::goModal(void)
-{
- // Enter modal
-
- m_modal = true;
-
- // Loop until stopModal() is called
-
- while (m_modal)
- {
- // Process pending events
-
- bool interestingEvent = pollEvents();
-
- // Did any interesting events occur?
-
- if (!interestingEvent)
- {
- // No, give up the CPU until something interesting happens.
-
- waitForModalEvent();
- }
- }
-}
-
-/**
- * Wait for an interesting modal event to occur (like a mouse or keyboard event)
- */
-
-void CWidgetControl::waitForModalEvent(void)
-{
- // It would be an error if this were called outside of a modal loop
-
- if (m_modal)
- {
- // Wait for an interesting event (like a mouse or keyboard event)
-
- (void)sem_wait(&m_modalSem);
- }
-}
-
-/**
- * Wake up the modal loop
+ * Wait for an interesting window event to occur (like a mouse or keyboard event).
+ * Caller's should exercise care to assure that the test for waiting and this
+ * call are "atomic" .. perhaps by locking the scheduler like:
+ *
+ * sched_lock();
+ * ...
+ * if (no interesting events)
+ * {
+ * window->waitForWindowEvent();
+ * }
+ * sched_unlock();
*/
-void CWidgetControl::wakeupModalLoop(void)
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+void CWidgetControl::waitForWindowEvent(void)
{
- if (m_modal)
- {
- (void)sem_post(&m_modalSem);
- }
+ m_waiting = true;
+ (void)sem_wait(&m_waitSem);
+ m_waiting = false;
}
+#endif
/**
- * Stop the widget running modally.
+ * Wake up external logic waiting for a window event
*/
-void CWidgetControl::stopModal(void)
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+void CWidgetControl::postWindowEvent(void)
{
- if (m_modal)
+ if (m_waiting)
{
- // No longer modal
-
- m_modal = false;
-
- // Wake up the modal loop so that it can terminate properly
-
- (void)sem_post(&m_modalSem);
+ (void)sem_post(&m_waitSem);
}
}
+#endif
/**
* Run all code that needs to take place on a periodic basis.
- * This is normally called from and is the main body of goModal()
- * with widget == NULL.
+ * This method normally called externally... either periodically
+ * or when a window event is detected. If CONFIG_NXWIDGET_EVENTWAIT
+ * is defined, then external logic want call waitWindow event and
+ * when awakened, they chould call this function. As an example:
+ *
+ * for (;;)
+ * {
+ * sched_lock(); // Make the sequence atomic
+ * if (!window->pollEvents(0))
+ * {
+ * window->waitWindowEvent();
+ * }
+ * sched_unlock();
+ * }
+ *
+ * This method is just a wrapper simply calls the following methods.
+ * It can easily be replace with custom, external logic.
*
- * @param widget Sub-widget to run, used for modal widgets; omit
- * this parameter to run the whole system.
+ * processDeleteQueue()
+ * pollMouseEvents(widget)
+ * pollKeyboardEvents()
+ * pollCursorControlEvents()
+ *
+ * @param widget. Specific widget to poll. Use NULL to run the
+ * all widgets in the window.
* @return True means some interesting event occurred
*/
@@ -316,7 +302,15 @@ void CWidgetControl::removeControlledWidget(CNxWidget *widget)
void CWidgetControl::addToDeleteQueue(CNxWidget *widget)
{
+ // Add the widget to the delete queue
+
m_deleteQueue.push_back(widget);
+
+ // Then wake up logic that may be waiting for a window event
+
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ postWindowEvent();
+#endif
}
/**
@@ -422,6 +416,7 @@ void CWidgetControl::geometryEvent(NXHANDLE hWindow,
giveGeoSem();
}
+ m_eventHandlers.raiseGeometryEvent();
sched_unlock();
}
@@ -439,6 +434,7 @@ void CWidgetControl::redrawEvent(FAR const struct nxgl_rect_s *nxRect, bool more
{
CRect rect;
rect.setNxRect(nxRect);
+ m_eventHandlers.raiseRedrawEvent();
}
/**
@@ -449,7 +445,8 @@ void CWidgetControl::redrawEvent(FAR const struct nxgl_rect_s *nxRect, bool more
* @param pos The (x,y) position of the mouse.
* @param buttons See NX_MOUSE_* definitions.
*/
-
+
+#ifdef CONFIG_NX_MOUSE
void CWidgetControl::newMouseEvent(FAR const struct nxgl_point_s *pos, uint8_t buttons)
{
// Save the mouse X/Y position
@@ -569,10 +566,17 @@ void CWidgetControl::newMouseEvent(FAR const struct nxgl_point_s *pos, uint8_t b
}
#endif
- // Then wake up the modal loop
+ // Notify any external logic that a keyboard event has occurred
+
+ m_eventHandlers.raiseMouseEvent();
- wakeupModalLoop();
+ // Then wake up logic that may be waiting for a window event
+
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ postWindowEvent();
+#endif
}
+#endif
/**
* This event is called from CCallback instance to provide notifications of
@@ -582,7 +586,8 @@ void CWidgetControl::newMouseEvent(FAR const struct nxgl_point_s *pos, uint8_t b
* @param nCh The number of characters that are available in pStr[].
* @param pStr The array of characters.
*/
-
+
+#ifdef CONFIG_NX_KBD
void CWidgetControl::newKeyboardEvent(uint8_t nCh, FAR const uint8_t *pStr)
{
FAR uint8_t *pBuffer = &m_kbdbuf[m_nCh];
@@ -596,10 +601,17 @@ void CWidgetControl::newKeyboardEvent(uint8_t nCh, FAR const uint8_t *pStr)
*pBuffer++ = *pStr++;
}
- // Then wake up the modal loop
+ // Notify any external logic that a keyboard event has occurred
+
+ m_eventHandlers.raiseKeyboardEvent();
+
+ // Then wake up logic that may be waiting for a window event
- wakeupModalLoop();
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ postWindowEvent();
+#endif
}
+#endif
/**
* This event means that cursor control data is available for the window.
@@ -617,9 +629,11 @@ void CWidgetControl::newCursorControlEvent(ECursorControl cursorControl)
m_nCc++;
}
- // Then wake up the modal loop
+ // Then wake up logic that may be waiting for a window event
- wakeupModalLoop();
+#ifdef CONFIG_NXWIDGET_EVENTWAIT
+ postWindowEvent();
+#endif
}
/**
@@ -718,17 +732,16 @@ uint32_t CWidgetControl::elapsedTime(FAR const struct timespec *startTime)
/**
* Pass clicks to the widget hierarchy. If a single widget
- * is supplied, only that widget is sent the click. That widget
- * should be running modally.
+ * is supplied, only that widget is sent the click.
*
* @param x Click xcoordinate.
* @param y Click ycoordinate.
- * @param widget Pointer to a modally-running widget or NULL.
+ * @param widget Pointer to a specific widget or NULL.
*/
void CWidgetControl::handleLeftClick(nxgl_coord_t x, nxgl_coord_t y, CNxWidget *widget)
{
- // Working with a modal widget or the whole structure?
+ // Working with a specific widget or the whole structure?
if (widget == (CNxWidget *)NULL)
{
@@ -769,8 +782,8 @@ void CWidgetControl::processDeleteQueue(void)
/**
* Process mouse/touchscreen events and send throughout the hierarchy.
*
- * @param widget to process, used for modal widgets; omit this parameter
- * to run the whole system.
+ * @param widget. Specific widget to poll. Use NULL to run the
+ * all widgets in the window.
* @return True means a mouse event occurred
*/