Add beginning a a media player window to NxWM from Ken Pettit. Still a work in progress

This commit is contained in:
Gregory Nutt 2013-05-11 16:15:51 -06:00
parent 2f720ee01f
commit 425772f3c2
2 changed files with 17 additions and 3 deletions

View File

@ -551,3 +551,5 @@
* apps/examplex/nxtext: Remove the CONFIG_EXAMPLES_NXTEXT_NOGETRUN
option. The test logic was bad for the case where this options
is not selected. Also, complete the empty Kconfig file (2013-5-7).
* apps/NxWidgets/Kconfig: Updated to match NxWidgets/Kconfig by
Ken Pettit (2013-5-11).

View File

@ -470,7 +470,7 @@ config NXWM_BACKGROUND_IMAGE
NXWidgets::g_nuttxBitmap
comment "Application Window Configuration"
config NXWM_CUSTOM_APPWINDOW_ICONS
bool "Custom Start/Stop Application Window Icons"
default n
@ -591,13 +591,13 @@ if NXWM_NXCONSOLE_CUSTOM_COLORS
config NXWM_NXCONSOLE_WCOLOR
hex "NxConsole Background Color"
---help---
The color of the NxConsole window background. Default:
The color of the NxConsole window background. Default:
RGB(192,192,192)
config NXWM_NXCONSOLE_FONTCOLOR
hex "NxConsole Font Color"
---help---
The color of the fonts to use in the NxConsole window.
The color of the fonts to use in the NxConsole window.
Default: RGB(0,0,0)
endif
@ -840,4 +840,16 @@ config NXWM_HEXCALCULATOR_FONTID
NxWM font ID (NXWM_DEFAULT_FONTID). Default: 0
endif
config NXWM_MEDIAPLAYER
bool "Enable Media Player"
default n
---help---
Enable support for the MP3 Media Player. This features requires
a board that includes an MP3 Codec chip, such as the Mikromedia
boards available from MikroElektronica, along with a NuttX port
with a device driver for the MP3 codec.
NOTE: This application is currently under development and just
a shell of an app which will be developed soon.
endif