2013-12-07 15:51:50 +01:00
|
|
|
#include "imageloader.h"
|
2013-01-17 13:16:44 +01:00
|
|
|
#include "timeline.h"
|
|
|
|
|
|
|
|
cTimeLine::cTimeLine(cMyTime *myTime) {
|
2013-05-26 11:38:05 +02:00
|
|
|
this->myTime = myTime;
|
2013-05-24 16:23:23 +02:00
|
|
|
if (tvguideConfig.displayMode == eVertical) {
|
2013-07-09 00:17:42 +02:00
|
|
|
dateViewer = new cStyledPixmap(osdManager.requestPixmap(1, cRect(0,
|
2013-12-21 11:25:03 +01:00
|
|
|
geoManager.statusHeaderHeight,
|
|
|
|
geoManager.dateVieverWidth,
|
|
|
|
geoManager.dateVieverHeight)));
|
2013-07-23 19:47:40 +02:00
|
|
|
timeline = osdManager.requestPixmap(2, cRect(0,
|
2013-12-21 11:25:03 +01:00
|
|
|
geoManager.statusHeaderHeight + geoManager.channelHeaderHeight + geoManager.channelGroupsHeight,
|
|
|
|
geoManager.timeLineWidth,
|
|
|
|
geoManager.osdHeight - geoManager.statusHeaderHeight - geoManager.channelHeaderHeight - geoManager.channelGroupsHeight - geoManager.footerHeight)
|
2013-05-24 16:23:23 +02:00
|
|
|
, cRect(0,
|
|
|
|
0,
|
2013-12-21 11:25:03 +01:00
|
|
|
geoManager.timeLineWidth,
|
|
|
|
1440*geoManager.minutePixel));
|
2013-07-23 19:47:40 +02:00
|
|
|
timelineBack = osdManager.requestPixmap(1, cRect(0,
|
2013-12-21 11:25:03 +01:00
|
|
|
geoManager.statusHeaderHeight + geoManager.channelHeaderHeight + geoManager.channelGroupsHeight,
|
|
|
|
geoManager.timeLineWidth,
|
|
|
|
geoManager.osdHeight - geoManager.statusHeaderHeight - geoManager.channelHeaderHeight - geoManager.channelGroupsHeight - geoManager.footerHeight));
|
2013-05-24 16:23:23 +02:00
|
|
|
} else if (tvguideConfig.displayMode == eHorizontal) {
|
2013-07-09 00:17:42 +02:00
|
|
|
dateViewer = new cStyledPixmap(osdManager.requestPixmap(1, cRect(0,
|
2013-12-21 11:25:03 +01:00
|
|
|
geoManager.statusHeaderHeight,
|
|
|
|
geoManager.dateVieverWidth,
|
|
|
|
geoManager.dateVieverHeight)));
|
|
|
|
timeline = osdManager.requestPixmap(2, cRect(geoManager.channelHeaderWidth + geoManager.channelGroupsWidth,
|
|
|
|
geoManager.statusHeaderHeight,
|
|
|
|
geoManager.osdWidth - geoManager.channelHeaderWidth - geoManager.channelGroupsWidth,
|
|
|
|
geoManager.timeLineHeight)
|
2013-05-24 16:23:23 +02:00
|
|
|
, cRect(0,
|
|
|
|
0,
|
2013-12-21 11:25:03 +01:00
|
|
|
1440*geoManager.minutePixel,
|
|
|
|
geoManager.timeLineHeight));
|
|
|
|
timelineBack = osdManager.requestPixmap(1, cRect(geoManager.channelHeaderWidth + geoManager.channelGroupsWidth,
|
|
|
|
geoManager.statusHeaderHeight,
|
|
|
|
geoManager.osdWidth - geoManager.channelHeaderWidth - geoManager.channelGroupsWidth,
|
|
|
|
geoManager.timeLineHeight));
|
2013-05-24 16:23:23 +02:00
|
|
|
}
|
2013-12-21 11:25:03 +01:00
|
|
|
|
|
|
|
int clockY = 10;
|
|
|
|
int clockX;
|
|
|
|
if (tvguideConfig.scaleVideo) {
|
|
|
|
clockX = geoManager.osdWidth - geoManager.tvFrameWidth - geoManager.clockWidth - 4;
|
|
|
|
} else {
|
|
|
|
clockX = geoManager.osdWidth - geoManager.clockWidth - 10;
|
|
|
|
}
|
|
|
|
clock = new cStyledPixmap(osdManager.requestPixmap(3, cRect(clockX,
|
|
|
|
clockY,
|
|
|
|
geoManager.clockWidth,
|
|
|
|
geoManager.clockHeight)));
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cTimeLine::~cTimeLine(void) {
|
2013-05-26 11:38:05 +02:00
|
|
|
delete dateViewer;
|
|
|
|
osdManager.releasePixmap(timeline);
|
2013-07-23 19:47:40 +02:00
|
|
|
osdManager.releasePixmap(timelineBack);
|
2013-05-24 16:23:23 +02:00
|
|
|
if (clock)
|
|
|
|
delete clock;
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTimeLine::drawDateViewer() {
|
2013-05-26 11:38:05 +02:00
|
|
|
cString weekDay = myTime->GetWeekday();
|
|
|
|
cString date = myTime->GetDate();
|
2013-12-21 11:25:03 +01:00
|
|
|
if (tvguideConfig.style != eStyleGraphical) {
|
|
|
|
dateViewer->setColor(theme.Color(clrHeader), theme.Color(clrHeaderBlending));
|
|
|
|
dateViewer->drawBackground();
|
|
|
|
dateViewer->drawBorder();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
cImage *imgBack = imgCache.GetOsdElement(oeDateViewer);
|
|
|
|
if (imgBack)
|
|
|
|
dateViewer->DrawImage(cPoint(0,0), *imgBack);
|
|
|
|
else
|
|
|
|
dateViewer->Fill(clrTransparent);
|
|
|
|
}
|
|
|
|
tColor colorFont = theme.Color(clrTimeline1);
|
|
|
|
tColor colorFontBack = (tvguideConfig.style == eStyleFlat)?theme.Color(clrHeader):clrTransparent;
|
2013-05-24 16:23:23 +02:00
|
|
|
|
|
|
|
if (tvguideConfig.displayMode == eVertical) {
|
2013-12-21 11:25:03 +01:00
|
|
|
int textHeight = fontManager.FontTimeLineWeekday->Height();
|
|
|
|
int weekdayWidth = fontManager.FontTimeLineWeekday->Width(*weekDay);
|
|
|
|
int dateWidth = fontManager.FontTimeLineDate->Width(*date);
|
|
|
|
dateViewer->DrawText(cPoint((geoManager.timeLineWidth-weekdayWidth)/2, (geoManager.channelHeaderHeight + geoManager.channelGroupsHeight -2*textHeight)/2), *weekDay, colorFont, colorFontBack, fontManager.FontTimeLineWeekday);
|
|
|
|
dateViewer->DrawText(cPoint((geoManager.timeLineWidth-dateWidth)/2, (geoManager.channelHeaderHeight + geoManager.channelGroupsHeight -2*textHeight)/2 + textHeight + 5), *date, colorFont, colorFontBack, fontManager.FontTimeLineDate);
|
2013-05-24 16:23:23 +02:00
|
|
|
} else if (tvguideConfig.displayMode == eHorizontal) {
|
|
|
|
cString strDate = cString::sprintf("%s %s", *weekDay, *date);
|
2013-12-21 11:25:03 +01:00
|
|
|
int x = (dateViewer->Width() - fontManager.FontTimeLineDateHorizontal->Width(*strDate))/2;
|
|
|
|
int y = (dateViewer->Height() - fontManager.FontTimeLineDateHorizontal->Height())/2;
|
|
|
|
dateViewer->DrawText(cPoint(x, y), *strDate, colorFont, colorFontBack, fontManager.FontTimeLineDateHorizontal);
|
2013-05-24 16:23:23 +02:00
|
|
|
}
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTimeLine::drawTimeline() {
|
2013-07-23 19:47:40 +02:00
|
|
|
timelineBack->Fill(clrBlack);
|
2013-05-26 11:38:05 +02:00
|
|
|
timeline->SetTile(true);
|
|
|
|
timeline->Fill(theme.Color(clrBackground));
|
2013-05-26 16:54:22 +02:00
|
|
|
tColor colorFont, colorBackground;
|
2013-05-26 11:38:05 +02:00
|
|
|
|
2013-12-21 11:25:03 +01:00
|
|
|
int imgWidth = geoManager.timeLineGridWidth;
|
|
|
|
int imgHeight = geoManager.timeLineGridHeight;
|
|
|
|
const cImage *img1 = NULL;
|
|
|
|
const cImage *img2 = NULL;
|
|
|
|
if (tvguideConfig.style == eStyleGraphical) {
|
|
|
|
img1 = imgCache.GetOsdElement(oeTimeline1);
|
|
|
|
img2 = imgCache.GetOsdElement(oeTimeline2);
|
|
|
|
} else {
|
|
|
|
img1 = createBackgroundImage(imgWidth, imgHeight, theme.Color(clrTimeline1), theme.Color(clrTimeline1Blending));
|
|
|
|
img2 = createBackgroundImage(imgWidth, imgHeight, theme.Color(clrTimeline2), theme.Color(clrTimeline2Blending));
|
2013-05-24 16:23:23 +02:00
|
|
|
}
|
2013-05-26 11:38:05 +02:00
|
|
|
const cImage *img = NULL;
|
2013-12-21 11:25:03 +01:00
|
|
|
if (!img1 || !img2)
|
|
|
|
return;
|
2013-05-26 11:38:05 +02:00
|
|
|
int textWidth, posX, posY;
|
|
|
|
char timetext[10];
|
|
|
|
|
|
|
|
for (int i=0; i<48; i++) {
|
|
|
|
if (i%2==0) {
|
|
|
|
img = img1;
|
|
|
|
colorFont = theme.Color(clrTimeline2);
|
2013-12-21 11:25:03 +01:00
|
|
|
colorBackground = (tvguideConfig.style == eStyleFlat)?theme.Color(clrTimeline1):clrTransparent;
|
2013-05-26 11:38:05 +02:00
|
|
|
if (tvguideConfig.timeFormat == e12Hours) {
|
|
|
|
if (i == 0)
|
|
|
|
sprintf(timetext, "12:00 PM");
|
|
|
|
else if (i/2 < 13)
|
|
|
|
sprintf(timetext, "%d:00 AM", i/2);
|
|
|
|
else
|
|
|
|
sprintf(timetext, "%d:00 PM", i/2-12);
|
|
|
|
} else {
|
|
|
|
sprintf(timetext, "%d:00", i/2);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
img = img2;
|
|
|
|
colorFont = theme.Color(clrTimeline1);
|
2013-12-21 11:25:03 +01:00
|
|
|
colorBackground = (tvguideConfig.style == eStyleFlat)?theme.Color(clrTimeline2):clrTransparent;
|
2013-05-26 11:38:05 +02:00
|
|
|
if (tvguideConfig.timeFormat == e12Hours) {
|
|
|
|
if (i == 1)
|
|
|
|
sprintf(timetext, "12:30 PM");
|
|
|
|
else if (i/2 < 13)
|
|
|
|
sprintf(timetext, "%d:30 AM", i/2);
|
|
|
|
else
|
|
|
|
sprintf(timetext, "%d:30 PM", i/2-12);
|
|
|
|
} else {
|
|
|
|
sprintf(timetext, "%d:30", i/2);
|
|
|
|
}
|
|
|
|
}
|
2013-05-24 16:23:23 +02:00
|
|
|
if (tvguideConfig.displayMode == eVertical) {
|
2013-12-21 11:25:03 +01:00
|
|
|
posY = i*geoManager.minutePixel*30;
|
|
|
|
timeline->DrawImage(cPoint(0, posY), *img);
|
|
|
|
if (tvguideConfig.style != eStyleGraphical) {
|
|
|
|
decorateTile(0, posY, imgWidth+2, imgHeight);
|
|
|
|
}
|
|
|
|
textWidth = fontManager.FontTimeLineTime->Width(timetext);
|
|
|
|
timeline->DrawText(cPoint((geoManager.timeLineWidth-textWidth)/2, posY + 5), timetext, colorFont, colorBackground, fontManager.FontTimeLineTime);
|
2013-05-24 16:23:23 +02:00
|
|
|
} else if (tvguideConfig.displayMode == eHorizontal) {
|
2013-12-21 11:25:03 +01:00
|
|
|
posX = i*geoManager.minutePixel*30;
|
|
|
|
timeline->DrawImage(cPoint(posX, 0), *img);
|
|
|
|
if (tvguideConfig.style != eStyleGraphical) {
|
|
|
|
decorateTile(posX, 0, imgWidth, imgHeight+2);
|
|
|
|
}
|
|
|
|
timeline->DrawText(cPoint(posX + 15, (dateViewer->Height() - fontManager.FontTimeLineTimeHorizontal->Height())/2), timetext, colorFont, colorBackground, fontManager.FontTimeLineTimeHorizontal);
|
2013-05-24 16:23:23 +02:00
|
|
|
}
|
2013-05-26 11:38:05 +02:00
|
|
|
}
|
|
|
|
setTimeline();
|
2013-12-21 11:25:03 +01:00
|
|
|
if (tvguideConfig.style != eStyleGraphical) {
|
|
|
|
delete img1;
|
|
|
|
delete img2;
|
|
|
|
}
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
2013-07-23 19:47:40 +02:00
|
|
|
void cTimeLine::decorateTile(int posX, int posY, int tileWidth, int tileHeight) {
|
|
|
|
timeline->DrawRectangle(cRect(posX,posY,tileWidth,2), theme.Color(clrBackground)); //top
|
|
|
|
timeline->DrawRectangle(cRect(posX,posY,2,tileHeight), theme.Color(clrBackground)); //left
|
|
|
|
timeline->DrawRectangle(cRect(posX,posY + tileHeight-2,tileWidth,2), theme.Color(clrBackground)); //bottom
|
|
|
|
timeline->DrawRectangle(cRect(posX + tileWidth-2,posY,2,tileHeight), theme.Color(clrBackground)); //right
|
|
|
|
|
|
|
|
timeline->DrawRectangle(cRect(2+posX,posY+2,tileWidth-4,1), theme.Color(clrBorder)); //top
|
|
|
|
timeline->DrawRectangle(cRect(2+posX,posY+2,1,tileHeight-4), theme.Color(clrBorder)); //left
|
|
|
|
timeline->DrawRectangle(cRect(2+posX,posY+tileHeight-3,tileWidth-4,1), theme.Color(clrBorder)); //bottom
|
|
|
|
timeline->DrawRectangle(cRect(posX+tileWidth-3,posY+2,1,tileHeight-4), theme.Color(clrBorder)); //right
|
|
|
|
|
|
|
|
if (tvguideConfig.roundedCorners) {
|
|
|
|
int borderRadius = 12;
|
|
|
|
drawRoundedCorners(posX, posY, tileWidth, tileHeight, borderRadius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTimeLine::drawRoundedCorners(int posX, int posY, int width, int height, int radius) {
|
|
|
|
timeline->DrawEllipse(cRect(posX+2,posY+2,radius,radius), theme.Color(clrBorder), -2);
|
|
|
|
timeline->DrawEllipse(cRect(posX+1,posY+1,radius,radius), theme.Color(clrBackground), -2);
|
|
|
|
|
|
|
|
timeline->DrawEllipse(cRect(posX+width-radius - 2,posY+2,radius,radius), theme.Color(clrBorder), -1);
|
|
|
|
timeline->DrawEllipse(cRect(posX+width-radius - 1,posY+1,radius,radius), theme.Color(clrBackground), -1);
|
|
|
|
|
|
|
|
if( height > 2*radius) {
|
|
|
|
timeline->DrawEllipse(cRect(posX+2,posY+height-radius - 2,radius,radius), theme.Color(clrBorder), -3);
|
|
|
|
timeline->DrawEllipse(cRect(posX+1,posY+height-radius - 1,radius,radius), theme.Color(clrBackground), -3);
|
|
|
|
|
|
|
|
timeline->DrawEllipse(cRect(posX+width-radius - 2,posY+height-radius - 2,radius,radius), theme.Color(clrBorder), -4);
|
|
|
|
timeline->DrawEllipse(cRect(posX+width-radius - 1,posY+height-radius - 1,radius,radius), theme.Color(clrBackground), -4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 13:16:44 +01:00
|
|
|
cImage *cTimeLine::createBackgroundImage(int width, int height, tColor clrBgr, tColor clrBlend) {
|
2013-05-26 11:38:05 +02:00
|
|
|
cImage *image = NULL;
|
2013-12-21 11:25:03 +01:00
|
|
|
if (tvguideConfig.style == eStyleBlendingDefault) {
|
2013-01-17 16:19:37 +01:00
|
|
|
image = new cImage(cSize(width, height));
|
|
|
|
image->Fill(clrBgr);
|
2013-05-26 11:38:05 +02:00
|
|
|
int stepY = 0.5*height / 64;
|
|
|
|
int alpha = 0x00;
|
|
|
|
tColor clr;
|
|
|
|
for (int i = 0; i<64; i++) {
|
|
|
|
clr = AlphaBlend(clrBgr, clrBlend, alpha);
|
|
|
|
for (int y = i*stepY; y < (i+1)*stepY; y++) {
|
|
|
|
for (int x=0; x<width; x++) {
|
|
|
|
image->SetPixel(cPoint(x,y), clr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
alpha += 0x04;
|
|
|
|
}
|
2013-12-21 11:25:03 +01:00
|
|
|
} else if (tvguideConfig.style == eStyleBlendingMagick) {
|
2013-01-17 16:19:37 +01:00
|
|
|
cImageLoader imgLoader;
|
|
|
|
if (imgLoader.DrawBackground(clrBgr, clrBlend, width, height)) {
|
|
|
|
image = new cImage(imgLoader.GetImage());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
image = new cImage(cSize(width, height));
|
|
|
|
image->Fill(clrBgr);
|
|
|
|
}
|
2013-05-26 11:38:05 +02:00
|
|
|
return image;
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTimeLine::setTimeline() {
|
2013-05-26 11:38:05 +02:00
|
|
|
int offset = myTime->GetTimelineOffset();
|
2013-05-24 16:23:23 +02:00
|
|
|
int xNew, yNew;
|
|
|
|
if (tvguideConfig.displayMode == eVertical) {
|
|
|
|
xNew = 0;
|
2013-12-21 11:25:03 +01:00
|
|
|
yNew = -offset*geoManager.minutePixel;
|
2013-05-24 16:23:23 +02:00
|
|
|
} else if (tvguideConfig.displayMode == eHorizontal) {
|
2013-12-21 11:25:03 +01:00
|
|
|
xNew = -offset*geoManager.minutePixel;
|
2013-05-24 16:23:23 +02:00
|
|
|
yNew = 0;
|
|
|
|
}
|
|
|
|
timeline->SetDrawPortPoint(cPoint(xNew, yNew));
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTimeLine::drawClock() {
|
2013-12-21 11:25:03 +01:00
|
|
|
clock->Fill(clrTransparent);
|
2013-05-26 11:38:05 +02:00
|
|
|
cString currentTime = myTime->GetCurrentTime();
|
2013-12-21 11:25:03 +01:00
|
|
|
int textHeight = fontManager.FontTimeLineTime->Height();
|
|
|
|
int clockTextWidth = fontManager.FontTimeLineTime->Width(*currentTime);
|
|
|
|
tColor colorFontBack = (tvguideConfig.style == eStyleFlat)?theme.Color(clrHeader):clrTransparent;
|
|
|
|
if (tvguideConfig.style == eStyleGraphical) {
|
|
|
|
clock->drawBackgroundGraphical(bgClock);
|
|
|
|
} else {
|
|
|
|
clock->setColor(theme.Color(clrHeader), theme.Color(clrHeaderBlending));
|
|
|
|
clock->drawBackground();
|
|
|
|
clock->drawBorder();
|
|
|
|
}
|
|
|
|
clock->DrawText(cPoint((geoManager.clockWidth-clockTextWidth)/2, (geoManager.clockHeight-textHeight)/2), *currentTime, theme.Color(clrFont), colorFontBack, fontManager.FontTimeLineTime);
|
2013-01-17 13:16:44 +01:00
|
|
|
}
|