-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcepgbrowser.cpp
473 lines (416 loc) · 13.6 KB
/
cepgbrowser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/*********************** Information *************************\
| $HeadURL$
|
| Author: Jo2003
|
| Begin: 18.01.2010 / 16:07:29
|
| Last edited by: $Author$
|
| $Id$
\*************************************************************/
#include "qurlex.h"
#include "cepgbrowser.h"
#include "small_helpers.h"
#include "externals_inc.h"
/* -----------------------------------------------------------------\
| Method: CEpgBrowser / constructor
| Begin: 18.01.2010 / 16:07:59
| Author: Jo2003
| Description: create object, init values
|
| Parameters: pointer to parent widget
|
| Returns: --
\----------------------------------------------------------------- */
CEpgBrowser::CEpgBrowser(QWidget *parent) :
QTextBrowserEx(parent)
{
iCid = 0;
_iTs = 0;
mProgram.clear();
}
/* -----------------------------------------------------------------\
| Method: DisplayEpg
| Begin: 18.01.2010 / 16:08:35
| Author: Jo2003
| Description: display EPG entries
|
| Parameters: list of entries, channel name, channel id,
| timestamp, archiv flag, timeshift, external epg flag
|
| Returns: --
\----------------------------------------------------------------- */
void CEpgBrowser::DisplayEpg(QVector<cparser::SEpg> epglist,
const QString &sName, int iChanID, uint uiGmt,
bool bHasArchiv, int iTs, bool bExt)
{
epg::SShow actShow;
// store values ...
sChanName = sName;
iCid = iChanID;
uiTime = uiGmt;
bArchive = bHasArchiv;
_iTs = iTs;
bExtEPG = bExt;
// clear program map ...
mProgram.clear();
for (int i = 0; i < epglist.size(); i ++)
{
actShow.sShowName = epglist[i].sName;
actShow.sShowDescr = epglist[i].sDescr;
actShow.uiStart = epglist[i].uiGmt;
if (epglist[i].uiEnd != 0)
{
actShow.uiEnd = epglist[i].uiEnd;
}
else
{
actShow.uiEnd = ((i + 1) < epglist.size()) ? epglist[i + 1].uiGmt : 0;
}
// store start time and show info ...
mProgram.insert(epglist[i].uiGmt, actShow);
}
clear();
setHtml(createHtmlCode());
scrollTo();
}
/* -----------------------------------------------------------------\
| Method: recreateEpg
| Begin: 24.01.2011 / 14:55
| Author: Jo2003
| Description: re-create epg with values stored in class
| (needed when changing timeshift)
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
void CEpgBrowser::recreateEpg()
{
clear();
setHtml(createHtmlCode());
scrollTo();
}
/* -----------------------------------------------------------------\
| Method: createHtmlCode
| Begin: 24.01.2011 / 14:55
| Author: Jo2003
| Description: create epg html code
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
QString CEpgBrowser::createHtmlCode()
{
QString tab, row, page, sHeadLine, timeCell, img, progCell, buttons;
const char* rowStyle;
QDateTime dtStartThis, dtStartNext;
QUrlEx url;
bool bMark;
bool bGray;
epg::SShow actShow;
int i, iAa, iFs = 0;
QMap<uint, epg::SShow>::const_iterator cit;
// reset current marker ...
hasCurrent = false;
// create compare times ...
QDateTime dayStart(QDateTime::fromTime_t(uiTime).date());
if (!bExtEPG)
{
// create headline (table head) ...
sHeadLine = QString("%1 - %2")
.arg(sChanName)
.arg(QDateTime::fromTime_t(uiTime).toString("dd. MMM. yyyy"));
// create table head ...
row = pHtml->tableHead(sHeadLine, TMPL_TH_STYLE, 2);
// wrap in row ...
tab = pHtml->tableRow(row);
}
if (mProgram.isEmpty())
{
row = pHtml->tableCell(tr("No information available!"), TMPL_A_STYLE, 2, "center");
tab += pHtml->tableRow(row);
}
else
{
for (cit = mProgram.constBegin(), i = 0; cit != mProgram.constEnd(); cit++, i++)
{
timeCell = "";
buttons = "";
actShow = *cit;
bMark = false;
bGray = false;
dtStartThis = QDateTime::fromTime_t(actShow.uiStart + _iTs);
// special handling for extended EPG ...
if (bExtEPG)
{
#ifdef __MY_EXT_EPG
// don't show entries older then 22:00 last day ...
if (dtStartThis < dayStart.addSecs(-EXT_EPG_TIME))
{
continue;
}
// all what is not today should be marked gray ...
if ((dtStartThis < dayStart) || (dtStartThis > dayStart.addDays(1)))
{
bGray = true;
#else
if ((dtStartThis < dayStart) || (dtStartThis > dayStart.addDays(1)))
{
continue;
#endif // __MY_EXT_EPG
}
else if (iFs == 0)
{
// mark first show for scrolling ...
iFs = 1;
}
}
// find out if we should mark the time ...
if (actShow.uiEnd)
{
dtStartNext = QDateTime::fromTime_t(actShow.uiEnd + _iTs);
bMark = NowRunning(dtStartThis, dtStartNext);
}
else
{
bMark = NowRunning(dtStartThis);
}
if (bMark)
{
// when creating current program cell it shouldn't be gray!
bGray = false;
// add anchor ...
timeCell = pHtml->simpleTag("a", "name='nowPlaying'");
// set current marker ...
hasCurrent = true;
}
// add anchor for first show of day ...
if (iFs == 1)
{
iFs = -1;
timeCell += pHtml->simpleTag("a", "name='firstShowOfDay'");
}
// add time ...
timeCell += pHtml->span(dtStartThis.toString("hh:mm"), bGray ? "color: #888;" : "color: black;") + "<hr>";
// timer record stuff ...
if (dtStartThis > tmSync.currentDateTimeSync())
{
// has not started so far ... add timer record link ...
url.clear();
url.addQueryItem("action", "timerrec");
url.addQueryItem("cid" , QString::number(iCid));
url.addQueryItem("start", QString::number(actShow.uiStart));
url.addQueryItem("end" , QString::number(actShow.uiEnd));
url.setPath("vlc-record");
// rec button ...
img = pHtml->image(":/png/timer", 16, 16, "", tr("add timer record ..."));
// wrap in link ...
buttons = pHtml->link(url.toEncoded(), img) + " ";
}
// archive supported and still available ...
if (bArchive && ((iAa = CSmallHelpers::archiveAvailable(actShow.uiStart, tmSync)) > -2))
{
// only show archiv links if this show is already available ...
if (iAa == 1)
{
url.clear();
url.addQueryItem("action", "archivplay");
url.addQueryItem("cid", QString::number(iCid));
url.addQueryItem("gmt", QString::number(actShow.uiStart));
url.setPath("vlc-record");
// play button ...
img = pHtml->image(":/png/play", 16, 16, "", tr("play from archive ..."));
// wrap in link ...
buttons += pHtml->link(url.toEncoded(), img) + " ";
url.clear();
url.addQueryItem("action", "archivrec");
url.addQueryItem("cid", QString::number(iCid));
url.addQueryItem("gmt", QString::number(actShow.uiStart));
url.setPath("vlc-record");
// rec button ...
img = pHtml->image(":/png/record", 16, 16, "", tr("record from archive ..."));
// wrap in link ...
buttons += pHtml->link(url.toEncoded(), img) + " ";
}
// mark for later view ...
url.clear();
url.addQueryItem("action", "remember");
url.addQueryItem("cid" , QString::number(iCid));
url.addQueryItem("gmt" , QString::number(actShow.uiStart));
url.setPath("vlc-record");
// remember button ...
img = pHtml->image(":/png/remember", 16, 16, "", tr("add to watch list ..."));
// wrap in link ...
buttons += pHtml->link(url.toEncoded(), img);
}
timeCell += pHtml->htmlTag("div", buttons, "white-space: pre;");
progCell = pHtml->span(actShow.sShowName, bGray ? "color: #888;" : "color: black;");
if (actShow.sShowDescr != "")
{
progCell += "<br />" + pHtml->span(actShow.sShowDescr, bGray ? "color: #888;" : "color: #666;");
}
// check which row style to use ...
if (bMark)
{
rowStyle = TMPL_CUR_STYLE;
}
else if (bGray)
{
rowStyle = (i % 2) ? TMPL_B_STYLE_GRAY : TMPL_A_STYLE_GRAY;
}
else
{
rowStyle = (i % 2) ? TMPL_B_STYLE : TMPL_A_STYLE;
}
row = pHtml->tableCell(timeCell, rowStyle);
row += pHtml->tableCell(progCell, rowStyle);
// wrap in table row ...
tab += pHtml->tableRow(row);
}
}
// wrap in table ...
tab = pHtml->table(tab, TMPL_TAB_STYLE);
// wrap in page ...
page = pHtml->htmlPage(tab, "EPG Table");
return page;
}
//---------------------------------------------------------------------------
//
//! \brief scroll either to current show or start of day
//
//! \author Jo2003
//! \date 28.08.2014
//
//---------------------------------------------------------------------------
void CEpgBrowser::scrollTo()
{
if (hasCurrent)
{
scrollToAnchor("nowPlaying");
}
else
{
scrollToAnchor("firstShowOfDay");
}
}
/* -----------------------------------------------------------------\
| Method: NowRunning
| Begin: 18.01.2010 / 16:09:56
| Author: Jo2003
| Description: check if given show is now running
|
| Parameters: this shows start time, next shows start time
|
| Returns: true ==> running
| false ==> not running
\----------------------------------------------------------------- */
bool CEpgBrowser::NowRunning (const QDateTime &startThis, const QDateTime &startNext)
{
bool bNowRunning = false;
// now given, later not given ...
if (startThis.isValid() && !startNext.isValid())
{
int diff = tmSync.syncronizedTime_t() - startThis.toTime_t();
// mark this show as running, if start wasn't more
// than 3 hours ago ...
if ((diff >= 0) && (diff < (3600 * 3))) // 3 hours
{
bNowRunning = true;
}
}
// now and later given ...
else if (startThis.isValid() && startNext.isValid())
{
if ((tmSync.currentDateTimeSync() >= startThis)
&& (tmSync.currentDateTimeSync() <= startNext))
{
bNowRunning = true;
}
}
return bNowRunning;
}
/* -----------------------------------------------------------------\
| Method: epgShow
| Begin: 16.01.2010 / 10:52:12
| Author: Jo2003
| Description: get the program info
|
| Parameters: timestamp for this show
|
| Returns: show info
\----------------------------------------------------------------- */
const epg::SShow CEpgBrowser::epgShow(uint uiTimeT)
{
return mProgram.value(uiTimeT);
}
/* -----------------------------------------------------------------\
| Method: exportProgMap
| Begin: 03.11.2011
| Author: Jo2003
| Description: export a copy of the program map
|
| Parameters: --
|
| Returns: program map
\----------------------------------------------------------------- */
QMap<uint, epg::SShow> CEpgBrowser::exportProgMap()
{
return mProgram;
}
/* -----------------------------------------------------------------\
| Method: EnlargeFont
| Begin: 02.02.2010 / 16:52:12
| Author: Jo2003
| Description: enlarge font size by one
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
void CEpgBrowser::EnlargeFont()
{
QFont epgFont = font();
epgFont.setPointSize(epgFont.pointSize() + 1);
setFont(epgFont);
scrollTo();
}
/* -----------------------------------------------------------------\
| Method: ReduceFont
| Begin: 02.02.2010 / 16:52:12
| Author: Jo2003
| Description: reduce font size by one
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
void CEpgBrowser::ReduceFont()
{
QFont epgFont = font();
epgFont.setPointSize(epgFont.pointSize() - 1);
setFont(epgFont);
scrollTo();
}
/* -----------------------------------------------------------------\
| Method: ChangeFontSize
| Begin: 18.02.2010 / 12:52:12
| Author: Jo2003
| Description: change font size with value given as option
|
| Parameters: change value
|
| Returns: --
\----------------------------------------------------------------- */
void CEpgBrowser::ChangeFontSize(int iSz)
{
QFont epgFont = font();
epgFont.setPointSize(epgFont.pointSize() + iSz);
setFont(epgFont);
scrollTo();
}
/************************* History ***************************\
| $Log$
\*************************************************************/