File: info.h

package info (click to toggle)
gtkpod 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,592 kB
  • sloc: ansic: 50,793; xml: 15,433; sh: 11,934; cpp: 7,387; perl: 1,449; makefile: 1,381; lex: 638; awk: 73; python: 35
file content (80 lines) | stat: -rw-r--r-- 2,941 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
|  Copyright (C) 2002-2007 Jorg Schuler <jcsjcs at users sourceforge net>
|  Part of the gtkpod project.
|
|  URL: http://www.gtkpod.org/
|  URL: http://gtkpod.sourceforge.net/
|
|  This program is free software; you can redistribute it and/or modify
|  it under the terms of the GNU General Public License as published by
|  the Free Software Foundation; either version 2 of the License, or
|  (at your option) any later version.
|
|  This program is distributed in the hope that it will be useful,
|  but WITHOUT ANY WARRANTY; without even the implied warranty of
|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
|  GNU General Public License for more details.
|
|  You should have received a copy of the GNU General Public License
|  along with this program; if not, write to the Free Software
|  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|  iTunes and iPod are trademarks of Apple
|
|  This product is not supported/written/published by Apple!
|
|  $Id$
*/

#ifndef __INFO_H__
#define __INFO_H__

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <glib.h>
#include "libgtkpod/itdb.h"
#include "libgtkpod/gtkpod_app_iface.h"

/* callbacks */
typedef void (*info_update_callback) ();

void info_display_init();

void register_info_update (info_update_callback cb);
void register_info_update_track_view (info_update_callback cb);
void register_info_update_playlist_view (info_update_callback cb);
void register_info_update_totals_view (info_update_callback cb);

void unregister_info_update (info_update_callback cb);
void unregister_info_update_track_view (info_update_callback cb);
void unregister_info_update_playlist_view (info_update_callback cb);
void unregister_info_update_totals_view (info_update_callback cb);

/* generic functions */
void fill_in_info (GList *tl, guint32 *tracks, guint32 *playtime, gdouble *filesize);
iTunesDB *get_itdb_ipod (void);
iTunesDB *get_itdb_local (void);
gdouble get_ipod_free_space(void);

/* info window */
void info_update (void);
void info_update_track_view (void);
void info_update_playlist_view (void);
void info_update_totals_view (void);

gboolean ipod_connected (void);

void on_info_view_open (GtkAction *action, InfoDisplayPlugin* plugin);

void info_display_playlist_selected_cb(GtkPodApp *app, gpointer pl, gpointer data);
void info_display_playlist_added_cb(GtkPodApp *app, gpointer pl, gint32 pos, gpointer data);
void info_display_playlist_removed_cb(GtkPodApp *app, gpointer pl, gpointer data);
void info_display_track_updated_cb(GtkPodApp *app, gpointer tk, gpointer data);
void info_display_track_removed_cb(GtkPodApp *app, gpointer tk, gint32 pos, gpointer data);
void info_display_tracks_selected_cb(GtkPodApp *app, gpointer tk, gpointer data);
void info_display_tracks_displayed_cb(GtkPodApp *app, gpointer tk, gpointer data);
void info_display_itdb_changed_cb(GtkPodApp *app, gpointer itdb, gpointer data);

#endif