renatofilho@20
|
1 |
#include <gtk/gtk.h>
|
renatofilho@20
|
2 |
#include <glib.h>
|
renatofilho@20
|
3 |
#include <glib/gprintf.h>
|
renatofilho@20
|
4 |
#include <sys/types.h>
|
renatofilho@20
|
5 |
#include <sys/stat.h>
|
renatofilho@20
|
6 |
#include <unistd.h>
|
renatofilho@20
|
7 |
#include <string.h>
|
renatofilho@20
|
8 |
#include <stdio.h>
|
renatofilho@20
|
9 |
|
renatofilho@20
|
10 |
#include "mmyth_ui.h"
|
renatofilho@20
|
11 |
#include "mmyth_uicommon.h"
|
renatofilho@20
|
12 |
#include "mmyth_recordui.h"
|
renatofilho@20
|
13 |
#include "mmyth_schedulerui.h"
|
renatofilho@20
|
14 |
|
renatofilho@754
|
15 |
/*
|
renatofilho@754
|
16 |
* GMyth library includes
|
renatofilho@754
|
17 |
*/
|
rosfran@244
|
18 |
#include <gmyth/gmyth_scheduler.h>
|
rosfran@244
|
19 |
#include <gmyth/gmyth_common.h>
|
rosfran@244
|
20 |
#include <gmyth/gmyth_epg.h>
|
renatofilho@20
|
21 |
|
renatofilho@754
|
22 |
static void run_calendar_dialog(GtkButton * button, gpointer data);
|
renatofilho@20
|
23 |
|
renatofilho@754
|
24 |
static void add_channel_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
25 |
GtkWidget * vbox);
|
renatofilho@754
|
26 |
static void add_time_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
27 |
GtkWidget * vbox);
|
renatofilho@754
|
28 |
static void add_date_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
29 |
GtkWidget * vbox);
|
renatofilho@754
|
30 |
static void add_duration_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
31 |
GtkWidget * vbox);
|
renatofilho@754
|
32 |
static void add_frequency_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
33 |
GtkWidget * vbox);
|
renatofilho@754
|
34 |
static void add_title_field(MMythSchedulerUI * scheduler_ui,
|
renatofilho@754
|
35 |
GtkWidget * vbox);
|
renatofilho@20
|
36 |
|
renatofilho@754
|
37 |
MMythSchedulerUI *
|
renatofilho@754
|
38 |
mmyth_schedulerui_new(GMythBackendInfo * backend_info)
|
renatofilho@20
|
39 |
{
|
renatofilho@754
|
40 |
GtkWidget *scrolledwindow;
|
renatofilho@754
|
41 |
GtkWidget *viewport;
|
renatofilho@754
|
42 |
GtkWidget *head_hbox;
|
renatofilho@754
|
43 |
GtkWidget *fields_vbox;
|
renatofilho@754
|
44 |
GtkWidget *hseparator;
|
renatofilho@754
|
45 |
GtkWidget *label;
|
renatofilho@20
|
46 |
|
renatofilho@754
|
47 |
MMythSchedulerUI *scheduler_ui = g_new0(MMythSchedulerUI, 1);
|
rosfran@244
|
48 |
|
renatofilho@754
|
49 |
scheduler_ui->backend_info = backend_info;
|
renatofilho@20
|
50 |
|
renatofilho@754
|
51 |
scrolledwindow = gtk_scrolled_window_new(NULL, NULL);
|
renatofilho@754
|
52 |
scheduler_ui->main_widget = scrolledwindow;
|
renatofilho@754
|
53 |
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwindow),
|
renatofilho@754
|
54 |
GTK_POLICY_AUTOMATIC,
|
renatofilho@754
|
55 |
GTK_POLICY_AUTOMATIC);
|
renatofilho@20
|
56 |
|
renatofilho@754
|
57 |
// Is this needed?
|
renatofilho@754
|
58 |
viewport = gtk_viewport_new(NULL, NULL);
|
renatofilho@754
|
59 |
gtk_container_add(GTK_CONTAINER(scrolledwindow), viewport);
|
renatofilho@20
|
60 |
|
renatofilho@754
|
61 |
// Is this needed?
|
renatofilho@754
|
62 |
head_hbox = gtk_hbox_new(FALSE, 0);
|
renatofilho@754
|
63 |
gtk_container_add(GTK_CONTAINER(viewport), head_hbox);
|
renatofilho@20
|
64 |
|
renatofilho@754
|
65 |
fields_vbox = gtk_vbox_new(FALSE, 0);
|
renatofilho@754
|
66 |
gtk_box_pack_start(GTK_BOX(head_hbox), fields_vbox, TRUE, TRUE, 0);
|
renatofilho@754
|
67 |
gtk_container_set_border_width(GTK_CONTAINER(fields_vbox), 10);
|
renatofilho@20
|
68 |
|
renatofilho@754
|
69 |
label = gtk_label_new_with_mnemonic(("Manual Schedule Recording"));
|
renatofilho@754
|
70 |
gtk_box_pack_start(GTK_BOX(fields_vbox), label, FALSE, FALSE, 0);
|
renatofilho@754
|
71 |
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
|
renatofilho@20
|
72 |
|
renatofilho@754
|
73 |
hseparator = gtk_hseparator_new();
|
renatofilho@754
|
74 |
gtk_box_pack_start(GTK_BOX(fields_vbox), hseparator, FALSE, TRUE, 0);
|
renatofilho@754
|
75 |
|
renatofilho@754
|
76 |
add_channel_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
77 |
add_time_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
78 |
add_date_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
79 |
add_duration_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
80 |
add_frequency_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
81 |
add_title_field(scheduler_ui, fields_vbox);
|
renatofilho@754
|
82 |
|
renatofilho@754
|
83 |
return scheduler_ui;
|
renatofilho@20
|
84 |
}
|
renatofilho@20
|
85 |
|
renatofilho@20
|
86 |
static void
|
renatofilho@754
|
87 |
set_date_from_calendar(GtkCalendar * calendar, gpointer data)
|
renatofilho@20
|
88 |
{
|
renatofilho@754
|
89 |
char sched_date[24];
|
renatofilho@20
|
90 |
|
renatofilho@754
|
91 |
MMythSchedulerUI *scheduler_ui = (MMythSchedulerUI *) data;
|
renatofilho@20
|
92 |
|
renatofilho@754
|
93 |
// FIXME: Change this, save another value instead of month_temp,
|
renatofilho@754
|
94 |
// day_temp, ...
|
renatofilho@754
|
95 |
gtk_calendar_get_date(GTK_CALENDAR(calendar),
|
renatofilho@754
|
96 |
&(scheduler_ui->year_temp),
|
renatofilho@754
|
97 |
&(scheduler_ui->month_temp),
|
renatofilho@754
|
98 |
&(scheduler_ui->day_temp));
|
renatofilho@20
|
99 |
|
renatofilho@754
|
100 |
sched_date[23] = '\0';
|
renatofilho@754
|
101 |
g_sprintf(sched_date, "%04d %02d %02d (yyyy mm dd)",
|
renatofilho@754
|
102 |
scheduler_ui->year_temp, scheduler_ui->month_temp + 1,
|
renatofilho@754
|
103 |
scheduler_ui->day_temp);
|
renatofilho@20
|
104 |
|
renatofilho@754
|
105 |
gtk_button_set_label(GTK_BUTTON(scheduler_ui->date_button),
|
renatofilho@754
|
106 |
sched_date);
|
renatofilho@20
|
107 |
|
renatofilho@754
|
108 |
gtk_widget_destroy(scheduler_ui->calendar_dialog);
|
renatofilho@754
|
109 |
scheduler_ui->calendar_dialog = NULL;
|
renatofilho@754
|
110 |
scheduler_ui->calendar = NULL;
|
renatofilho@20
|
111 |
}
|
renatofilho@20
|
112 |
|
renatofilho@754
|
113 |
// calendar
|
renatofilho@20
|
114 |
static void
|
renatofilho@754
|
115 |
run_calendar_dialog(GtkButton * button, gpointer data)
|
renatofilho@20
|
116 |
{
|
renatofilho@20
|
117 |
|
renatofilho@754
|
118 |
GtkWidget *dialog_vbox;
|
renatofilho@754
|
119 |
MMythSchedulerUI *scheduler_ui = (MMythSchedulerUI *) data;
|
renatofilho@20
|
120 |
|
renatofilho@754
|
121 |
// calendar_dialog and calendar are been released at
|
renatofilho@754
|
122 |
// set_date_from_calendar ()
|
renatofilho@754
|
123 |
scheduler_ui->calendar_dialog = gtk_dialog_new();
|
renatofilho@754
|
124 |
gtk_container_set_border_width(GTK_CONTAINER
|
renatofilho@754
|
125 |
(scheduler_ui->calendar_dialog), 1);
|
renatofilho@754
|
126 |
gtk_window_set_title(GTK_WINDOW(scheduler_ui->calendar_dialog),
|
renatofilho@754
|
127 |
"Select starting date");
|
renatofilho@754
|
128 |
gtk_window_set_position(GTK_WINDOW(scheduler_ui->calendar_dialog),
|
renatofilho@754
|
129 |
GTK_WIN_POS_CENTER);
|
renatofilho@754
|
130 |
gtk_window_set_decorated(GTK_WINDOW(scheduler_ui->calendar_dialog),
|
renatofilho@754
|
131 |
FALSE);
|
renatofilho@20
|
132 |
|
renatofilho@754
|
133 |
dialog_vbox = GTK_DIALOG(scheduler_ui->calendar_dialog)->vbox;
|
renatofilho@20
|
134 |
|
renatofilho@754
|
135 |
scheduler_ui->calendar = gtk_calendar_new();
|
renatofilho@20
|
136 |
|
renatofilho@754
|
137 |
gtk_box_pack_start(GTK_BOX(dialog_vbox), scheduler_ui->calendar, TRUE,
|
renatofilho@754
|
138 |
TRUE, 0);
|
renatofilho@754
|
139 |
gtk_calendar_display_options(GTK_CALENDAR(scheduler_ui->calendar),
|
renatofilho@754
|
140 |
GTK_CALENDAR_SHOW_HEADING |
|
renatofilho@754
|
141 |
GTK_CALENDAR_SHOW_DAY_NAMES);
|
renatofilho@20
|
142 |
|
renatofilho@754
|
143 |
gtk_widget_show_all(scheduler_ui->calendar_dialog);
|
renatofilho@20
|
144 |
|
renatofilho@754
|
145 |
g_signal_connect(G_OBJECT(scheduler_ui->calendar),
|
renatofilho@754
|
146 |
"day-selected-double-click",
|
renatofilho@754
|
147 |
G_CALLBACK(set_date_from_calendar), data);
|
renatofilho@20
|
148 |
}
|
renatofilho@20
|
149 |
|
renatofilho@20
|
150 |
|
renatofilho@20
|
151 |
gboolean
|
renatofilho@754
|
152 |
mmyth_schedulerui_save(MMythSchedulerUI * scheduler_ui)
|
renatofilho@20
|
153 |
{
|
renatofilho@754
|
154 |
GMythScheduler *scheduler;
|
renatofilho@754
|
155 |
ScheduleInfo *schedule_info;
|
renatofilho@754
|
156 |
GMythChannelInfo *channel_info;
|
renatofilho@20
|
157 |
|
renatofilho@754
|
158 |
GList *clist;
|
renatofilho@754
|
159 |
gint index,
|
renatofilho@754
|
160 |
duration;
|
renatofilho@754
|
161 |
gint frequency;
|
renatofilho@754
|
162 |
struct tm start_tm;
|
rosfran@244
|
163 |
|
renatofilho@754
|
164 |
schedule_info = g_new0(ScheduleInfo, 1);
|
renatofilho@754
|
165 |
if (schedule_info == NULL) {
|
renatofilho@754
|
166 |
g_warning("Error allocating memory");
|
renatofilho@754
|
167 |
return FALSE;
|
renatofilho@754
|
168 |
}
|
renatofilho@20
|
169 |
|
renatofilho@754
|
170 |
clist = scheduler_ui->channel_list;
|
rosfran@244
|
171 |
|
renatofilho@754
|
172 |
index =
|
renatofilho@754
|
173 |
gtk_combo_box_get_active(GTK_COMBO_BOX
|
renatofilho@754
|
174 |
(scheduler_ui->channel_combobox));
|
rosfran@244
|
175 |
|
renatofilho@754
|
176 |
if (clist != NULL)
|
renatofilho@754
|
177 |
clist = g_list_nth(clist, index);
|
rosfran@244
|
178 |
|
renatofilho@754
|
179 |
if (clist) {
|
renatofilho@754
|
180 |
g_debug("[%s] New schedule: %d", __FUNCTION__, index);
|
renatofilho@754
|
181 |
} else {
|
renatofilho@754
|
182 |
g_warning("[%s] Error when adding new schedule", __FUNCTION__);
|
renatofilho@754
|
183 |
return FALSE;
|
renatofilho@754
|
184 |
}
|
rosfran@244
|
185 |
|
renatofilho@754
|
186 |
channel_info = clist->data;
|
rosfran@244
|
187 |
|
renatofilho@754
|
188 |
/*
|
renatofilho@754
|
189 |
* initialize schedule_info
|
renatofilho@754
|
190 |
*/
|
renatofilho@754
|
191 |
schedule_info->channel_id = channel_info->channel_ID;
|
rosfran@244
|
192 |
|
renatofilho@754
|
193 |
start_tm.tm_hour =
|
renatofilho@754
|
194 |
(int)
|
renatofilho@754
|
195 |
gtk_spin_button_get_value(GTK_SPIN_BUTTON
|
renatofilho@754
|
196 |
(scheduler_ui->hour_spinbutton));
|
renatofilho@754
|
197 |
start_tm.tm_min =
|
renatofilho@754
|
198 |
(int)
|
renatofilho@754
|
199 |
gtk_spin_button_get_value(GTK_SPIN_BUTTON
|
renatofilho@754
|
200 |
(scheduler_ui->min_spinbutton));
|
renatofilho@754
|
201 |
start_tm.tm_sec = 0;
|
renatofilho@20
|
202 |
|
renatofilho@754
|
203 |
start_tm.tm_mday = (gint) scheduler_ui->day_temp;
|
renatofilho@754
|
204 |
start_tm.tm_mon = (gint) scheduler_ui->month_temp;
|
renatofilho@754
|
205 |
start_tm.tm_year = (gint) scheduler_ui->year_temp - 1900; // years
|
renatofilho@754
|
206 |
// since
|
renatofilho@754
|
207 |
// 1900
|
renatofilho@754
|
208 |
GTimeVal *time_val_local = g_new0(GTimeVal, 1);
|
renatofilho@754
|
209 |
time_val_local->tv_sec = timelocal(&start_tm);
|
renatofilho@20
|
210 |
|
renatofilho@754
|
211 |
schedule_info->start_time = time_val_local;
|
renatofilho@754
|
212 |
if (NULL == schedule_info->start_time) {
|
renatofilho@754
|
213 |
g_warning("timelocal error!\n");
|
renatofilho@754
|
214 |
return FALSE;
|
renatofilho@754
|
215 |
}
|
renatofilho@20
|
216 |
|
renatofilho@754
|
217 |
duration =
|
renatofilho@754
|
218 |
(gint)
|
renatofilho@754
|
219 |
gtk_spin_button_get_value(GTK_SPIN_BUTTON
|
renatofilho@754
|
220 |
(scheduler_ui->duration_spinbutton));
|
renatofilho@754
|
221 |
schedule_info->end_time = schedule_info->start_time + (duration * 60);
|
renatofilho@20
|
222 |
|
renatofilho@754
|
223 |
/*
|
renatofilho@754
|
224 |
* TODO: frequency is not implemented yet
|
renatofilho@754
|
225 |
*/
|
renatofilho@754
|
226 |
frequency =
|
renatofilho@754
|
227 |
gtk_combo_box_get_active(GTK_COMBO_BOX
|
renatofilho@754
|
228 |
(scheduler_ui->freq_combobox));
|
renatofilho@20
|
229 |
|
renatofilho@754
|
230 |
schedule_info->title = g_string_new("");
|
renatofilho@754
|
231 |
g_string_printf(schedule_info->title, "%s",
|
renatofilho@754
|
232 |
gtk_entry_get_text(GTK_ENTRY
|
renatofilho@754
|
233 |
(scheduler_ui->title_entry)));
|
renatofilho@20
|
234 |
|
renatofilho@754
|
235 |
/*
|
renatofilho@754
|
236 |
* FIXME: Architecture change to reuse the scheduler created in the
|
renatofilho@754
|
237 |
* recordui!
|
renatofilho@754
|
238 |
*/
|
renatofilho@754
|
239 |
scheduler = gmyth_scheduler_new();
|
renatofilho@20
|
240 |
|
renatofilho@754
|
241 |
gmyth_scheduler_connect(scheduler, scheduler->backend_info);
|
renatofilho@20
|
242 |
|
renatofilho@754
|
243 |
/*
|
renatofilho@754
|
244 |
* FIXME: set record_id = -1 to add a new schedule
|
renatofilho@754
|
245 |
*/
|
renatofilho@754
|
246 |
schedule_info->record_id = -1;
|
renatofilho@754
|
247 |
gmyth_scheduler_add_schedule(scheduler, schedule_info);
|
rosfran@244
|
248 |
|
renatofilho@754
|
249 |
gmyth_scheduler_disconnect(scheduler);
|
rosfran@244
|
250 |
|
renatofilho@754
|
251 |
/*
|
renatofilho@754
|
252 |
* free allocated memory
|
renatofilho@754
|
253 |
*/
|
renatofilho@754
|
254 |
g_object_unref(scheduler);
|
renatofilho@754
|
255 |
g_free(schedule_info);
|
rosfran@244
|
256 |
|
renatofilho@754
|
257 |
return TRUE;
|
renatofilho@754
|
258 |
}
|
renatofilho@20
|
259 |
|
renatofilho@754
|
260 |
static GtkWidget *
|
renatofilho@754
|
261 |
add_line(GtkWidget * vbox, const gchar * str)
|
renatofilho@20
|
262 |
{
|
renatofilho@754
|
263 |
GtkWidget *label;
|
renatofilho@754
|
264 |
GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
|
renatofilho@20
|
265 |
|
renatofilho@754
|
266 |
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
renatofilho@754
|
267 |
gtk_container_set_border_width(GTK_CONTAINER(hbox), 3);
|
renatofilho@20
|
268 |
|
renatofilho@754
|
269 |
label = gtk_label_new(str);
|
renatofilho@754
|
270 |
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
|
renatofilho@754
|
271 |
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
|
renatofilho@754
|
272 |
|
renatofilho@754
|
273 |
return hbox;
|
renatofilho@20
|
274 |
}
|
renatofilho@20
|
275 |
|
renatofilho@20
|
276 |
static void
|
renatofilho@754
|
277 |
add_channel_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@20
|
278 |
{
|
renatofilho@754
|
279 |
GtkWidget *combobox;
|
renatofilho@20
|
280 |
|
renatofilho@754
|
281 |
GtkWidget *hbox = add_line(vbox, "Channel: ");
|
renatofilho@20
|
282 |
|
renatofilho@754
|
283 |
combobox = gtk_combo_box_new_text();
|
renatofilho@20
|
284 |
|
renatofilho@754
|
285 |
scheduler_ui->channel_combobox = combobox;
|
renatofilho@754
|
286 |
gtk_box_pack_start(GTK_BOX(hbox), combobox, FALSE, FALSE, 0);
|
renatofilho@754
|
287 |
|
renatofilho@754
|
288 |
GMythEPG *mmyth_epg = gmyth_epg_new();
|
renatofilho@754
|
289 |
if (!gmyth_epg_connect(mmyth_epg, scheduler_ui->backend_info)) {
|
renatofilho@754
|
290 |
// FIXME: Without this list the scheduler UI should not be shown!
|
renatofilho@754
|
291 |
g_warning("[%s] Error when getting list of channels",
|
renatofilho@754
|
292 |
__FUNCTION__);
|
renatofilho@754
|
293 |
}
|
renatofilho@754
|
294 |
|
renatofilho@754
|
295 |
if (gmyth_epg_get_channel_list
|
renatofilho@754
|
296 |
(mmyth_epg, &(scheduler_ui->channel_list)) < 0) {
|
renatofilho@754
|
297 |
g_debug("[%s] Error while trying to retrieve channel list",
|
renatofilho@754
|
298 |
__FUNCTION__);
|
renatofilho@754
|
299 |
} else {
|
renatofilho@754
|
300 |
GList *clist = scheduler_ui->channel_list;
|
renatofilho@754
|
301 |
GMythChannelInfo *channel_info;
|
renatofilho@754
|
302 |
|
renatofilho@754
|
303 |
while (clist != NULL) {
|
renatofilho@754
|
304 |
channel_info = clist->data;
|
renatofilho@754
|
305 |
clist = clist->next;
|
renatofilho@754
|
306 |
gtk_combo_box_append_text(GTK_COMBO_BOX
|
renatofilho@754
|
307 |
(scheduler_ui->channel_combobox),
|
renatofilho@754
|
308 |
(channel_info->channel_name->str));
|
renatofilho@754
|
309 |
}
|
renatofilho@754
|
310 |
|
renatofilho@754
|
311 |
gtk_combo_box_set_active(GTK_COMBO_BOX
|
renatofilho@754
|
312 |
(scheduler_ui->channel_combobox), 0);
|
renatofilho@754
|
313 |
}
|
renatofilho@20
|
314 |
}
|
renatofilho@20
|
315 |
|
renatofilho@20
|
316 |
static void
|
renatofilho@754
|
317 |
add_time_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@20
|
318 |
{
|
renatofilho@754
|
319 |
GtkWidget *label;
|
renatofilho@754
|
320 |
GtkObject *spinbutton_adj;
|
renatofilho@754
|
321 |
GtkWidget *hbox = add_line(vbox, "Time: ");
|
renatofilho@20
|
322 |
|
renatofilho@754
|
323 |
time_t real_time;
|
renatofilho@754
|
324 |
struct tm sched_time;
|
renatofilho@20
|
325 |
|
renatofilho@754
|
326 |
time(&real_time);
|
renatofilho@20
|
327 |
|
renatofilho@754
|
328 |
if (localtime_r((time_t *) & real_time, &sched_time) == NULL) {
|
renatofilho@754
|
329 |
g_warning("localtime_r error in mmyth_epg_grid_view!\n");
|
rosfran@244
|
330 |
return;
|
renatofilho@20
|
331 |
}
|
renatofilho@20
|
332 |
|
renatofilho@754
|
333 |
if (sched_time.tm_min > 30) {
|
renatofilho@754
|
334 |
sched_time.tm_hour = sched_time.tm_hour + 1;
|
renatofilho@754
|
335 |
sched_time.tm_min = 0;
|
renatofilho@754
|
336 |
} else if (sched_time.tm_min > 0) {
|
renatofilho@754
|
337 |
sched_time.tm_min = 30;
|
renatofilho@754
|
338 |
}
|
renatofilho@20
|
339 |
|
renatofilho@754
|
340 |
scheduler_ui->year_temp = (guint) sched_time.tm_year + 1900;
|
renatofilho@754
|
341 |
scheduler_ui->month_temp = (guint) sched_time.tm_mon;
|
renatofilho@754
|
342 |
scheduler_ui->day_temp = (guint) sched_time.tm_mday;
|
renatofilho@20
|
343 |
|
renatofilho@754
|
344 |
// hour entry
|
renatofilho@754
|
345 |
spinbutton_adj =
|
renatofilho@754
|
346 |
gtk_adjustment_new(sched_time.tm_hour, 00, 23, 1, 10, 10);
|
renatofilho@754
|
347 |
scheduler_ui->hour_spinbutton =
|
renatofilho@754
|
348 |
gtk_spin_button_new(GTK_ADJUSTMENT(spinbutton_adj), 1, 0);
|
renatofilho@754
|
349 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->hour_spinbutton, FALSE,
|
renatofilho@754
|
350 |
FALSE, 0);
|
renatofilho@20
|
351 |
|
renatofilho@754
|
352 |
label = gtk_label_new((" : "));
|
renatofilho@754
|
353 |
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
|
renatofilho@754
|
354 |
gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT);
|
renatofilho@754
|
355 |
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
|
renatofilho@20
|
356 |
|
renatofilho@754
|
357 |
// minute entry
|
renatofilho@754
|
358 |
spinbutton_adj =
|
renatofilho@754
|
359 |
gtk_adjustment_new(sched_time.tm_min, 0, 59, 1, 10, 10);
|
renatofilho@754
|
360 |
scheduler_ui->min_spinbutton =
|
renatofilho@754
|
361 |
gtk_spin_button_new(GTK_ADJUSTMENT(spinbutton_adj), 1, 0);
|
renatofilho@754
|
362 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->min_spinbutton, FALSE,
|
renatofilho@754
|
363 |
FALSE, 0);
|
renatofilho@20
|
364 |
|
renatofilho@754
|
365 |
label = gtk_label_new((" (hh:mm)"));
|
renatofilho@20
|
366 |
|
renatofilho@754
|
367 |
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
|
renatofilho@20
|
368 |
|
renatofilho@20
|
369 |
}
|
renatofilho@20
|
370 |
|
renatofilho@20
|
371 |
static void
|
renatofilho@754
|
372 |
add_date_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@20
|
373 |
{
|
renatofilho@754
|
374 |
char sched_date[24];
|
renatofilho@754
|
375 |
GtkWidget *hbox = add_line(vbox, "Date: ");
|
renatofilho@20
|
376 |
|
renatofilho@754
|
377 |
// sched_date = ctime(&real_time);
|
renatofilho@754
|
378 |
g_sprintf(sched_date, "%04d %02d %02d (yyyy mm dd)",
|
renatofilho@754
|
379 |
scheduler_ui->year_temp, scheduler_ui->month_temp + 1,
|
renatofilho@754
|
380 |
scheduler_ui->day_temp);
|
renatofilho@754
|
381 |
sched_date[23] = '\0';
|
renatofilho@20
|
382 |
|
renatofilho@754
|
383 |
scheduler_ui->date_button = gtk_button_new_with_label(sched_date);
|
renatofilho@754
|
384 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->date_button, FALSE,
|
renatofilho@754
|
385 |
FALSE, 0);
|
renatofilho@754
|
386 |
gtk_button_set_relief(GTK_BUTTON(scheduler_ui->date_button),
|
renatofilho@754
|
387 |
GTK_RELIEF_NONE);
|
renatofilho@754
|
388 |
|
renatofilho@754
|
389 |
g_signal_connect(G_OBJECT(scheduler_ui->date_button), "clicked",
|
renatofilho@754
|
390 |
G_CALLBACK(run_calendar_dialog), scheduler_ui);
|
renatofilho@20
|
391 |
|
renatofilho@20
|
392 |
}
|
renatofilho@20
|
393 |
|
renatofilho@20
|
394 |
static void
|
renatofilho@754
|
395 |
add_duration_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@20
|
396 |
{
|
renatofilho@754
|
397 |
GtkWidget *hbox = add_line(vbox, "Duration: ");
|
renatofilho@754
|
398 |
GtkWidget *label;
|
renatofilho@754
|
399 |
GtkObject *spinbutton_adj;
|
renatofilho@754
|
400 |
|
renatofilho@754
|
401 |
spinbutton_adj = gtk_adjustment_new(60, 5, 360, 5, 60, 60);
|
renatofilho@754
|
402 |
scheduler_ui->duration_spinbutton =
|
renatofilho@754
|
403 |
gtk_spin_button_new(GTK_ADJUSTMENT(spinbutton_adj), 1, 0);
|
renatofilho@754
|
404 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->duration_spinbutton,
|
renatofilho@754
|
405 |
FALSE, TRUE, 0);
|
renatofilho@754
|
406 |
gtk_spin_button_set_numeric(GTK_SPIN_BUTTON
|
renatofilho@754
|
407 |
(scheduler_ui->duration_spinbutton), TRUE);
|
renatofilho@754
|
408 |
|
renatofilho@754
|
409 |
label = gtk_label_new((" (minutes) "));
|
renatofilho@754
|
410 |
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
|
renatofilho@20
|
411 |
}
|
renatofilho@754
|
412 |
|
renatofilho@754
|
413 |
static void
|
renatofilho@754
|
414 |
add_frequency_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@754
|
415 |
{
|
renatofilho@754
|
416 |
|
renatofilho@754
|
417 |
GtkWidget *hbox = add_line(vbox, "Frequency: ");
|
renatofilho@754
|
418 |
|
renatofilho@754
|
419 |
scheduler_ui->freq_combobox = gtk_combo_box_new_text();
|
renatofilho@754
|
420 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->freq_combobox, FALSE,
|
renatofilho@754
|
421 |
FALSE, 0);
|
renatofilho@754
|
422 |
gtk_combo_box_append_text(GTK_COMBO_BOX(scheduler_ui->freq_combobox),
|
renatofilho@754
|
423 |
("Only this day "));
|
renatofilho@754
|
424 |
gtk_combo_box_append_text(GTK_COMBO_BOX(scheduler_ui->freq_combobox),
|
renatofilho@754
|
425 |
("Daily "));
|
renatofilho@754
|
426 |
gtk_combo_box_append_text(GTK_COMBO_BOX(scheduler_ui->freq_combobox),
|
renatofilho@754
|
427 |
("Weekly "));
|
renatofilho@754
|
428 |
gtk_combo_box_set_active(GTK_COMBO_BOX(scheduler_ui->freq_combobox),
|
renatofilho@754
|
429 |
0);
|
renatofilho@754
|
430 |
|
renatofilho@754
|
431 |
}
|
renatofilho@754
|
432 |
|
renatofilho@754
|
433 |
static void
|
renatofilho@754
|
434 |
add_title_field(MMythSchedulerUI * scheduler_ui, GtkWidget * vbox)
|
renatofilho@754
|
435 |
{
|
renatofilho@754
|
436 |
GtkWidget *hbox = add_line(vbox, "Title: ");
|
renatofilho@754
|
437 |
|
renatofilho@754
|
438 |
scheduler_ui->title_entry = gtk_entry_new();
|
renatofilho@754
|
439 |
gtk_box_pack_start(GTK_BOX(hbox), scheduler_ui->title_entry, FALSE,
|
renatofilho@754
|
440 |
FALSE, 0);
|
renatofilho@754
|
441 |
gtk_entry_set_text(GTK_ENTRY(scheduler_ui->title_entry), "(Optional)");
|
renatofilho@754
|
442 |
|
renatofilho@754
|
443 |
}
|