cc_item_infobox: add signal OnAfterPaintInfo

Origin commit data
------------------
Commit: 6ae7aa641d
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-12-30 (Mon, 30 Dec 2019)
This commit is contained in:
2019-12-30 17:40:32 +01:00
committed by vanhofen
parent 6e0d07f67c
commit af50243aa8
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
cctext->allowPaint(cc_allow_paint);
cctext->paint(CC_SAVE_SCREEN_NO);
OnAfterPaintInfo();
}

View File

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