File: menu_announcelist.c

package info (click to toggle)
vdr-plugin-epgsearch 2.4.0%2Bgit20191101-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,992 kB
  • sloc: ansic: 22,373; perl: 1,330; sh: 630; makefile: 226
file content (188 lines) | stat: -rw-r--r-- 6,334 bytes parent folder | download | duplicates (2)
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
/*                                                                  -*- c++ -*-
Copyright (C) 2004-2013 Christian Wieninger

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html

The author can be reached at cwieninger@gmx.de

The project's page is at http://winni.vdr-developer.org/epgsearch
*/

#include <set>
#include "menu_announcelist.h"
#include "epgsearchcfg.h"
#include "noannounce.h"

bool cMenuAnnounceList::showsDetails;

// --- cMenuAnnounceList -------------------------------------------------------
cMenuAnnounceList::cMenuAnnounceList(cSearchResults& SearchResults)
    : cMenuSearchResultsForList(SearchResults,  tr("%d new broadcast"), false)
{
    showsDetails = false;
}

void cMenuAnnounceList::SetHelpKeys(bool Force)
{
    cMenuSearchResultsItem *item = (cMenuSearchResultsItem *)Get(Current());
    int NewHelpKeys = 0;
    if (item) {
        if (item->Selectable() && item->timerMatch == tmFull)
            NewHelpKeys = 2;
        else
            NewHelpKeys = 1;
    }

    bool hasTimer = (NewHelpKeys == 2);
    if (NewHelpKeys != helpKeys || Force) {
        if (toggleKeys == 0)
            SetHelp((EPGSearchConfig.redkeymode == 0 ? (hasTimer ? trVDR("Button$Timer") : trVDR("Button$Record")) : tr("Button$Commands")), m_bSort ? tr("Button$by channel") : tr("Button$by time"), modeYellow == showTitleEpisode ? tr("Button$Episode") : tr("Button$Title"), trVDR("Button$Edit"));
        else
            SetHelp((EPGSearchConfig.redkeymode == 1 ? (hasTimer ? trVDR("Button$Timer") : trVDR("Button$Record")) : tr("Button$Commands")), m_bSort ? tr("Button$by channel") : tr("Button$by time"), modeYellow == showTitleEpisode ? tr("Button$Episode") : tr("Button$Title"), trVDR("Button$Edit"));
        helpKeys = NewHelpKeys;
    }
}

eOSState cMenuAnnounceList::ProcessKey(eKeys Key)
{
    eOSState state = cMenuSearchResultsForList::ProcessKey(Key);
    if (state == osUnknown) {
        switch (Key) {
        case kBlue: {
            cMenuSearchResultsItem *item = (cMenuSearchResultsItem *)Get(Current());
            if (item) {
                if (!HasSubMenu())
                    return AddSubMenu(new cMenuAnnounceDetails(item->event, item->search));
                else if (!showsDetails)
                    return Switch();
                else
                    return osContinue;
            }
        }
        break;
        default:
            break;
        }
    }
    return state;
}

// --- cMenuAnnounceDetails -------------------------------------------------------
cMenuAnnounceDetails::cMenuAnnounceDetails(const cEvent* Event, const cSearchExt* Search)
    : cOsdMenu("", 25), event(Event)
{
    SetMenuCategory(mcEvent);
    cMenuAnnounceList::showsDetails = true;
    if (event && !isempty(event->Title())) {
        cString szTitle = cString::sprintf("%s: %s", tr("announce details"), event->Title());
        SetTitle(szTitle);
    }
    search = Search;

    announceAgain = 1;
    announceWithNextUpdate = 1;
    announceAgainDay = 0;

    cNoAnnounce* noAnnounce = NoAnnounces.InList(event);
    if (noAnnounce) {
        if (noAnnounce->nextAnnounce > 0) {
            announceAgainDay = noAnnounce->nextAnnounce;
            announceWithNextUpdate = 0;
        } else
            announceAgain = 0;
    }
    Set();
}

cMenuAnnounceDetails::~cMenuAnnounceDetails()
{
    cMenuAnnounceList::showsDetails = false;
}

void cMenuAnnounceDetails::Set()
{
    int current = Current();
    Clear();

    Add(new cMenuEditBoolItem(tr("announce again"), &announceAgain, trVDR("no"), trVDR("yes")));
    if (announceAgain) {
        Add(new cMenuEditBoolItem(IndentMenuItem(tr("with next update")), &announceWithNextUpdate, trVDR("no"), trVDR("yes")));
        if (!announceWithNextUpdate)
            Add(new cMenuEditDateItem(IndentMenuItem(IndentMenuItem(tr("again from"))), &announceAgainDay, NULL));
    } else
        announceAgainDay = 0;

    if (search) {
        cOsdItem* pInfoItem = new cOsdItem("");
        pInfoItem->SetSelectable(false);
        Add(pInfoItem);

        cString info = cString::sprintf("%s: %s", tr("Search timer"), search->search);
        pInfoItem = new cOsdItem(info);
        pInfoItem->SetSelectable(false);
        Add(pInfoItem);
    }

    SetCurrent(Get(current));
    Display();
}

eOSState cMenuAnnounceDetails::ProcessKey(eKeys Key)
{
    int iTemp_announceAgain = announceAgain;
    int iTemp_announceWithNextUpdate = announceWithNextUpdate;

    eOSState state = cOsdMenu::ProcessKey(Key);

    if (iTemp_announceAgain != announceAgain ||
        iTemp_announceWithNextUpdate != announceWithNextUpdate) {
        Set();
        Display();
    }

    if (state == osUnknown) {
        switch (Key) {
        case kRed:
        case kGreen:
        case kBlue:
        case kYellow:
        case kFastRew:
        case kFastFwd:
        case kRecord:
        case k0...k9:
            return osContinue;
        case kOk: {
            cNoAnnounce* noAnnounce = NoAnnounces.InList(event);
            if (!announceAgain || !announceWithNextUpdate) {
                if (!noAnnounce) {
                    noAnnounce = new cNoAnnounce(event, announceAgainDay);
                    NoAnnounces.Add(noAnnounce);
                } else
                    NoAnnounces.UpdateNextAnnounce(event, announceAgainDay);
                NoAnnounces.ClearOutdated();
            }
            if (announceAgain && announceWithNextUpdate && noAnnounce)
                NoAnnounces.Del(noAnnounce);
            NoAnnounces.Save();
        }
        return osBack;
        default:
            break;
        }
    }

    return state;
}