cc_item_infobox: add signal OnAfterPaintInfo

This commit is contained in:
2019-12-27 15:07:09 +01:00
parent 794619df4f
commit baff642993
2 changed files with 3 additions and 0 deletions

View File

@@ -178,4 +178,6 @@ void CComponentsInfoBox::paint(const bool &do_save_bg)
//paint, but set visibility mode //paint, but set visibility mode
cctext->allowPaint(cc_allow_paint); cctext->allowPaint(cc_allow_paint);
cctext->paint(CC_SAVE_SCREEN_NO); cctext->paint(CC_SAVE_SCREEN_NO);
OnAfterPaintInfo();
} }

View File

@@ -89,6 +89,7 @@ class CComponentsInfoBox : public CComponentsText
CComponentsPicture * getPictureObject(){return pic;} CComponentsPicture * getPictureObject(){return pic;}
///paint item ///paint item
void paint(const bool &do_save_bg = CC_SAVE_SCREEN_YES); void paint(const bool &do_save_bg = CC_SAVE_SCREEN_YES);
sigc::signal<void> OnAfterPaintInfo;
}; };
#endif #endif