]> git.vomp.tv Git - vompclient.git/blob - vtimeredit.cc
20 CWFs, fix some snprintf calls
[vompclient.git] / vtimeredit.cc
1
2 /*
3     Copyright 2004-2005 Chris Tallon
4
5     This file is part of VOMP.
6
7     VOMP is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     VOMP is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
19 */
20
21 #include "vtimeredit.h"
22
23 #include "input.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 "messagequeue.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 Input::UP:
175     {
176
177       ViewMan::getInstance()->updateView(this);
178       return 2;
179     }
180     case Input::DOWN:
181     {
182
183       ViewMan::getInstance()->updateView(this);
184       return 2;
185     }
186     */
187     case Input::LEFT:
188     {
189       swap();
190       buttonBack.draw();
191       buttonDelete.draw();
192       BoxStack::getInstance()->update(this);
193       return 2;
194     }
195     case Input::RIGHT:
196     {
197       swap();
198       buttonBack.draw();
199       buttonDelete.draw();
200       BoxStack::getInstance()->update(this);
201       return 2;
202     }
203     case Input::OK:
204     {
205       // Back
206       if (selectedButton == 0) return 4;
207       // Delete
208       VQuestion* v = new VQuestion(this);
209       v->setSize(260, 180);
210       v->createBuffer();
211       v->setTitleBarColour(DrawStyle::DANGER);
212       v->setTitleBarOn(1);
213       v->setBorderOn(1);
214       v->setTitleText(tr("Delete timer"));
215       v->setMainText(tr("Are you sure you want to delete this timer?"));
216       v->setDefault(VQuestion::NO);
217       if (Video::getInstance()->getFormat() == Video::PAL)
218         v->setPosition(230, 160);
219       else
220         v->setPosition(220, 140);
221       v->draw();
222       BoxStack::getInstance()->add(v);
223       BoxStack::getInstance()->update(v);
224       return 2;
225     }
226     case Input::BACK:
227     {
228       return 4;
229     }
230   }
231   // stop command getting to any more views
232   return 1;
233 }
234
235 void VTimerEdit::processMessage(Message* m)
236 {
237   if (m->message == Message::MOUSE_MOVE)
238   {
239       int x=(m->parameter>>16)-getScreenX();
240       int y=(m->parameter&0xFFFF)-getScreenY();
241       if (buttonBack.mouseMove(x,y)) {
242           selectedButton=0;
243           buttonDelete.setActive(false);
244           buttonBack.draw();
245           buttonDelete.draw();
246           BoxStack::getInstance()->update(this);
247       } else if  (buttonDelete.mouseMove(x,y)) {
248           selectedButton=1;
249           buttonBack.setActive(false);
250           buttonBack.draw();
251           buttonDelete.draw();
252           BoxStack::getInstance()->update(this);
253       }
254
255   } else if (m->message == Message::MOUSE_LBDOWN)
256   {
257     BoxStack::getInstance()->handleCommand(Input::OK); //simulate OK press
258   }
259   else if (m->message == Message::QUESTION_YES)
260   {
261   if (selectedButton == 1)
262     {
263       Message* m2 = new Message(); // Delete self
264       m2->from = this;
265       m2->to = BoxStack::getInstance();
266       m2->message = Message::CLOSE_ME;
267       MessageQueue::getInstance()->postMessage(m2);
268
269       m2 = new Message(); // OK. Want this to delete before this message does its job
270       m2->from = this;
271       m2->to = vTimerList;
272       m2->message = Message::DELETE_SELECTED_TIMER;
273       MessageQueue::getInstance()->postMessage(m2);
274     }
275   }
276 }
277