CComponents: add new member getFrameThickness()

Origin commit data
------------------
Branch: ni/coolstream
Commit: f14141d49c
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-06-12 (Wed, 12 Jun 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2013-06-12 23:09:35 +02:00
parent 04d0a9dc38
commit ba68d43ad9

View File

@@ -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;};