BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
237edae7
Commit
237edae7
authored
Aug 18, 2017
by
Gabor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lv_sw: all feature is working
parent
61c5777a
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
49 deletions
+73
-49
lv_conf_templ.h
lv_conf_templ.h
+3
-0
lv_sw.c
lv_objx/lv_sw.c
+61
-41
lv_sw.h
lv_objx/lv_sw.h
+8
-8
lvgl.h
lvgl.h
+1
-0
No files found.
lv_conf_templ.h
View file @
237edae7
...
@@ -146,6 +146,9 @@
...
@@ -146,6 +146,9 @@
/*Check box (dependencies: lv_btn, lv_label)*/
/*Check box (dependencies: lv_btn, lv_label)*/
#define USE_LV_CB 1
#define USE_LV_CB 1
/*Switch (dependencies: lv_slider)*/
#define USE_LV_SW 1
/*List (dependencies: lv_page, lv_btn, lv_label, lv_img)*/
/*List (dependencies: lv_page, lv_btn, lv_label, lv_img)*/
#define USE_LV_LIST 1
#define USE_LV_LIST 1
#if USE_LV_LIST != 0
#if USE_LV_LIST != 0
...
...
lv_objx/lv_sw.c
View file @
237edae7
/**
/**
* @file lv_templ.c
* @file lv_sw.c
*
*/
/*Search an replace: template -> object normal name with lower case (e.g. button, label etc.)
* templ -> object short name with lower case(e.g. btn, label etc)
* TEMPL -> object short name with upper case (e.g. BTN, LABEL etc.)
*
*
*/
*/
...
@@ -13,9 +7,9 @@
...
@@ -13,9 +7,9 @@
* INCLUDES
* INCLUDES
*********************/
*********************/
#include "lv_conf.h"
#include "lv_conf.h"
#if USE_LV_
TEMPL
!= 0
#if USE_LV_
SW
!= 0
#include "lv_
templ
.h"
#include "lv_
sw
.h"
/*********************
/*********************
* DEFINES
* DEFINES
...
@@ -28,8 +22,9 @@
...
@@ -28,8 +22,9 @@
/**********************
/**********************
* STATIC PROTOTYPES
* STATIC PROTOTYPES
**********************/
**********************/
static
bool
lv_templ_design
(
lv_obj_t
*
templ
,
const
area_t
*
mask
,
lv_design_mode_t
mode
);
#if 0 /*Slider design is used*/
static bool lv_sw_design(lv_obj_t * sw, const area_t * mask, lv_design_mode_t mode);
#endif
/**********************
/**********************
* STATIC VARIABLES
* STATIC VARIABLES
**********************/
**********************/
...
@@ -47,58 +42,63 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod
...
@@ -47,58 +42,63 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod
*-----------------*/
*-----------------*/
/**
/**
* Create a
template
objects
* Create a
switch
objects
* @param par pointer to an object, it will be the parent of the new
template
* @param par pointer to an object, it will be the parent of the new
switch
* @param copy pointer to a
template
object, if not NULL then the new object will be copied from it
* @param copy pointer to a
switch
object, if not NULL then the new object will be copied from it
* @return pointer to the created
template
* @return pointer to the created
switch
*/
*/
lv_obj_t
*
lv_
templ
_create
(
lv_obj_t
*
par
,
lv_obj_t
*
copy
)
lv_obj_t
*
lv_
sw
_create
(
lv_obj_t
*
par
,
lv_obj_t
*
copy
)
{
{
/*Create the ancestor of template*/
/*Create the ancestor of switch*/
/*TODO modify it to the ancestor create function */
lv_obj_t
*
new_sw
=
lv_slider_create
(
par
,
copy
);
lv_obj_t
*
new_templ
=
lv_ANCESTOR_create
(
par
,
copy
);
dm_assert
(
new_sw
);
dm_assert
(
new_templ
);
/*Allocate the
template
type specific extended data*/
/*Allocate the
switch
type specific extended data*/
lv_
templ_ext_t
*
ext
=
lv_obj_alloc_ext
(
new_templ
,
sizeof
(
lv_templ
_ext_t
));
lv_
sw_ext_t
*
ext
=
lv_obj_alloc_ext
(
new_sw
,
sizeof
(
lv_sw
_ext_t
));
dm_assert
(
ext
);
dm_assert
(
ext
);
/*Initialize the allocated 'ext' */
/*Initialize the allocated 'ext' */
ext
->
xyz
=
0
;
ext
->
changed
=
0
;
/*The signal and design functions are not copied so set them here*/
/*The signal and design functions are not copied so set them here*/
lv_obj_set_signal_f
(
new_templ
,
lv_templ_signal
);
lv_obj_set_signal_f
(
new_sw
,
lv_sw_signal
);
lv_obj_set_design_f
(
new_templ
,
lv_templ_design
);
/*Init the new
template template
*/
/*Init the new
switch switch
*/
if
(
copy
==
NULL
)
{
if
(
copy
==
NULL
)
{
lv_obj_set_style
(
new_templ
,
lv_style_get
(
LV_STYLE_PRETTY
,
NULL
));
lv_bar_set_range
(
new_sw
,
0
,
1
);
lv_obj_set_size
(
new_sw
,
LV_DPI
,
LV_DPI
/
2
);
lv_slider_set_knob_in
(
new_sw
,
true
);
}
}
/*Copy an existing
template
*/
/*Copy an existing
switch
*/
else
{
else
{
lv_templ_ext_t
*
copy_ext
=
lv_obj_get_ext
(
copy
);
/*Nothing to copy*/
/*Refresh the style with new signal function*/
/*Refresh the style with new signal function*/
lv_obj_refr_style
(
new_
templ
);
lv_obj_refr_style
(
new_
sw
);
}
}
return
new_
templ
;
return
new_
sw
;
}
}
/**
/**
* Signal function of the
template
* Signal function of the
switch
* @param
templ pointer to a template
object
* @param
sw pointer to a switch
object
* @param sign a signal type from lv_signal_t enum
* @param sign a signal type from lv_signal_t enum
* @param param pointer to a signal specific variable
* @param param pointer to a signal specific variable
* @return true: the object is still valid (not deleted), false: the object become invalid
* @return true: the object is still valid (not deleted), false: the object become invalid
*/
*/
bool
lv_
templ_signal
(
lv_obj_t
*
templ
,
lv_signal_t
sign
,
void
*
param
)
bool
lv_
sw_signal
(
lv_obj_t
*
sw
,
lv_signal_t
sign
,
void
*
param
)
{
{
bool
valid
;
bool
valid
;
lv_sw_ext_t
*
ext
=
lv_obj_get_ext
(
sw
);
int16_t
old_val
=
lv_bar_get_value
(
sw
);
lv_action_t
slider_cb
=
ext
->
slider
.
cb
;
ext
->
slider
.
cb
=
NULL
;
/*Do not let the slider to call the callback. The Switch will do it*/
/* Include the ancient signal function */
/* Include the ancient signal function */
/* TODO update it to the ancestor's signal function*/
valid
=
lv_slider_signal
(
sw
,
sign
,
param
);
valid
=
lv_ANCESTOR_signal
(
templ
,
sign
,
param
);
/* The object can be deleted so check its validity and then
/* The object can be deleted so check its validity and then
* make the object specific signal handling */
* make the object specific signal handling */
...
@@ -106,8 +106,28 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
...
@@ -106,8 +106,28 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
if
(
sign
==
LV_SIGNAL_CLEANUP
)
{
if
(
sign
==
LV_SIGNAL_CLEANUP
)
{
/*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/
/*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/
}
}
else
if
(
sign
==
LV_SIGNAL_PRESSING
)
{
int16_t
act_val
=
lv_bar_get_value
(
sw
);
if
(
act_val
!=
old_val
)
ext
->
changed
=
1
;
}
else
if
(
sign
==
LV_SIGNAL_PRESS_LOST
)
{
ext
->
changed
=
0
;
}
else
if
(
sign
==
LV_SIGNAL_RELEASED
)
{
if
(
ext
->
changed
==
0
)
{
int16_t
v
=
lv_bar_get_value
(
sw
);
if
(
v
==
0
)
lv_bar_set_value
(
sw
,
1
);
else
lv_bar_set_value
(
sw
,
0
);
}
if
(
slider_cb
!=
NULL
)
slider_cb
(
sw
,
param
);
ext
->
changed
=
0
;
}
}
}
/*Restore the callback*/
ext
->
slider
.
cb
=
slider_cb
;
return
valid
;
return
valid
;
}
}
...
@@ -133,10 +153,10 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
...
@@ -133,10 +153,10 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
* STATIC FUNCTIONS
* STATIC FUNCTIONS
**********************/
**********************/
#if 0 /*Slider design is used*/
/**
/**
* Handle the drawing related tasks of the
template
s
* Handle the drawing related tasks of the
switch
s
* @param
templ
pointer to an object
* @param
sw
pointer to an object
* @param mask the object will be drawn only in this area
* @param mask the object will be drawn only in this area
* @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area
* @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area
* (return 'true' if yes)
* (return 'true' if yes)
...
@@ -144,7 +164,7 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
...
@@ -144,7 +164,7 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
* LV_DESIGN_DRAW_POST: drawing after every children are drawn
* LV_DESIGN_DRAW_POST: drawing after every children are drawn
* @param return true/false, depends on 'mode'
* @param return true/false, depends on 'mode'
*/
*/
static
bool
lv_
templ_design
(
lv_obj_t
*
templ
,
const
area_t
*
mask
,
lv_design_mode_t
mode
)
static bool lv_
sw_design(lv_obj_t * sw
, const area_t * mask, lv_design_mode_t mode)
{
{
/*Return false if the object is not covers the mask_p area*/
/*Return false if the object is not covers the mask_p area*/
if(mode == LV_DESIGN_COVER_CHK) {
if(mode == LV_DESIGN_COVER_CHK) {
...
@@ -161,6 +181,6 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod
...
@@ -161,6 +181,6 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod
return true;
return true;
}
}
#endif
#endif
#endif
lv_objx/lv_sw.h
View file @
237edae7
...
@@ -3,13 +3,6 @@
...
@@ -3,13 +3,6 @@
*
*
*/
*/
/*Search an replace: switch -> object normal name with lower case (e.g. button, label etc.)
* sw -> object short name with lower case(e.g. btn, label etc)
* SW -> object short name with upper case (e.g. BTN, LABEL etc.)
*
*/
#ifndef LV_SW_H
#ifndef LV_SW_H
#define LV_SW_H
#define LV_SW_H
...
@@ -23,7 +16,13 @@ extern "C" {
...
@@ -23,7 +16,13 @@ extern "C" {
#include "lv_conf.h"
#include "lv_conf.h"
#if USE_LV_SW != 0
#if USE_LV_SW != 0
/*Testing of dependencies*/
#if USE_LV_SW == 0
#error "lv_sw: lv_slider is required. Enable it in lv_conf.h (USE_LV_SLIDER 1)"
#endif
#include "../lv_obj/lv_obj.h"
#include "../lv_obj/lv_obj.h"
#include "lv_slider.h"
/*********************
/*********************
* DEFINES
* DEFINES
...
@@ -35,8 +34,9 @@ extern "C" {
...
@@ -35,8 +34,9 @@ extern "C" {
/*Data of switch*/
/*Data of switch*/
typedef
struct
typedef
struct
{
{
/*Ext. of ancestor*/
lv_slider_ext_t
slider
;
/*Ext. of ancestor*/
/*New data for this type */
/*New data for this type */
uint8_t
changed
:
1
;
/*Indicates the switch explicitly changed by drag*/
}
lv_sw_ext_t
;
}
lv_sw_ext_t
;
/**********************
/**********************
...
...
lvgl.h
View file @
237edae7
...
@@ -37,6 +37,7 @@ extern "C" {
...
@@ -37,6 +37,7 @@ extern "C" {
#include "lv_objx/lv_mbox.h"
#include "lv_objx/lv_mbox.h"
#include "lv_objx/lv_gauge.h"
#include "lv_objx/lv_gauge.h"
#include "lv_objx/lv_lmeter.h"
#include "lv_objx/lv_lmeter.h"
#include "lv_objx/lv_sw.h"
#include "lv_app/lv_app.h"
#include "lv_app/lv_app.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment