auto-enumerate FONT_TYPE_COUNT instead of defining it

Origin commit data
------------------
Branch: ni/coolstream
Commit: 1f1aa08562
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-04-15 (Mon, 15 Apr 2013)


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

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2013-04-15 21:37:43 +02:00
committed by vanhofen
parent 917b67d4b7
commit d5aebb9f1c
3 changed files with 28 additions and 28 deletions

View File

@@ -87,7 +87,7 @@ NEUTRINO_CPP CTimerdClient *g_Timerd;
NEUTRINO_CPP FBFontRenderClass *g_fontRenderer; NEUTRINO_CPP FBFontRenderClass *g_fontRenderer;
NEUTRINO_CPP Font * g_Font[FONT_TYPE_COUNT]; NEUTRINO_CPP Font * g_Font[SNeutrinoSettings::FONT_TYPE_COUNT];
NEUTRINO_CPP Font * g_SignalFont; NEUTRINO_CPP Font * g_SignalFont;
NEUTRINO_CPP CRCInput *g_RCInput; NEUTRINO_CPP CRCInput *g_RCInput;

View File

@@ -145,7 +145,7 @@ font_sizes_groups font_sizes_groups[6] =
#define FONT_STYLE_BOLD 1 #define FONT_STYLE_BOLD 1
#define FONT_STYLE_ITALIC 2 #define FONT_STYLE_ITALIC 2
font_sizes_struct neutrino_font[FONT_TYPE_COUNT] = font_sizes_struct neutrino_font[SNeutrinoSettings::FONT_TYPE_COUNT] =
{ {
{LOCALE_FONTSIZE_MENU , 20, FONT_STYLE_BOLD , 0}, {LOCALE_FONTSIZE_MENU , 20, FONT_STYLE_BOLD , 0},
{LOCALE_FONTSIZE_MENU_TITLE , 30, FONT_STYLE_BOLD , 0}, {LOCALE_FONTSIZE_MENU_TITLE , 30, FONT_STYLE_BOLD , 0},

View File

@@ -467,33 +467,33 @@ struct SNeutrinoSettings
// Font sizes // Font sizes
#define FONT_TYPE_COUNT 25
enum FONT_TYPES { enum FONT_TYPES {
FONT_TYPE_MENU = 0, FONT_TYPE_MENU = 0,
FONT_TYPE_MENU_TITLE = 1, FONT_TYPE_MENU_TITLE,
FONT_TYPE_MENU_INFO = 2, FONT_TYPE_MENU_INFO,
FONT_TYPE_EPG_TITLE = 3, FONT_TYPE_EPG_TITLE,
FONT_TYPE_EPG_INFO1 = 4, FONT_TYPE_EPG_INFO1,
FONT_TYPE_EPG_INFO2 = 5, FONT_TYPE_EPG_INFO2,
FONT_TYPE_EPG_DATE = 6, FONT_TYPE_EPG_DATE,
FONT_TYPE_EVENTLIST_TITLE = 7, FONT_TYPE_EVENTLIST_TITLE,
FONT_TYPE_EVENTLIST_ITEMLARGE = 8, FONT_TYPE_EVENTLIST_ITEMLARGE,
FONT_TYPE_EVENTLIST_ITEMSMALL = 9, FONT_TYPE_EVENTLIST_ITEMSMALL,
FONT_TYPE_EVENTLIST_DATETIME = 10, FONT_TYPE_EVENTLIST_DATETIME,
FONT_TYPE_EVENTLIST_EVENT = 11, FONT_TYPE_EVENTLIST_EVENT,
FONT_TYPE_GAMELIST_ITEMLARGE = 12, FONT_TYPE_GAMELIST_ITEMLARGE,
FONT_TYPE_GAMELIST_ITEMSMALL = 13, FONT_TYPE_GAMELIST_ITEMSMALL,
FONT_TYPE_CHANNELLIST = 14, FONT_TYPE_CHANNELLIST,
FONT_TYPE_CHANNELLIST_DESCR = 15, FONT_TYPE_CHANNELLIST_DESCR,
FONT_TYPE_CHANNELLIST_NUMBER = 16, FONT_TYPE_CHANNELLIST_NUMBER,
FONT_TYPE_CHANNELLIST_EVENT = 17, FONT_TYPE_CHANNELLIST_EVENT,
FONT_TYPE_CHANNEL_NUM_ZAP = 18, FONT_TYPE_CHANNEL_NUM_ZAP,
FONT_TYPE_INFOBAR_NUMBER = 19, FONT_TYPE_INFOBAR_NUMBER,
FONT_TYPE_INFOBAR_CHANNAME = 20, FONT_TYPE_INFOBAR_CHANNAME,
FONT_TYPE_INFOBAR_INFO = 21, FONT_TYPE_INFOBAR_INFO,
FONT_TYPE_INFOBAR_SMALL = 22, FONT_TYPE_INFOBAR_SMALL,
FONT_TYPE_FILEBROWSER_ITEM = 23, FONT_TYPE_FILEBROWSER_ITEM,
FONT_TYPE_MENU_HINT = 24 FONT_TYPE_MENU_HINT,
FONT_TYPE_COUNT
}; };
// lcdd // lcdd