CComponents: add missing paint-members to circle and square classes

paint () ist in CComponentsItem abstrakt, muss definiert werden
seine eigene in Unterklassen.
This commit is contained in:
2012-10-23 15:39:04 +02:00
parent 4df7e4d144
commit e37b5d86f4
2 changed files with 14 additions and 0 deletions

View File

@@ -293,6 +293,7 @@ class CComponentsShapeCircle : public CComponentsItem
inline void setDiam(const int& diam){d=width=height=diam, corner_rad=d/2;}; inline void setDiam(const int& diam){d=width=height=diam, corner_rad=d/2;};
inline int getDiam(){return d;}; inline int getDiam(){return d;};
void paint(bool do_save_bg = CC_SAVE_SCREEN_YES);
}; };
class CComponentsShapeSquare : public CComponentsItem class CComponentsShapeSquare : public CComponentsItem
@@ -300,6 +301,8 @@ class CComponentsShapeSquare : public CComponentsItem
public: public:
CComponentsShapeSquare( const int x_pos, const int y_pos, const int w, const int h, bool has_shadow = CC_SHADOW_ON, CComponentsShapeSquare( const int x_pos, const int y_pos, const int w, const int h, bool has_shadow = CC_SHADOW_ON,
fb_pixel_t color_frame = COL_MENUCONTENT_PLUS_6, fb_pixel_t color_body = COL_MENUCONTENT_PLUS_0, fb_pixel_t color_shadow = COL_MENUCONTENTDARK_PLUS_0); fb_pixel_t color_frame = COL_MENUCONTENT_PLUS_6, fb_pixel_t color_body = COL_MENUCONTENT_PLUS_0, fb_pixel_t color_shadow = COL_MENUCONTENTDARK_PLUS_0);
void paint(bool do_save_bg = CC_SAVE_SCREEN_YES);
}; };
class CComponentsPIP : public CComponentsItem class CComponentsPIP : public CComponentsItem

View File

@@ -513,6 +513,12 @@ CComponentsShapeSquare::CComponentsShapeSquare(const int x_pos, const int y_pos,
col_shadow = color_shadow; col_shadow = color_shadow;
} }
void CComponentsShapeSquare::paint(bool do_save_bg)
{
paintInit(do_save_bg);
}
//------------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------------
//sub class CComponentsShapeCircle from CComponentsItem //sub class CComponentsShapeCircle from CComponentsItem
CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam, bool has_shadow, CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam, bool has_shadow,
@@ -549,6 +555,11 @@ CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam,
// //
// + - + // + - +
void CComponentsShapeCircle::paint(bool do_save_bg)
{
paintInit(do_save_bg);
}
//------------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------------
//sub class CComponentsDetailLine from CComponents //sub class CComponentsDetailLine from CComponents