summaryrefslogtreecommitdiff
path: root/nuttx/graphics
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-06-13 11:04:18 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-06-13 11:04:18 -0600
commit9ceb4c0753a552a4af2b1d6d924b0b6e9ebd5ac5 (patch)
tree779e02acad9e66079e30fc9a2ed3243eba1905bb /nuttx/graphics
parent4691fbd207362f6ff7df11dc0b4b5c1df5f3242e (diff)
downloadnuttx-9ceb4c0753a552a4af2b1d6d924b0b6e9ebd5ac5.tar.gz
nuttx-9ceb4c0753a552a4af2b1d6d924b0b6e9ebd5ac5.tar.bz2
nuttx-9ceb4c0753a552a4af2b1d6d924b0b6e9ebd5ac5.zip
Add support for a generic windows-based EABI toolchain; Add NX configuration to force default NXTK border colors
Diffstat (limited to 'nuttx/graphics')
-rw-r--r--nuttx/graphics/Kconfig23
1 files changed, 17 insertions, 6 deletions
diff --git a/nuttx/graphics/Kconfig b/nuttx/graphics/Kconfig
index ea6cbe3a2..64e348175 100644
--- a/nuttx/graphics/Kconfig
+++ b/nuttx/graphics/Kconfig
@@ -131,33 +131,44 @@ config NXTK_BORDERWIDTH
Specifies with with of the border (in pixels) used with framed windows.
The default is 4.
+config NXTK_DEFAULT_BORDERCOLORS
+ bool "Use Default Border Colors"
+ default y
+ ---help---
+ If this option is defined, the default system border colors will be
+ used on framed windows. Otherwise, additional options will be
+ present so that you can define custom board colors.
+
+if !NXTK_DEFAULT_BORDERCOLORS
+
config NXTK_BORDERCOLOR1
hex "Border Color"
- default 0
+ default 0x0
---help---
Specify the colors of the border used with framed windows.
- NXTL_BODERCOLOR is the "normal" color of the border.
+ NXTL_BORDERCOLOR1 is the "normal" color of the border.
NXTK_BORDERCOLOR2 is the shadow side color and so is normally darker.
NXTK_BORDERCOLOR3 is the shiny side color and so is normally brighter.
config NXTK_BORDERCOLOR2
hex "Darker Border Color"
- default 0
+ default 0x0
---help---
Specify the colors of the border used with framed windows.
- NXTL_BODERCOLOR is the "normal" color of the border.
+ NXTL_BORDERCOLOR1 is the "normal" color of the border.
NXTK_BORDERCOLOR2 is the shadow side color and so is normally darker.
NXTK_BORDERCOLOR3 is the shiny side color and so is normally brighter.
config NXTK_BORDERCOLOR3
hex "Brighter Border Color"
- default 0
+ default 0x0
---help---
Specify the colors of the border used with framed windows.
- NXTL_BODERCOLOR is the "normal" color of the border.
+ NXTL_BORDERCOLOR1 is the "normal" color of the border.
NXTK_BORDERCOLOR2 is the shadow side color and so is normally darker.
NXTK_BORDERCOLOR3 is the shiny side color and so is normally brighter.
+endif
endmenu
config NXTK_AUTORAISE