From f14141d49c8fab0b068974eee7eb9ed40b4bb783 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Wed, 12 Jun 2013 23:09:35 +0200 Subject: [PATCH] CComponents: add new member getFrameThickness() --- src/gui/components/cc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/components/cc.h b/src/gui/components/cc.h index 0fdd83ac2..39b8909d6 100644 --- a/src/gui/components/cc.h +++ b/src/gui/components/cc.h @@ -153,6 +153,8 @@ class CComponents inline virtual int getHeight(){return height;}; ///return width of component inline virtual int getWidth(){return width;}; + ///return of frame thickness + inline virtual int getFrameThickness(){return fr_thickness;}; ///return/set (pass through) width and height of component inline virtual void getSize(int* w, int* h){*w=width; *h=height;};