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 int getDiam(){return d;};
void paint(bool do_save_bg = CC_SAVE_SCREEN_YES);
};
class CComponentsShapeSquare : public CComponentsItem
@@ -300,6 +301,8 @@ class CComponentsShapeSquare : public CComponentsItem
public:
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);
void paint(bool do_save_bg = CC_SAVE_SCREEN_YES);
};
class CComponentsPIP : public CComponentsItem