SidebarElement* sidebar_element_create(Layer *parent) { GRect bounds = element_get_bounds(parent); FontChoice font = get_font(FONT_24_BOLD); int trend_arrow_y = (bounds.size.h - trend_arrow_component_height()) / 2; int last_bg_y = (trend_arrow_y / 4 + bounds.size.h / 8) - font.height / 2 - font.padding_top; int delta_y = ((bounds.size.h + trend_arrow_y + trend_arrow_component_height()) / 4 + bounds.size.h * 3 / 8) - font.height / 2 - font.padding_top; TextLayer *last_bg_text = text_layer_create(GRect(0, last_bg_y, bounds.size.w, font.height + font.padding_top + font.padding_bottom)); text_layer_set_font(last_bg_text, fonts_get_system_font(font.key)); text_layer_set_background_color(last_bg_text, GColorClear); text_layer_set_text_color(last_bg_text, element_fg(parent)); text_layer_set_text_alignment(last_bg_text, GTextAlignmentCenter); layer_add_child(parent, text_layer_get_layer(last_bg_text)); TrendArrowComponent *trend = trend_arrow_component_create(parent, (bounds.size.w - trend_arrow_component_width()) / 2, trend_arrow_y); TextLayer *delta_text = text_layer_create(GRect(0, delta_y, bounds.size.w, font.height + font.padding_top + font.padding_bottom)); text_layer_set_font(delta_text, fonts_get_system_font(font.key)); text_layer_set_background_color(delta_text, GColorClear); text_layer_set_text_color(delta_text, element_fg(parent)); text_layer_set_text_alignment(delta_text, GTextAlignmentCenter); layer_add_child(parent, text_layer_get_layer(delta_text)); SidebarElement* el = malloc(sizeof(SidebarElement)); el->last_bg_text = last_bg_text; el->trend = trend; el->delta_text = delta_text; return el; }
SidebarElement* sidebar_element_create(Layer *parent) { GRect bounds = element_get_bounds(parent); int trend_arrow_y = (bounds.size.h - trend_arrow_component_height()) / 2; int last_bg_y = (trend_arrow_y / 4 + bounds.size.h / 8) - ACTUAL_TEXT_HEIGHT_24 / 2 - PADDING_TOP_24; int delta_y = ((bounds.size.h + trend_arrow_y + trend_arrow_component_height()) / 4 + bounds.size.h * 3 / 8) - ACTUAL_TEXT_HEIGHT_24 / 2 - PADDING_TOP_24; TextLayer *last_bg_text = text_layer_create(GRect(0, last_bg_y, bounds.size.w, ACTUAL_TEXT_HEIGHT_24 + PADDING_TOP_24 + PADDING_BOTTOM_24)); text_layer_set_font(last_bg_text, fonts_get_system_font(FONT_KEY_GOTHIC_24_BOLD)); text_layer_set_background_color(last_bg_text, GColorClear); text_layer_set_text_color(last_bg_text, element_fg(parent)); text_layer_set_text_alignment(last_bg_text, GTextAlignmentCenter); layer_add_child(parent, text_layer_get_layer(last_bg_text)); TrendArrowComponent *trend = trend_arrow_component_create(parent, (bounds.size.w - trend_arrow_component_width()) / 2, trend_arrow_y); TextLayer *delta_text = text_layer_create(GRect(0, delta_y, bounds.size.w, ACTUAL_TEXT_HEIGHT_24 + PADDING_TOP_24 + PADDING_BOTTOM_24)); text_layer_set_font(delta_text, fonts_get_system_font(FONT_KEY_GOTHIC_24_BOLD)); text_layer_set_background_color(delta_text, GColorClear); text_layer_set_text_color(delta_text, element_fg(parent)); text_layer_set_text_alignment(delta_text, GTextAlignmentCenter); layer_add_child(parent, text_layer_get_layer(delta_text)); SidebarElement* el = malloc(sizeof(SidebarElement)); el->last_bg_text = last_bg_text; el->trend = trend; el->delta_text = delta_text; return el; }