12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- ============================================================================
- Name : FontData.h
- Author : Den Grigorenko
- Copyright : Copyright (c) 2008 Den123
- Description : Declares font data class
- ============================================================================
- */
- #ifndef __FONT_DATA_H__
- #define __FONT_DATA_H__
- class SFontData
- {
- public:
- void Setup();
-
- public:
- // font for drawing text
- CFont* iFont;
- // width and height of the satellite label
- TInt iSatLbW, iSatLbH;
-
- // color for the satellite label
- TRgb iUsedLbColor, iUnusedLbColor;
- // colors for circles and bars
- TInt iUsedSatPenColor,
- iUnusedSatPenColor,
- iUsedSatBrushColor,
- iUnusedSatBrushColor;
- };
- #endif
|