FontData.h 842 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. ============================================================================
  3. Name : FontData.h
  4. Author : Den Grigorenko
  5. Copyright : Copyright (c) 2008 Den123
  6. Description : Declares font data class
  7. ============================================================================
  8. */
  9. #ifndef __FONT_DATA_H__
  10. #define __FONT_DATA_H__
  11. class SFontData
  12. {
  13. public:
  14. void Setup();
  15. public:
  16. // font for drawing text
  17. CFont* iFont;
  18. // width and height of the satellite label
  19. TInt iSatLbW, iSatLbH;
  20. // color for the satellite label
  21. TRgb iUsedLbColor, iUnusedLbColor;
  22. // colors for circles and bars
  23. TInt iUsedSatPenColor,
  24. iUnusedSatPenColor,
  25. iUsedSatBrushColor,
  26. iUnusedSatBrushColor;
  27. };
  28. #endif