Move radio button styling to a single place
This commit is contained in:
		
							parent
							
								
									736ae08fcd
								
							
						
					
					
						commit
						ec9b5a0bd2
					
				@ -434,6 +434,7 @@ list(APPEND SOURCE_FILES
 | 
			
		||||
        displayapp/screens/PassKey.cpp
 | 
			
		||||
        displayapp/screens/Error.cpp
 | 
			
		||||
        displayapp/screens/Alarm.cpp
 | 
			
		||||
        displayapp/screens/Styles.cpp
 | 
			
		||||
        displayapp/Colors.cpp
 | 
			
		||||
 | 
			
		||||
        ## Settings
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										8
									
								
								src/displayapp/screens/Styles.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								src/displayapp/screens/Styles.cpp
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,8 @@
 | 
			
		||||
#include "Styles.h"
 | 
			
		||||
 | 
			
		||||
void Pinetime::Applications::Screens::SetRadioButtonStyle(lv_obj_t* checkbox) {
 | 
			
		||||
  lv_obj_set_style_local_radius(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
 | 
			
		||||
  lv_obj_set_style_local_border_width(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, 9);
 | 
			
		||||
  lv_obj_set_style_local_border_color(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_GREEN);
 | 
			
		||||
  lv_obj_set_style_local_bg_color(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_WHITE);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										9
									
								
								src/displayapp/screens/Styles.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/displayapp/screens/Styles.h
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
#include <lvgl/lvgl.h>
 | 
			
		||||
 | 
			
		||||
namespace Pinetime {
 | 
			
		||||
  namespace Applications {
 | 
			
		||||
    namespace Screens {
 | 
			
		||||
      void SetRadioButtonStyle(lv_obj_t* checkbox);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -2,6 +2,7 @@
 | 
			
		||||
#include <lvgl/lvgl.h>
 | 
			
		||||
#include "displayapp/DisplayApp.h"
 | 
			
		||||
#include "displayapp/Messages.h"
 | 
			
		||||
#include "displayapp/screens/Styles.h"
 | 
			
		||||
#include "displayapp/screens/Screen.h"
 | 
			
		||||
#include "displayapp/screens/Symbols.h"
 | 
			
		||||
 | 
			
		||||
@ -49,12 +50,7 @@ SettingDisplay::SettingDisplay(Pinetime::Applications::DisplayApp* app, Pinetime
 | 
			
		||||
    lv_checkbox_set_text(cbOption[i], buffer);
 | 
			
		||||
    cbOption[i]->user_data = this;
 | 
			
		||||
    lv_obj_set_event_cb(cbOption[i], event_handler);
 | 
			
		||||
 | 
			
		||||
    // radio button style
 | 
			
		||||
    lv_obj_set_style_local_radius(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
 | 
			
		||||
    lv_obj_set_style_local_border_width(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, 9);
 | 
			
		||||
    lv_obj_set_style_local_border_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_GREEN);
 | 
			
		||||
    lv_obj_set_style_local_bg_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_WHITE);
 | 
			
		||||
    SetRadioButtonStyle(cbOption[i]);
 | 
			
		||||
 | 
			
		||||
    if (settingsController.GetScreenTimeOut() == options[i]) {
 | 
			
		||||
      lv_checkbox_set_checked(cbOption[i], true);
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,7 @@
 | 
			
		||||
#include "displayapp/screens/settings/SettingTimeFormat.h"
 | 
			
		||||
#include <lvgl/lvgl.h>
 | 
			
		||||
#include "displayapp/DisplayApp.h"
 | 
			
		||||
#include "displayapp/screens/Styles.h"
 | 
			
		||||
#include "displayapp/screens/Screen.h"
 | 
			
		||||
#include "displayapp/screens/Symbols.h"
 | 
			
		||||
 | 
			
		||||
@ -46,12 +47,7 @@ SettingTimeFormat::SettingTimeFormat(Pinetime::Applications::DisplayApp* app, Pi
 | 
			
		||||
    lv_checkbox_set_text(cbOption[i], options[i]);
 | 
			
		||||
    cbOption[i]->user_data = this;
 | 
			
		||||
    lv_obj_set_event_cb(cbOption[i], event_handler);
 | 
			
		||||
 | 
			
		||||
    // radio button style
 | 
			
		||||
    lv_obj_set_style_local_radius(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
 | 
			
		||||
    lv_obj_set_style_local_border_width(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, 9);
 | 
			
		||||
    lv_obj_set_style_local_border_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_GREEN);
 | 
			
		||||
    lv_obj_set_style_local_bg_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_WHITE);
 | 
			
		||||
    SetRadioButtonStyle(cbOption[i]);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) {
 | 
			
		||||
 | 
			
		||||
@ -2,6 +2,7 @@
 | 
			
		||||
#include <lvgl/lvgl.h>
 | 
			
		||||
#include "displayapp/DisplayApp.h"
 | 
			
		||||
#include "displayapp/screens/Screen.h"
 | 
			
		||||
#include "displayapp/screens/Styles.h"
 | 
			
		||||
#include "displayapp/screens/Symbols.h"
 | 
			
		||||
 | 
			
		||||
using namespace Pinetime::Applications::Screens;
 | 
			
		||||
@ -47,12 +48,7 @@ SettingWatchFace::SettingWatchFace(Pinetime::Applications::DisplayApp* app, Pine
 | 
			
		||||
    lv_checkbox_set_text(cbOption[i], options[i]);
 | 
			
		||||
    cbOption[i]->user_data = this;
 | 
			
		||||
    lv_obj_set_event_cb(cbOption[i], event_handler);
 | 
			
		||||
 | 
			
		||||
    // radio button style
 | 
			
		||||
    lv_obj_set_style_local_radius(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
 | 
			
		||||
    lv_obj_set_style_local_border_width(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, 9);
 | 
			
		||||
    lv_obj_set_style_local_border_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_GREEN);
 | 
			
		||||
    lv_obj_set_style_local_bg_color(cbOption[i], LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_WHITE);
 | 
			
		||||
    SetRadioButtonStyle(cbOption[i]);
 | 
			
		||||
 | 
			
		||||
    if (settingsController.GetClockFace() == i) {
 | 
			
		||||
      lv_checkbox_set_checked(cbOption[i], true);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user