From 393e6f74e821aa10f6b8d1ab6d3163a53e58a69c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E2=80=9CBumseung?= Date: Thu, 18 Apr 2013 16:14:03 +0900 Subject: [PATCH] basic properties are added to theme spec. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ibe9941fb8737165fca9fb97a3a48f27ab1b370f6 Signed-off-by: “Bumseung --- src/ui/resource/FUi_ResourceConfigParser.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/ui/resource/FUi_ResourceConfigParser.cpp b/src/ui/resource/FUi_ResourceConfigParser.cpp index 37e4c2e..0906fda 100644 --- a/src/ui/resource/FUi_ResourceConfigParser.cpp +++ b/src/ui/resource/FUi_ResourceConfigParser.cpp @@ -2077,6 +2077,14 @@ ConfigParser::GetColorKeyTable(void) SysTryReturn(NID_UI, __pColorKeyTable, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation is failed."); __pColorKeyTable->Construct(100, 0.75f, *__pProvider, *__pComparer); { + const char* key ="BASIC::background"; + __pColorKeyTable->Add(ResourceKey(key), _BASIC::background_COLOR); + } + { + const char* key ="BASIC::foreground"; + __pColorKeyTable->Add(ResourceKey(key), _BASIC::foreground_COLOR); + } + { const char* key ="BUTTON::BG_NORMAL"; __pColorKeyTable->Add(ResourceKey(key), _BUTTON::BG_NORMAL_COLOR); } -- 2.7.4