diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-02-18 19:46:55 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-02-18 19:46:55 +0100 |
commit | 330cc7df50705aa63721c45db72522a4ad51d5e6 (patch) | |
tree | 34095ac0d96ef82f2187c04a4c736b51b8e0ddbd | |
parent | f19294c155e658c7a3a14f1b51a5223b0b8b9b91 (diff) | |
download | skin-flatplus-330cc7df50705aa63721c45db72522a4ad51d5e6.tar.gz skin-flatplus-330cc7df50705aa63721c45db72522a4ad51d5e6.tar.bz2 |
add support for full filename in SetItemRecording
-rw-r--r-- | displaymenu.c | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/displaymenu.c b/displaymenu.c index ee73b7e2..3bdab0c6 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -1471,18 +1471,13 @@ bool cFlatDisplayMenu::SetItemRecording(const cRecording *Recording, int Index, Left += imgRecCut->Width() + marginItem; menuPixmap->DrawText(cPoint(Left, Top), RecName, ColorFg, ColorBg, font, menuItemWidth - Left - marginItem); - } else { + } else if( Total > 0 ) { img = imgLoader.LoadIcon("folder", fontHeight, fontHeight); if( img ) { menuIconsPixmap->DrawImage( cPoint(Left, Top), *img ); Left += img->Width() + marginItem; } - /* - buffer = cString::sprintf("%s %d %s %d", tr("Recordings"), Total, tr("Unwatched"), New); - if( Left + font->Width(*buffer) > LeftWidth ) - buffer = cString::sprintf("%s %d %s %d", tr("Recs"), Total, tr("Unwatched"), New); - */ buffer = cString::sprintf("%d ", Total); menuPixmap->DrawText(cPoint(Left, Top), buffer, ColorFg, ColorBg, font, menuItemWidth - Left - marginItem); Left += font->Width( buffer ); @@ -1498,6 +1493,14 @@ bool cFlatDisplayMenu::SetItemRecording(const cRecording *Recording, int Index, LeftWidth += font->Width(RecName) + marginItem*2; buffer = cString::sprintf("(%s)", *ShortDateString(Recording->Start())); menuPixmap->DrawText(cPoint(LeftWidth, Top), buffer, ColorExtraTextFg, ColorBg, font, menuItemWidth - LeftWidth - marginItem); + } else if( Total == -1 ) { + img = imgLoader.LoadIcon("folder", fontHeight, fontHeight); + if( img ) { + menuIconsPixmap->DrawImage( cPoint(Left, Top), *img ); + Left += img->Width() + marginItem; + } + + menuPixmap->DrawText(cPoint(Left, Top), Recording->FileName(), ColorFg, ColorBg, font, menuItemWidth - Left - marginItem); } } else { if( Total == 0 ) { @@ -1534,7 +1537,7 @@ bool cFlatDisplayMenu::SetItemRecording(const cRecording *Recording, int Index, } Left += imgRecCut->Width() + marginItem; - } else { + } else if( Total > 0 ) { img = imgLoader.LoadIcon("folder", fontHeight, fontHeight); if( img ) { menuIconsPixmap->DrawImage( cPoint(Left, Top), *img ); @@ -1556,6 +1559,13 @@ bool cFlatDisplayMenu::SetItemRecording(const cRecording *Recording, int Index, Left += imgRecNewSml->Width() + marginItem; buffer = cString::sprintf("%d", New); menuPixmap->DrawText(cPoint(Left, Top), buffer, ColorFg, ColorBg, fontSml, menuItemWidth - Left - marginItem); + } else if( Total == -1 ) { + img = imgLoader.LoadIcon("folder", fontHeight, fontHeight); + if( img ) { + menuIconsPixmap->DrawImage( cPoint(Left, Top), *img ); + Left += img->Width() + marginItem; + } + menuPixmap->DrawText(cPoint(Left, Top), Recording->FileName(), ColorFg, ColorBg, font, menuItemWidth - Left - marginItem); } } |