CComponentsItem: add missing parameter to kill() member

Was not passed to parent methode.
This commit is contained in:
2016-01-28 21:02:52 +01:00
committed by M. Liebmann
parent 2207019bfd
commit 65de6dee9f
2 changed files with 24 additions and 8 deletions

View File

@@ -127,15 +127,15 @@ void CComponentsItem::paintInit(bool do_save_bg)
} }
//erase or paint over rendered objects //erase or paint over rendered objects
void CComponentsItem::kill(const fb_pixel_t& bg_color, bool ignore_parent) void CComponentsItem::kill(const fb_pixel_t& bg_color, bool ignore_parent, const int& fblayer_type)
{ {
if(cc_parent == NULL){ if(cc_parent == NULL){
CComponents::kill(bg_color, this->corner_rad); CComponents::kill(bg_color, this->corner_rad, fblayer_type);
}else{ }else{
if(ignore_parent) if(ignore_parent)
CComponents::kill(bg_color, this->corner_rad); CComponents::kill(bg_color, this->corner_rad, fblayer_type);
else else
CComponents::kill(cc_parent->getColorBody(), cc_parent->getCornerRadius()); CComponents::kill(cc_parent->getColorBody(), cc_parent->getCornerRadius(), fblayer_type);
} }
} }

View File

@@ -79,10 +79,26 @@ class CComponentsItem : public CComponents
///set or unset focus of item, stand alone items without parent have always set focus to true, inside of a parent form object, always the last added item has focus ///set or unset focus of item, stand alone items without parent have always set focus to true, inside of a parent form object, always the last added item has focus
virtual void setFocus(bool focus); virtual void setFocus(bool focus);
///erase or paint over rendered objects without restore of background, it's similar to paintBackgroundBoxRel() known /**Erase or paint over rendered objects without restore of background, it's similar to paintBackgroundBoxRel() known
///from CFrameBuffer but with possiblity to define color, default color is 0 (empty background) * from CFrameBuffer but with possiblity to define color, default color is COL_BACKGROUND_PLUS_0 (empty background)
///NOTE: Items with parent binding use the parent background color as default! Set parameter 'ignore_parent=true' to ignore parent background color! *
virtual void kill(const fb_pixel_t& bg_color = COL_BACKGROUND_PLUS_0, bool ignore_parent = false); * @return void
*
* @param[in] bg_color optional, color, default color is current screen
* @param[in] ignore_parent optional, default = false, defines the behavior inside a form, if item is embedded current background color is used instead blank screen
* @param[in] fblayer_type optional, defines layer that to remove, default all layers (cc_fbdata_t) will remove
* possible layer types are:
* @li CC_FBDATA_TYPE_BGSCREEN,
* @li CC_FBDATA_TYPE_BOX,
* @li CC_FBDATA_TYPE_SHADOW_BOX,
* @li CC_FBDATA_TYPE_FRAME,
* @li CC_FBDATA_TYPE_BACKGROUND,
* @see
* cc_types.h
* gui/color.h
* driver/framebuffer.h
*/
virtual void kill(const fb_pixel_t& bg_color = COL_BACKGROUND_PLUS_0, bool ignore_parent = false, const int& fblayer_type = CC_FBDATA_TYPES);
///get the current item type, see attribute cc_item_type above ///get the current item type, see attribute cc_item_type above
virtual int getItemType(); virtual int getItemType();