renatofilho@20: #ifndef MMYTH_RECORD_H_ renatofilho@20: #define MMYTH_RECORD_H_ renatofilho@20: rosfran@244: #include rosfran@244: #include renatofilho@20: renatofilho@754: typedef struct _MMythRecordUI { renatofilho@754: GtkWidget *scrolled_window; renatofilho@754: GtkWidget *viewport; renatofilho@754: GtkWidget *notebook; renatofilho@20: renatofilho@754: GtkWidget *rec_scrolled_window; renatofilho@754: GtkWidget *sch_scrolled_window; renatofilho@754: GtkWidget *rec_treeview; renatofilho@754: GtkWidget *sch_treeview; renatofilho@754: GtkWidget *rec_label; renatofilho@754: GtkWidget *sch_label; rosfran@244: renatofilho@754: GtkTreeViewColumn *rec_column1; renatofilho@754: GtkTreeViewColumn *rec_column2; renatofilho@754: GtkTreeViewColumn *rec_column3; renatofilho@754: GtkTreeViewColumn *rec_column4; renatofilho@754: GtkTreeViewColumn *sch_column1; renatofilho@754: GtkTreeViewColumn *sch_column2; renatofilho@754: GtkTreeViewColumn *sch_column3; renatofilho@754: GtkTreeViewColumn *sch_column4; renatofilho@754: renatofilho@754: GtkCellRenderer *rec_renderer; renatofilho@754: GtkCellRenderer *sch_renderer; renatofilho@754: renatofilho@754: GtkTreeStore *sch_tree_store; renatofilho@754: GtkTreeStore *rec_tree_store; renatofilho@754: renatofilho@754: GMythScheduler *scheduler; renatofilho@754: renatofilho@754: GMythBackendInfo *backend_info; renatofilho@754: renatofilho@20: } MMythRecordUI; renatofilho@20: renatofilho@754: MMythRecordUI *mmyth_recordui_new(GMythBackendInfo * backend_info); renatofilho@754: void mmyth_recordui_free(MMythRecordUI * recordui); renatofilho@20: renatofilho@754: void mmyth_recordui_delete_selected(GtkButton * button, renatofilho@754: MMythRecordUI * recordui); renatofilho@754: gboolean mmyth_recordui_reload_all(MMythRecordUI * recordui); renatofilho@754: gboolean mmyth_recordui_reload_schedule(MMythRecordUI * recordui); renatofilho@754: gboolean mmyth_recordui_reload_record(MMythRecordUI * recordui); renatofilho@20: renatofilho@754: gchar *mmyth_recordui_get_selected_recorded(MMythRecordUI * renatofilho@754: recordui); renatofilho@20: renatofilho@754: #endif /* MMYTH_RECORD_H_ */