Update STM3240G-EVAL defconfig to support NxConsole keyboard input; increase spacing of icons on the start window

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4765 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-05-23 01:19:18 +00:00
parent 357e4b55dd
commit faa17026c3
3 changed files with 23 additions and 8 deletions

View File

@ -152,3 +152,4 @@
changes when the widget is selected. Thenthe background color
in the font is wrong. Fixed in CButtonArrary, but the problem
probably exists in other places as well.
* NxWM: Increase default spacing of icons on the Start Window.

View File

@ -4,9 +4,10 @@ NxWidgets
NxWM
----
(4) General issues
(3) NxConsole issues
(1) Platform specific issues
(4) General Issues
(3) NxConsole Issues
(1) CHexCalculator Issues
(1) Platform specific Issues
See also the NuttX TODO list graphics/ section for related issues.
@ -109,7 +110,20 @@ o NxConsole Issues
Status: Open
Priorioty: Low, this would be necessary to fix to productize the windows.
o Platform specific issues
o CHexCalculator Issues
---------------------
Title: NEW DATA ENTRY IS APPENDED TO PREVIOUS RESULT
Description: For example 1+2= and 3 is shown. But if you enter 4, then
34 is shown. You have to manually clear the calculator ("C")
before entering the next number.
Status: Open
Priority: Low, this is only a demo. This would, of course, have to be
fixed if you wanted a production quality calculator (but then
you would probably also want to add quite a few more features
as well).
o Platform specific Issues
------------------------
Title: MISSING TOUCH RELEASE

View File

@ -261,8 +261,8 @@
/**
* Horizontal and vertical spacing of icons in the task bar.
*
* CONFIG_NXWM_STARTWINDOW_VSPACING - Vertical spacing. Default: 2 pixels
* CONFIG_NXWM_STARTWINDOW_HSPACING - Horizontal spacing. Default: 2 rows
* CONFIG_NXWM_STARTWINDOW_VSPACING - Vertical spacing. Default: 4 pixels
* CONFIG_NXWM_STARTWINDOW_HSPACING - Horizontal spacing. Default: 4 rows
* CONFIG_NXWM_STARTWINDOW_ICON - The glyph to use as the start window icon
* CONFIG_NXWM_STARTWINDOW_MQNAME - The well known name of the message queue
* Used to communicated from CWindowMessenger to the start window thread.
@ -280,11 +280,11 @@
*/
#ifndef CONFIG_NXWM_STARTWINDOW_VSPACING
# define CONFIG_NXWM_STARTWINDOW_VSPACING (2)
# define CONFIG_NXWM_STARTWINDOW_VSPACING (4)
#endif
#ifndef CONFIG_NXWM_STARTWINDOW_HSPACING
# define CONFIG_NXWM_STARTWINDOW_HSPACING (2)
# define CONFIG_NXWM_STARTWINDOW_HSPACING (4)
#endif
/**