There's a Watch Face Designer tool called 'Gear Watch Designer'. But as far as I know, you won't be able to retrieve cumulative calories burned from such designer tool. You have to develop a Tizen Native(C/C++) or Web(HTML/CSS/js) watchface using Tizen-Studio.
Native Efl Watch Application Guide
Native DALi Watch Application Guide
Web Watch Application Guide
By Using Tizen native Sensor API you can retrieve Pedometer data, such as: steps, calories burned,etc. I don't see cumulative calories burned data on the API references, but you can add the 'calories burned' and produce cumulative data. Once you have retrieved the 'calories burned' data then you need UI components to show the Info on your watchface.
I'm sharing a C code sample with you to retrieve calories burned data:
#include <sensor.h>
#include<stdbool.h>
bool checkSupport(sensor_type_e type){
bool support;
sensor_is_supported(type,&support);
return support;
}
void sensorEventCallBack(sensor_h sensorHanlder, sensor_event_s *event, void *user_data){
dlog_print(DLOG_DEBUG, LOG_TAG, "Number of steps: %d", event->values[0]);
dlog_print(DLOG_DEBUG, LOG_TAG, "Number of walking steps: %d", event->values[1]);
dlog_print(DLOG_DEBUG, LOG_TAG, "Calories burned: %.2f kcal", event->values[4]);
/* values[0] to values[7]*/
}
void logPrintSensorData(){
if(checkSupport(SENSOR_HUMAN_PEDOMETER)){
sensor_h sensorHanlder;
sensor_get_default_sensor(SENSOR_HUMAN_PEDOMETER, &sensorHanlder);
sensor_listener_h sensorListener;
sensor_create_listener(sensorHanlder,&sensorListener);
sensor_listener_set_event_cb(sensorListener,1000, sensorEventCallBack, NULL);
sensor_listener_set_option(sensorListener,SENSOR_OPTION_ALWAYS_ON);
sensor_listener_start(sensorListener);
/* Once Task Completed*/
//sensor_listener_stop(sensorListener);
}
else {
dlog_print(DLOG_ERROR, LOG_TAG, "SENSOR_HUMAN_PEDOMETER Not Supported");
}
}
In tizen-manifest.xml add privilege http://tizen.org/privilege/healthinfo
You can also try Tizen Web API instead of Tizen Native API If you like to do so. For details:
Tizen Native Sensor Guide
Tizen Web Sensor Guide