rosfran@244
|
1 |
#include <gtk/gtk.h>
|
rosfran@244
|
2 |
#include <glib.h>
|
renatofilho@20
|
3 |
#include <sys/types.h>
|
renatofilho@20
|
4 |
#include <sys/stat.h>
|
renatofilho@20
|
5 |
#include <unistd.h>
|
renatofilho@20
|
6 |
#include <string.h>
|
renatofilho@20
|
7 |
#include <stdio.h>
|
renatofilho@20
|
8 |
#include <stdlib.h>
|
renatofilho@20
|
9 |
|
renatofilho@20
|
10 |
#include "mmyth_ui.h"
|
renatofilho@20
|
11 |
#include "mmyth_recordui.h"
|
renatofilho@20
|
12 |
|
renatofilho@754
|
13 |
/*
|
renatofilho@754
|
14 |
* GMyth library includes
|
renatofilho@754
|
15 |
*/
|
rosfran@244
|
16 |
#include <gmyth/gmyth_scheduler.h>
|
rosfran@244
|
17 |
#include <gmyth/gmyth_util.h>
|
renatofilho@20
|
18 |
|
renatofilho@20
|
19 |
enum {
|
renatofilho@754
|
20 |
START_DATE_COLUMN = 0,
|
renatofilho@754
|
21 |
TITLE_COLUMN,
|
renatofilho@754
|
22 |
CHAN_ID_COLUMN,
|
renatofilho@754
|
23 |
END_TIME_COLUMN,
|
renatofilho@754
|
24 |
RECORD_ID_COLUMN,
|
renatofilho@754
|
25 |
BASENAME_COLUMN,
|
renatofilho@754
|
26 |
N_COLUMNS
|
renatofilho@20
|
27 |
};
|
renatofilho@20
|
28 |
|
renatofilho@20
|
29 |
gboolean
|
renatofilho@754
|
30 |
mmyth_recordui_reload_all(MMythRecordUI * recordui)
|
renatofilho@20
|
31 |
{
|
renatofilho@754
|
32 |
gboolean res = FALSE;
|
renatofilho@20
|
33 |
|
renatofilho@754
|
34 |
res = mmyth_recordui_reload_schedule(recordui);
|
renatofilho@754
|
35 |
|
renatofilho@754
|
36 |
res = res & mmyth_recordui_reload_record(recordui);
|
renatofilho@754
|
37 |
|
renatofilho@754
|
38 |
|
renatofilho@754
|
39 |
if (!res)
|
renatofilho@754
|
40 |
g_warning
|
renatofilho@754
|
41 |
("[%s] Error while reloading schedule and recording content",
|
renatofilho@754
|
42 |
__FUNCTION__);
|
renatofilho@754
|
43 |
|
renatofilho@754
|
44 |
return res;
|
renatofilho@20
|
45 |
}
|
renatofilho@20
|
46 |
|
renatofilho@20
|
47 |
gboolean
|
renatofilho@754
|
48 |
mmyth_recordui_reload_schedule(MMythRecordUI * recordui)
|
renatofilho@20
|
49 |
{
|
renatofilho@754
|
50 |
gint new_row = 0;
|
renatofilho@754
|
51 |
ScheduleInfo *schedule_info;
|
renatofilho@754
|
52 |
GList *schedule_list;
|
renatofilho@754
|
53 |
GtkTreeIter iter;
|
renatofilho@754
|
54 |
gchar *start_date_time = NULL;
|
renatofilho@754
|
55 |
gchar *end_date_time = NULL;
|
renatofilho@754
|
56 |
GString *str_aux = g_string_new("");
|
renatofilho@754
|
57 |
gint res;
|
renatofilho@20
|
58 |
|
renatofilho@754
|
59 |
gtk_tree_store_clear(recordui->sch_tree_store);
|
renatofilho@20
|
60 |
|
renatofilho@754
|
61 |
res =
|
renatofilho@754
|
62 |
gmyth_scheduler_get_schedule_list(recordui->scheduler,
|
renatofilho@754
|
63 |
&(schedule_list));
|
renatofilho@754
|
64 |
if (res < 0) {
|
renatofilho@754
|
65 |
g_warning
|
renatofilho@754
|
66 |
("[%s] Retrieved NULL list of scheduled data from database",
|
renatofilho@754
|
67 |
__FUNCTION__);
|
renatofilho@754
|
68 |
return FALSE;
|
renatofilho@754
|
69 |
}
|
renatofilho@20
|
70 |
|
renatofilho@754
|
71 |
for (; schedule_list; schedule_list = schedule_list->next) {
|
renatofilho@754
|
72 |
schedule_info = (ScheduleInfo *) schedule_list->data;
|
renatofilho@20
|
73 |
|
renatofilho@754
|
74 |
gtk_tree_store_insert(recordui->sch_tree_store, &iter, NULL,
|
renatofilho@754
|
75 |
new_row++);
|
renatofilho@754
|
76 |
|
renatofilho@754
|
77 |
start_date_time =
|
renatofilho@754
|
78 |
gmyth_util_time_to_string_from_time_val(schedule_info->
|
renatofilho@754
|
79 |
start_time);
|
renatofilho@754
|
80 |
end_date_time =
|
renatofilho@754
|
81 |
gmyth_util_time_to_string_from_time_val(schedule_info->
|
renatofilho@754
|
82 |
end_time);
|
renatofilho@754
|
83 |
|
renatofilho@20
|
84 |
g_string_printf(str_aux, "%d", schedule_info->channel_id);
|
renatofilho@754
|
85 |
|
renatofilho@754
|
86 |
gtk_tree_store_set(recordui->sch_tree_store, &iter, START_DATE_COLUMN, start_date_time, TITLE_COLUMN, schedule_info->title->str, CHAN_ID_COLUMN, str_aux->str, END_TIME_COLUMN, end_date_time, // It
|
renatofilho@754
|
87 |
// doesn't
|
renatofilho@754
|
88 |
// appear
|
renatofilho@754
|
89 |
RECORD_ID_COLUMN, schedule_info->record_id, -1); // the
|
renatofilho@754
|
90 |
// last
|
renatofilho@754
|
91 |
// line
|
renatofilho@754
|
92 |
// is
|
renatofilho@754
|
93 |
// a
|
renatofilho@754
|
94 |
// hidden
|
renatofilho@754
|
95 |
// item
|
renatofilho@754
|
96 |
// to
|
renatofilho@754
|
97 |
// be
|
renatofilho@754
|
98 |
// used
|
renatofilho@754
|
99 |
// in
|
renatofilho@754
|
100 |
// searching
|
renatofilho@754
|
101 |
// tasks
|
renatofilho@754
|
102 |
}
|
renatofilho@754
|
103 |
|
renatofilho@754
|
104 |
g_debug("[%s] %d lines added to schedule list UI", __FUNCTION__,
|
renatofilho@754
|
105 |
new_row);
|
renatofilho@754
|
106 |
|
renatofilho@754
|
107 |
/*
|
renatofilho@754
|
108 |
* free allocated memory
|
renatofilho@754
|
109 |
*/
|
renatofilho@754
|
110 |
if (!start_date_time)
|
rosfran@244
|
111 |
g_free(start_date_time);
|
renatofilho@754
|
112 |
if (!end_date_time)
|
rosfran@244
|
113 |
g_free(end_date_time);
|
renatofilho@754
|
114 |
g_string_free(str_aux, FALSE);
|
renatofilho@754
|
115 |
|
renatofilho@754
|
116 |
return TRUE;
|
renatofilho@20
|
117 |
}
|
renatofilho@20
|
118 |
|
renatofilho@20
|
119 |
gboolean
|
renatofilho@754
|
120 |
mmyth_recordui_reload_record(MMythRecordUI * recordui)
|
renatofilho@20
|
121 |
{
|
renatofilho@754
|
122 |
gint new_row = 0;
|
renatofilho@754
|
123 |
RecordedInfo *recorded_info;
|
renatofilho@754
|
124 |
GList *record_list = NULL;
|
renatofilho@754
|
125 |
GtkTreeIter iter;
|
renatofilho@754
|
126 |
gchar *start_date_time = NULL;
|
renatofilho@754
|
127 |
gchar *end_date_time = NULL;
|
renatofilho@754
|
128 |
GString *str_aux = g_string_new("");
|
renatofilho@754
|
129 |
gint res;
|
renatofilho@20
|
130 |
|
renatofilho@754
|
131 |
gtk_tree_store_clear(recordui->rec_tree_store);
|
renatofilho@20
|
132 |
|
renatofilho@754
|
133 |
res =
|
renatofilho@754
|
134 |
gmyth_scheduler_get_recorded_list(recordui->scheduler,
|
renatofilho@754
|
135 |
&record_list);
|
renatofilho@754
|
136 |
if (res < 0) {
|
renatofilho@754
|
137 |
g_warning
|
renatofilho@754
|
138 |
("[%s] Retrieved NULL list of recorded data from database",
|
renatofilho@754
|
139 |
__FUNCTION__);
|
renatofilho@754
|
140 |
return FALSE;
|
renatofilho@754
|
141 |
}
|
renatofilho@20
|
142 |
|
renatofilho@754
|
143 |
for (; record_list; record_list = record_list->next) {
|
renatofilho@754
|
144 |
recorded_info = (RecordedInfo *) record_list->data;
|
renatofilho@754
|
145 |
|
renatofilho@754
|
146 |
gtk_tree_store_insert(recordui->rec_tree_store, &iter, NULL,
|
renatofilho@754
|
147 |
new_row++);
|
renatofilho@754
|
148 |
|
renatofilho@754
|
149 |
start_date_time =
|
renatofilho@754
|
150 |
gmyth_util_time_to_string_from_time_val(recorded_info->
|
renatofilho@754
|
151 |
start_time);
|
renatofilho@754
|
152 |
end_date_time =
|
renatofilho@754
|
153 |
gmyth_util_time_to_string_from_time_val(recorded_info->
|
renatofilho@754
|
154 |
end_time);
|
renatofilho@20
|
155 |
|
renatofilho@20
|
156 |
g_string_printf(str_aux, "%d", recorded_info->channel_id);
|
renatofilho@20
|
157 |
|
renatofilho@754
|
158 |
gtk_tree_store_set(recordui->rec_tree_store, &iter, START_DATE_COLUMN, start_date_time, TITLE_COLUMN, recorded_info->title->str, CHAN_ID_COLUMN, str_aux->str, END_TIME_COLUMN, end_date_time, // It
|
renatofilho@754
|
159 |
// doesn't
|
renatofilho@754
|
160 |
// appear
|
renatofilho@754
|
161 |
RECORD_ID_COLUMN, recorded_info->record_id,
|
renatofilho@754
|
162 |
BASENAME_COLUMN, recorded_info->basename->str,
|
renatofilho@754
|
163 |
-1);
|
renatofilho@754
|
164 |
// the last line is a hidden item to be used in searching tasks
|
renatofilho@754
|
165 |
}
|
rosfran@244
|
166 |
|
renatofilho@754
|
167 |
g_debug("[%s] %d lines added to record list UI", __FUNCTION__,
|
renatofilho@754
|
168 |
new_row);
|
renatofilho@754
|
169 |
|
renatofilho@754
|
170 |
/*
|
renatofilho@754
|
171 |
* free allocated memory
|
renatofilho@754
|
172 |
*/
|
renatofilho@754
|
173 |
if (NULL != start_date_time)
|
rosfran@244
|
174 |
g_free(start_date_time);
|
renatofilho@754
|
175 |
if (NULL != end_date_time)
|
rosfran@244
|
176 |
g_free(end_date_time);
|
renatofilho@754
|
177 |
g_string_free(str_aux, FALSE);
|
renatofilho@754
|
178 |
|
renatofilho@754
|
179 |
return TRUE;
|
renatofilho@20
|
180 |
}
|
renatofilho@20
|
181 |
|
renatofilho@20
|
182 |
|
renatofilho@754
|
183 |
MMythRecordUI *
|
renatofilho@754
|
184 |
mmyth_recordui_new(GMythBackendInfo * backend_info)
|
renatofilho@20
|
185 |
{
|
renatofilho@754
|
186 |
MMythRecordUI *recordui = g_new0(MMythRecordUI, 1);
|
rosfran@244
|
187 |
|
renatofilho@754
|
188 |
g_return_val_if_fail(backend_info != NULL, NULL);
|
rosfran@244
|
189 |
|
renatofilho@754
|
190 |
recordui->backend_info = backend_info;
|
renatofilho@20
|
191 |
|
renatofilho@754
|
192 |
recordui->scrolled_window = gtk_scrolled_window_new(NULL, NULL);
|
renatofilho@754
|
193 |
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW
|
renatofilho@754
|
194 |
(recordui->scrolled_window),
|
renatofilho@754
|
195 |
GTK_POLICY_AUTOMATIC,
|
renatofilho@754
|
196 |
GTK_POLICY_AUTOMATIC);
|
renatofilho@20
|
197 |
|
renatofilho@754
|
198 |
recordui->viewport = gtk_viewport_new(NULL, NULL);
|
renatofilho@754
|
199 |
gtk_container_add(GTK_CONTAINER(recordui->scrolled_window),
|
renatofilho@754
|
200 |
recordui->viewport);
|
renatofilho@20
|
201 |
|
renatofilho@754
|
202 |
recordui->notebook = gtk_notebook_new();
|
renatofilho@754
|
203 |
gtk_container_set_border_width(GTK_CONTAINER(recordui->notebook), 1);
|
renatofilho@754
|
204 |
gtk_notebook_set_scrollable(GTK_NOTEBOOK(recordui->notebook), TRUE);
|
renatofilho@754
|
205 |
gtk_notebook_popup_enable(GTK_NOTEBOOK(recordui->notebook));
|
renatofilho@754
|
206 |
gtk_container_add(GTK_CONTAINER(recordui->viewport),
|
renatofilho@754
|
207 |
recordui->notebook);
|
renatofilho@754
|
208 |
gtk_notebook_popup_disable(GTK_NOTEBOOK(recordui->notebook));
|
renatofilho@20
|
209 |
|
renatofilho@754
|
210 |
/*
|
renatofilho@754
|
211 |
* Schedule tab
|
renatofilho@754
|
212 |
*/
|
renatofilho@754
|
213 |
recordui->sch_scrolled_window = gtk_scrolled_window_new(NULL, NULL);
|
renatofilho@754
|
214 |
gtk_container_add(GTK_CONTAINER(recordui->notebook),
|
renatofilho@754
|
215 |
recordui->sch_scrolled_window);
|
renatofilho@754
|
216 |
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW
|
renatofilho@754
|
217 |
(recordui->sch_scrolled_window),
|
renatofilho@754
|
218 |
GTK_POLICY_AUTOMATIC,
|
renatofilho@754
|
219 |
GTK_POLICY_AUTOMATIC);
|
renatofilho@754
|
220 |
gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW
|
renatofilho@754
|
221 |
(recordui->sch_scrolled_window),
|
renatofilho@754
|
222 |
GTK_SHADOW_IN);
|
renatofilho@754
|
223 |
|
renatofilho@754
|
224 |
/*
|
renatofilho@754
|
225 |
* The basename column in the sched_tree_store is not being used
|
renatofilho@754
|
226 |
*/
|
renatofilho@754
|
227 |
recordui->sch_tree_store =
|
renatofilho@754
|
228 |
gtk_tree_store_new(N_COLUMNS, G_TYPE_STRING, G_TYPE_STRING,
|
renatofilho@754
|
229 |
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INT,
|
renatofilho@754
|
230 |
G_TYPE_STRING);
|
renatofilho@754
|
231 |
|
renatofilho@754
|
232 |
recordui->sch_treeview =
|
renatofilho@754
|
233 |
gtk_tree_view_new_with_model(GTK_TREE_MODEL
|
renatofilho@754
|
234 |
(recordui->sch_tree_store));
|
renatofilho@754
|
235 |
gtk_container_add(GTK_CONTAINER(recordui->sch_scrolled_window),
|
renatofilho@754
|
236 |
recordui->sch_treeview);
|
renatofilho@754
|
237 |
recordui->sch_renderer = gtk_cell_renderer_text_new();
|
renatofilho@754
|
238 |
// g_object_set(G_OBJECT(renderer1), "foreground", "green",
|
renatofilho@754
|
239 |
// "background", "black", NULL);
|
renatofilho@754
|
240 |
recordui->sch_column1 =
|
renatofilho@754
|
241 |
gtk_tree_view_column_new_with_attributes("Start time",
|
renatofilho@754
|
242 |
recordui->sch_renderer,
|
renatofilho@754
|
243 |
"text", START_DATE_COLUMN,
|
renatofilho@754
|
244 |
NULL);
|
renatofilho@754
|
245 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->sch_treeview),
|
renatofilho@754
|
246 |
recordui->sch_column1);
|
renatofilho@754
|
247 |
recordui->sch_column2 =
|
renatofilho@754
|
248 |
gtk_tree_view_column_new_with_attributes("Title",
|
renatofilho@754
|
249 |
recordui->sch_renderer,
|
renatofilho@754
|
250 |
"text", TITLE_COLUMN,
|
renatofilho@754
|
251 |
NULL);
|
renatofilho@754
|
252 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->sch_treeview),
|
renatofilho@20
|
253 |
recordui->sch_column2);
|
renatofilho@754
|
254 |
recordui->sch_column3 =
|
renatofilho@754
|
255 |
gtk_tree_view_column_new_with_attributes("Channel",
|
renatofilho@754
|
256 |
recordui->sch_renderer,
|
renatofilho@754
|
257 |
"text", CHAN_ID_COLUMN,
|
renatofilho@754
|
258 |
NULL);
|
renatofilho@754
|
259 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->sch_treeview),
|
renatofilho@20
|
260 |
recordui->sch_column3);
|
renatofilho@754
|
261 |
gtk_tree_view_column_set_resizable(recordui->sch_column1, TRUE);
|
renatofilho@754
|
262 |
gtk_tree_view_column_set_resizable(recordui->sch_column2, TRUE);
|
renatofilho@754
|
263 |
gtk_tree_view_column_set_resizable(recordui->sch_column3, TRUE);
|
renatofilho@754
|
264 |
gtk_tree_view_column_set_reorderable(recordui->sch_column1, TRUE);
|
renatofilho@754
|
265 |
gtk_tree_view_column_set_reorderable(recordui->sch_column2, TRUE);
|
renatofilho@754
|
266 |
gtk_tree_view_column_set_reorderable(recordui->sch_column3, TRUE);
|
renatofilho@754
|
267 |
// recordui->sch_column4 =
|
renatofilho@754
|
268 |
// gtk_tree_view_column_new_with_attributes("",
|
renatofilho@754
|
269 |
// recordui->sch_renderer, "text", END_TIME_COLUMN, NULL);
|
renatofilho@754
|
270 |
// gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->sch_treeview),
|
renatofilho@754
|
271 |
// recordui->sch_column4);
|
renatofilho@20
|
272 |
|
renatofilho@754
|
273 |
recordui->sch_label = gtk_label_new(("Schedule"));
|
renatofilho@754
|
274 |
gtk_notebook_set_tab_label(GTK_NOTEBOOK(recordui->notebook),
|
renatofilho@754
|
275 |
gtk_notebook_get_nth_page(GTK_NOTEBOOK
|
renatofilho@754
|
276 |
(recordui->
|
renatofilho@754
|
277 |
notebook), 0),
|
renatofilho@754
|
278 |
recordui->sch_label);
|
renatofilho@20
|
279 |
|
renatofilho@754
|
280 |
// Record items tab
|
renatofilho@754
|
281 |
// g_object_set(G_OBJECT(renderer2), "foreground", "blue", NULL);
|
renatofilho@754
|
282 |
recordui->rec_scrolled_window = gtk_scrolled_window_new(NULL, NULL);
|
renatofilho@754
|
283 |
gtk_container_add(GTK_CONTAINER(recordui->notebook),
|
renatofilho@754
|
284 |
recordui->rec_scrolled_window);
|
renatofilho@754
|
285 |
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW
|
renatofilho@754
|
286 |
(recordui->rec_scrolled_window),
|
renatofilho@754
|
287 |
GTK_POLICY_AUTOMATIC,
|
renatofilho@754
|
288 |
GTK_POLICY_AUTOMATIC);
|
renatofilho@754
|
289 |
gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW
|
renatofilho@754
|
290 |
(recordui->rec_scrolled_window),
|
renatofilho@754
|
291 |
GTK_SHADOW_IN);
|
renatofilho@20
|
292 |
|
renatofilho@754
|
293 |
recordui->rec_tree_store =
|
renatofilho@754
|
294 |
gtk_tree_store_new(N_COLUMNS, G_TYPE_STRING, G_TYPE_STRING,
|
renatofilho@754
|
295 |
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INT,
|
renatofilho@754
|
296 |
G_TYPE_STRING);
|
renatofilho@754
|
297 |
recordui->rec_treeview =
|
renatofilho@754
|
298 |
gtk_tree_view_new_with_model(GTK_TREE_MODEL
|
renatofilho@754
|
299 |
(recordui->rec_tree_store));
|
renatofilho@754
|
300 |
gtk_container_add(GTK_CONTAINER(recordui->rec_scrolled_window),
|
renatofilho@754
|
301 |
recordui->rec_treeview);
|
renatofilho@754
|
302 |
recordui->rec_renderer = gtk_cell_renderer_text_new();
|
renatofilho@754
|
303 |
// g_object_set(G_OBJECT(renderer1), "foreground", "green",
|
renatofilho@754
|
304 |
// "background", "black", NULL);
|
renatofilho@754
|
305 |
|
renatofilho@754
|
306 |
recordui->rec_column1 =
|
renatofilho@754
|
307 |
gtk_tree_view_column_new_with_attributes("Start time",
|
renatofilho@754
|
308 |
recordui->rec_renderer,
|
renatofilho@754
|
309 |
"text", START_DATE_COLUMN,
|
renatofilho@754
|
310 |
NULL);
|
renatofilho@754
|
311 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->rec_treeview),
|
renatofilho@20
|
312 |
recordui->rec_column1);
|
renatofilho@754
|
313 |
recordui->rec_column2 =
|
renatofilho@754
|
314 |
gtk_tree_view_column_new_with_attributes("Title",
|
renatofilho@754
|
315 |
recordui->rec_renderer,
|
renatofilho@754
|
316 |
"text", TITLE_COLUMN,
|
renatofilho@754
|
317 |
NULL);
|
renatofilho@754
|
318 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->rec_treeview),
|
renatofilho@20
|
319 |
recordui->rec_column2);
|
renatofilho@754
|
320 |
recordui->rec_column3 =
|
renatofilho@754
|
321 |
gtk_tree_view_column_new_with_attributes("Channel",
|
renatofilho@754
|
322 |
recordui->rec_renderer,
|
renatofilho@754
|
323 |
"text", CHAN_ID_COLUMN,
|
renatofilho@754
|
324 |
NULL);
|
renatofilho@754
|
325 |
gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->rec_treeview),
|
renatofilho@20
|
326 |
recordui->rec_column3);
|
renatofilho@754
|
327 |
gtk_tree_view_column_set_resizable(recordui->rec_column1, TRUE);
|
renatofilho@754
|
328 |
gtk_tree_view_column_set_resizable(recordui->rec_column2, TRUE);
|
renatofilho@754
|
329 |
gtk_tree_view_column_set_resizable(recordui->rec_column3, TRUE);
|
renatofilho@754
|
330 |
gtk_tree_view_column_set_reorderable(recordui->rec_column1, TRUE);
|
renatofilho@754
|
331 |
gtk_tree_view_column_set_reorderable(recordui->rec_column2, TRUE);
|
renatofilho@754
|
332 |
gtk_tree_view_column_set_reorderable(recordui->rec_column3, TRUE);
|
renatofilho@754
|
333 |
// recordui->rec_column4 =
|
renatofilho@754
|
334 |
// gtk_tree_view_column_new_with_attributes("",
|
renatofilho@754
|
335 |
// recordui->rec_renderer, "text", END_TIME_COLUMN, NULL);
|
renatofilho@754
|
336 |
// gtk_tree_view_append_column(GTK_TREE_VIEW(recordui->rec_treeview),
|
renatofilho@754
|
337 |
// recordui->rec_column4);
|
renatofilho@20
|
338 |
|
renatofilho@754
|
339 |
recordui->rec_label = gtk_label_new(("Recorded"));
|
renatofilho@754
|
340 |
gtk_notebook_set_tab_label(GTK_NOTEBOOK(recordui->notebook),
|
renatofilho@754
|
341 |
gtk_notebook_get_nth_page(GTK_NOTEBOOK
|
renatofilho@754
|
342 |
(recordui->
|
renatofilho@754
|
343 |
notebook), 1),
|
renatofilho@754
|
344 |
recordui->rec_label);
|
renatofilho@754
|
345 |
|
renatofilho@754
|
346 |
// Gets the mmyth scheduler manager
|
renatofilho@754
|
347 |
recordui->scheduler = gmyth_scheduler_new(backend_info);
|
renatofilho@754
|
348 |
|
renatofilho@754
|
349 |
/*
|
renatofilho@754
|
350 |
* init connection to the backend
|
renatofilho@754
|
351 |
*/
|
renatofilho@754
|
352 |
gmyth_scheduler_connect(recordui->scheduler,
|
renatofilho@754
|
353 |
recordui->scheduler->backend_info);
|
renatofilho@754
|
354 |
|
renatofilho@754
|
355 |
return recordui;
|
renatofilho@20
|
356 |
}
|
renatofilho@20
|
357 |
|
renatofilho@20
|
358 |
void
|
renatofilho@754
|
359 |
mmyth_recordui_free(MMythRecordUI * recordui)
|
renatofilho@20
|
360 |
{
|
renatofilho@754
|
361 |
// FIXME: Release memory here!
|
renatofilho@754
|
362 |
/*
|
renatofilho@754
|
363 |
* close connection to the backend
|
renatofilho@754
|
364 |
*/
|
renatofilho@754
|
365 |
gmyth_scheduler_disconnect(recordui->scheduler);
|
renatofilho@20
|
366 |
}
|
renatofilho@20
|
367 |
|
renatofilho@20
|
368 |
void
|
renatofilho@754
|
369 |
mmyth_recordui_delete_selected(GtkButton * button,
|
renatofilho@754
|
370 |
MMythRecordUI * recordui)
|
renatofilho@20
|
371 |
{
|
renatofilho@754
|
372 |
GtkTreeSelection *selection;
|
renatofilho@754
|
373 |
GtkTreeModel *list_store;
|
renatofilho@754
|
374 |
GtkTreeIter iter;
|
renatofilho@754
|
375 |
int index;
|
renatofilho@754
|
376 |
int curr_page = 0;
|
renatofilho@20
|
377 |
|
renatofilho@754
|
378 |
curr_page =
|
renatofilho@754
|
379 |
gtk_notebook_get_current_page(GTK_NOTEBOOK(recordui->notebook));
|
renatofilho@754
|
380 |
|
renatofilho@754
|
381 |
if (curr_page == 0) {
|
renatofilho@754
|
382 |
selection =
|
renatofilho@754
|
383 |
gtk_tree_view_get_selection(GTK_TREE_VIEW
|
renatofilho@754
|
384 |
(recordui->sch_treeview));
|
renatofilho@754
|
385 |
if (selection != NULL) {
|
renatofilho@754
|
386 |
gtk_tree_selection_get_selected(selection, &list_store, &iter);
|
renatofilho@754
|
387 |
gtk_tree_model_get(list_store, &iter, RECORD_ID_COLUMN, &index,
|
renatofilho@754
|
388 |
-1);
|
renatofilho@754
|
389 |
gmyth_scheduler_delete_schedule(recordui->scheduler, index);
|
renatofilho@754
|
390 |
mmyth_recordui_reload_schedule(recordui);
|
renatofilho@754
|
391 |
return;
|
renatofilho@754
|
392 |
}
|
renatofilho@754
|
393 |
|
renatofilho@754
|
394 |
} else if (curr_page == 1) {
|
renatofilho@754
|
395 |
selection =
|
renatofilho@754
|
396 |
gtk_tree_view_get_selection(GTK_TREE_VIEW
|
renatofilho@754
|
397 |
(recordui->rec_treeview));
|
renatofilho@754
|
398 |
if (selection != NULL) {
|
renatofilho@754
|
399 |
gtk_tree_selection_get_selected(selection, &list_store, &iter);
|
renatofilho@754
|
400 |
gtk_tree_model_get(list_store, &iter, RECORD_ID_COLUMN, &index,
|
renatofilho@754
|
401 |
-1);
|
renatofilho@754
|
402 |
gmyth_scheduler_delete_recorded(recordui->scheduler, index);
|
renatofilho@754
|
403 |
mmyth_recordui_reload_record(recordui);
|
renatofilho@754
|
404 |
return;
|
renatofilho@754
|
405 |
}
|
renatofilho@754
|
406 |
}
|
renatofilho@754
|
407 |
|
renatofilho@754
|
408 |
g_warning("[%s] None element was removed from the list", __FUNCTION__);
|
renatofilho@20
|
409 |
}
|
renatofilho@20
|
410 |
|
renatofilho@754
|
411 |
/*
|
renatofilho@754
|
412 |
* FIXME: change this function name, it is returning the basename_column
|
renatofilho@754
|
413 |
* that represents the nuv filename of the recorded content
|
renatofilho@754
|
414 |
*/
|
renatofilho@754
|
415 |
gchar *
|
renatofilho@754
|
416 |
mmyth_recordui_get_selected_recorded(MMythRecordUI * recordui)
|
renatofilho@20
|
417 |
{
|
renatofilho@754
|
418 |
GtkTreeSelection *selection = NULL;
|
renatofilho@754
|
419 |
GtkTreeModel *list_store = NULL;
|
renatofilho@754
|
420 |
GtkTreeIter iter;
|
renatofilho@754
|
421 |
gchar *path = NULL;
|
renatofilho@20
|
422 |
|
renatofilho@754
|
423 |
/*
|
renatofilho@754
|
424 |
* returning nuv filename, basename_column
|
renatofilho@754
|
425 |
*/
|
renatofilho@754
|
426 |
selection =
|
renatofilho@754
|
427 |
gtk_tree_view_get_selection(GTK_TREE_VIEW(recordui->rec_treeview));
|
renatofilho@754
|
428 |
if (gtk_tree_selection_get_selected(selection, &list_store, &iter)) {
|
renatofilho@754
|
429 |
gtk_tree_model_get(list_store, &iter, BASENAME_COLUMN, &path, -1);
|
renatofilho@754
|
430 |
}
|
renatofilho@754
|
431 |
// FIXME: MOVE THIS TO OTHER PLACE
|
renatofilho@754
|
432 |
return path;
|
renatofilho@20
|
433 |
}
|