diff options
Diffstat (limited to 'src/wgt-strings.c')
-rw-r--r-- | src/wgt-strings.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/wgt-strings.c b/src/wgt-strings.c new file mode 100644 index 0000000..e3d45a0 --- /dev/null +++ b/src/wgt-strings.c @@ -0,0 +1,50 @@ +/* + Copyright 2016 IoT.bzh + + author: José Bollo <jose.bollo@iot.bzh> + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +const char string_author[] = "author"; +const char string_content[] = "content"; +const char string_defaultlocale[] = "defaultlocale"; +const char string_description[] = "description"; +const char string_email[] = "email"; +const char string_encoding[] = "encoding"; +const char string_feature[] = "feature"; +const char string_height[] = "height"; +const char string_href[] = "href"; +const char string_icon[] = "icon"; +const char string_id[] = "id"; +const char string_license[] = "license"; +const char string_name[] = "name"; +const char string_optional[] = "optional"; +const char string_param[] = "param"; +const char string_preference[] = "preference"; +const char string_readonly[] = "readonly"; +const char string_required[] = "required"; +const char string_short[] = "short"; +const char string_src[] = "src"; +const char string_type[] = "type"; +const char string_value[] = "value"; +const char string_version[] = "version"; +const char string_viewmodes[] = "viewmodes"; +const char string_widget[] = "widget"; +const char string_width[] = "width"; +const char string_config_dot_xml[] = "config.xml"; + +const char feature_required_binding[] = FWK_PREFIX "required-binding"; +const char feature_required_permission[] = FWK_PREFIX "required-permission"; + + |