]> git.vomp.tv Git - vompclient.git/blob - vtimeredit.cc
Compile fix for MVP re: location change of hmsf
[vompclient.git] / vtimeredit.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #include "vtimeredit.h"
22
23 #include "remote.h"
24 #include "wsymbol.h"
25 #include "boxstack.h"
26 #include "vdr.h"
27 #include "colour.h"
28 #include "video.h"
29 #include "i18n.h"
30 #include "timers.h"
31 #include "vquestion.h"
32 #include "command.h"
33 #include "staticartwork.h"
34
35 VTimerEdit::VTimerEdit(RecTimer* trt)
36 {
37   recTimer = trt;
38
39   setSize(570, 420);
40   createBuffer();
41   if (Video::getInstance()->getFormat() == Video::PAL)
42   {
43     setPosition(80, 70);
44   }
45   else
46   {
47     setPosition(70, 35);
48   }
49   selectedButton = 0;
50   buttonBack.setPosition(30,350);
51   buttonDelete.setPosition(400,350);
52   buttonBack.setText(tr("Back"));
53   buttonBack.setActive(1);
54   buttonDelete.setText(tr("Delete"));
55   add(&buttonBack);
56   add(&buttonDelete);
57
58   setTitleBarOn(1);
59   setTitleText(tr("Edit Timer"));
60   setTitleBarColour(DrawStyle::TITLEBARBACKGROUND);
61   TVMediaInfo *info= new TVMediaInfo();
62   info->setStaticArtwork(sa_timers);
63   setTitleBarIcon(info);
64 }
65
66 VTimerEdit::~VTimerEdit()
67 {
68 }
69
70 void VTimerEdit::setParent(VTimerList* tvTimerList)
71 {
72   vTimerList = tvTimerList;
73 }
74
75 void VTimerEdit::draw()
76 {
77   TBBoxx::draw();
78
79   int xpos = 20;
80   int ypos = 50;
81   int fontheight=getFontHeight();
82   drawText(tr("Active"), xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
83   drawText(tr("Channel"), xpos, ypos, DrawStyle::LIGHTTEXT);        ypos += fontheight;
84   drawText(tr("Name"), xpos, ypos, DrawStyle::LIGHTTEXT);           ypos += fontheight;
85   drawText(tr("Directory"), xpos, ypos, DrawStyle::LIGHTTEXT);      ypos += fontheight;
86                                                              ypos += fontheight;
87   drawText(tr("Start"), xpos, ypos, DrawStyle::LIGHTTEXT);          ypos += fontheight;
88   drawText(tr("Stop"), xpos, ypos, DrawStyle::LIGHTTEXT);           ypos += fontheight;
89   drawText(tr("Priority"), xpos, ypos, DrawStyle::LIGHTTEXT);       ypos += fontheight;
90   drawText(tr("Lifetime"), xpos, ypos, DrawStyle::LIGHTTEXT);       ypos += fontheight;
91                                                              ypos += fontheight;
92   drawText(tr("Current"), xpos, ypos, DrawStyle::LIGHTTEXT);        ypos += fontheight;
93   drawText(tr("Recording"), xpos, ypos, DrawStyle::LIGHTTEXT);      ypos += fontheight;
94
95
96   // Temp
97   char buffer[1000];
98   struct tm tms;
99   xpos = 150;
100   ypos = 50;
101
102   // Active
103   if (recTimer->active) strcpy(buffer, tr("Yes"));
104   else                  strcpy(buffer, tr("No"));
105   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
106
107   // Channel
108   SNPRINTF(buffer, 999, "%lu", recTimer->channelNumber);
109   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
110
111   // Name
112   SNPRINTF(buffer, 999, "%s", recTimer->getName());
113   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
114
115   // Directory
116   if (recTimer->getDirectory()) SNPRINTF(buffer, 999, "%s", recTimer->getDirectory());
117   else strcpy(buffer, "");
118   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
119                                                            ypos += fontheight;
120
121   // Start
122   time_t rectime = recTimer->startTime;
123   LOCALTIME_R((time_t*)&rectime, &tms);
124   strftime(buffer, 999, "%d/%m %H:%M", &tms);
125   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
126
127   // Stop
128   rectime = recTimer->stopTime;
129   LOCALTIME_R((time_t*)&rectime, &tms);
130   strftime(buffer, 999, "%d/%m %H:%M", &tms);
131   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
132
133   // Priority
134   SNPRINTF(buffer, 999, "%lu", recTimer->priority);
135   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
136
137   // Lifetime
138   SNPRINTF(buffer, 999, "%lu", recTimer->lifeTime);
139   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
140                                                            ypos += fontheight;
141
142   // Current
143   if (recTimer->pending) strcpy(buffer, tr("Yes"));
144   else                   strcpy(buffer, tr("No"));
145   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
146
147   // Recording now
148   if (recTimer->recording) strcpy(buffer, "Yes");
149   else                     strcpy(buffer, "No");
150   drawText(buffer, xpos, ypos, DrawStyle::LIGHTTEXT);         ypos += fontheight;
151 }
152
153 void VTimerEdit::swap()
154 {
155   if (selectedButton == 0)
156   {
157     buttonBack.setActive(0);
158     buttonDelete.setActive(1);
159     selectedButton = 1;
160   }
161   else
162   {
163     buttonDelete.setActive(0);
164     buttonBack.setActive(1);
165     selectedButton = 0;
166   }
167 }
168
169 int VTimerEdit::handleCommand(int command)
170 {
171   switch(command)
172   {
173     /*
174     case Remote::DF_UP:
175     case Remote::UP:
176     {
177
178       ViewMan::getInstance()->updateView(this);
179       return 2;
180     }
181     case Remote::DF_DOWN:
182     case Remote::DOWN:
183     {
184
185       ViewMan::getInstance()->updateView(this);
186       return 2;
187     }
188     */
189     case Remote::LEFT:
190     case Remote::DF_RIGHT:
191     {
192       swap();
193       buttonBack.draw();
194       buttonDelete.draw();
195       BoxStack::getInstance()->update(this);
196       return 2;
197     }
198     case Remote::RIGHT:
199     case Remote::DF_LEFT:
200     {
201       swap();
202       buttonBack.draw();
203       buttonDelete.draw();
204       BoxStack::getInstance()->update(this);
205       return 2;
206     }
207     case Remote::OK:
208     {
209       // Back
210       if (selectedButton == 0) return 4;
211       // Delete
212       VQuestion* v = new VQuestion(this);
213       v->setSize(260, 180);
214       v->createBuffer();
215       v->setTitleBarColour(DrawStyle::DANGER);
216       v->setTitleBarOn(1);
217       v->setBorderOn(1);
218       v->setTitleText(tr("Delete timer"));
219       v->setMainText(tr("Are you sure you want to delete this timer?"));
220       v->setDefault(VQuestion::NO);
221       if (Video::getInstance()->getFormat() == Video::PAL)
222         v->setPosition(230, 160);
223       else
224         v->setPosition(220, 140);
225       v->draw();
226       BoxStack::getInstance()->add(v);
227       BoxStack::getInstance()->update(v);
228       return 2;
229     }
230     case Remote::BACK:
231     {
232       return 4;
233     }
234   }
235   // stop command getting to any more views
236   return 1;
237 }
238
239 void VTimerEdit::processMessage(Message* m)
240 {
241   if (m->message == Message::MOUSE_MOVE)
242   {
243       int x=(m->parameter.num>>16)-getScreenX();
244       int y=(m->parameter.num&0xFFFF)-getScreenY();
245       if (buttonBack.mouseMove(x,y)) {
246           selectedButton=0;
247           buttonDelete.setActive(false);
248           buttonBack.draw();
249           buttonDelete.draw();
250           BoxStack::getInstance()->update(this);
251       } else if  (buttonDelete.mouseMove(x,y)) {
252           selectedButton=1;
253           buttonBack.setActive(false);
254           buttonBack.draw();
255           buttonDelete.draw();
256           BoxStack::getInstance()->update(this);
257       }
258
259   } else if (m->message == Message::MOUSE_LBDOWN)
260   {
261     BoxStack::getInstance()->handleCommand(Remote::OK); //simulate OK press
262   }
263   else if (m->message == Message::QUESTION_YES)
264   {
265   if (selectedButton == 1)
266     {
267       Message* m2 = new Message(); // Delete self
268       m2->from = this;
269       m2->to = BoxStack::getInstance();
270       m2->message = Message::CLOSE_ME;
271       Command::getInstance()->postMessageNoLock(m2);
272
273       m2 = new Message(); // OK. Want this to delete before this message does its job
274       m2->from = this;
275       m2->to = vTimerList;
276       m2->message = Message::DELETE_SELECTED_TIMER;
277       Command::getInstance()->postMessageNoLock(m2);
278     }
279   }
280 }
281