Changes between Version 8 and Version 9 of EFLWebKitCodingStyle
- Timestamp:
- Aug 13, 2012, 6:38:18 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKitCodingStyle
v8 v9 10 10 * Use '''const''' keyword instead of '''#define''' when you define constant variable. 11 11 * Use NULL in public C headers instead of 0 12 * Use '''double not operator(!!)''' when you modify a Eina Bool member variable which stores a value in a bit field. 12 13 13 14 = Example = 14 15 15 16 == Do not use abbreviation except for public APIs == 16 17 17 === Public APIs === 18 19 18 {{{ 20 19 EAPI void ewk_view_bg_color_set(Evas_Object *o, int r, int g, int b, int a); … … 41 40 42 41 == Do not use Eina_Bool type except for public APIs == 43 44 42 === Public APIs === 45 46 43 {{{ 47 44 EAPI Eina_Bool ewk_view_scale_set(Evas_Object *o, float scale_factor, Evas_Coord cx, Evas_Coord cy); … … 49 46 50 47 === Implementation === 51 52 48 {{{ 53 49 Eina_Bool ewk_view_scale_set(Evas_Object* ewkView, float scaleFactor, Evas_Coord centerX, Evas_Coord centerY) … … 70 66 71 67 == Use "void" for empty parameter of public APIs == 72 73 === Right === 74 68 === Right === 75 69 {{{ 76 70 EAPI Ewk_Context *ewk_context_new(void); … … 78 72 79 73 === Wrong === 80 81 74 {{{ 82 75 EAPI Ewk_Context *ewk_context_new(); … … 84 77 85 78 == Place '*' operator to data type == 86 87 === Right === 88 79 === Right === 89 80 {{{ 90 81 static void _ewk_view_smart_show(Evas_Object* ewkView) … … 92 83 93 84 === Wrong === 94 95 85 {{{ 96 86 static void _ewk_view_smart_show(Evas_Object *ewkView) … … 98 88 99 89 == Use C++ casting for type casting == 100 101 === Right === 102 90 === Right === 103 91 {{{ 104 92 Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data); … … 106 94 107 95 === Wrong === 108 109 96 {{{ 110 97 Ewk_View_Smart_Data* smartData = (Ewk_View_Smart_Data*)data; … … 174 161 === Wrong === 175 162 {{{ 176 {{{177 163 /** 178 164 * Query action for this intent. … … 184 170 EAPI const char *ewk_intent_action_get(const Ewk_Intent *intent); 185 171 }}} 186 }}} 172 173 == Use double not operator(!!) when you modify a Eina Bool member variable which stores a value in a bit field. == 174 === Right === 175 {{{ 176 struct { 177 ... 178 bool pageCache : 1; 179 ... 180 } 181 182 Eina_Bool ewk_view_setting_page_cache_set(Evas_Object* ewkView, Eina_Bool enable) 183 { 184 EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false); 185 EWK_VIEW_PRIV_GET_OR_RETURN(smartData, priv, false); 186 enable = !!enable; 187 if (priv->settings.pageCache != enable) { 188 priv->pageSettings->setUsesPageCache(enable); 189 priv->settings.pageCache = enable; 190 } 191 return true; 192 } 193 }}} 194 === Wrong === 195 {{{ 196 Eina_Bool ewk_settings_auto_load_images_set(Ewk_Settings* settings, Eina_Bool automatic) 197 { 198 EINA_SAFETY_ON_NULL_RETURN_VAL(settings, false); 199 200 automatic = !!automatic; 201 WKPreferencesSetLoadsImagesAutomatically(settings->preferences.get(), automatic); 202 203 return true; 204 } 205 }}}