From 556b2cccb2e502f3dc99b4858b5169caae63aacb Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Tue, 15 Jul 2014 16:23:40 +0200 Subject: [PATCH] CComponentsHeader: add methode getCaptionFont() --- src/gui/components/cc_frm_header.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/components/cc_frm_header.h b/src/gui/components/cc_frm_header.h index f85c85300..d518c2782 100644 --- a/src/gui/components/cc_frm_header.h +++ b/src/gui/components/cc_frm_header.h @@ -123,6 +123,8 @@ class CComponentsHeader : public CComponentsForm virtual void setCaptionAlignment(const int& align_mode){cch_caption_align = align_mode;}; ///set text font object for caption virtual void setCaptionFont(Font* font); + ///returns font object of title caption + virtual Font* getCaptionFont(){return cch_font;}; ///set text color for caption virtual void setCaptionColor(fb_pixel_t text_color){cch_col_text = text_color;};