79944dc1bcb3964bc04c95e4517811c2ab47463e
[platform/core/uifw/libscl-ui-nui.git] / scl / default_configure_bin_parser.h
1 /*
2  * Copyright (c) 2012 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #ifndef __DEFAULT_CONFIGURE_BIN_PARSER__H__
19 #define __DEFAULT_CONFIGURE_BIN_PARSER__H__
20 #include "sclres_type.h"
21 #include "string_collector.h"
22 #include "iparserinfo_provider.h"
23 #include "file_storage_impl.h"
24 #include "_auto_metadata.h"
25 class BinDefaultConfigParser {
26 public:
27     ~BinDefaultConfigParser();
28     static BinDefaultConfigParser *get_instance();
29     void init(const FileStorage& storage, int, int, IParserInfo_Provider*);
30
31     PSclDefaultConfigure get_default_configure();
32
33
34     //These private methods for parsing
35 private:
36     BinDefaultConfigParser();
37     void parsing_default_configure();
38     void decode_color(SclColor&, int width);
39 private:
40     SclDefaultConfigure m_default_configure;
41     StringCollector m_string_collector;
42     IParserInfo_Provider* parser_info_provider;
43     FileStorage m_storage;
44 };
45
46
47 #endif