~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to metadata/sj-structures.h

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (C) 2003 Ross Burton <ross@burtonini.com>
 
3
 *
 
4
 * Sound Juicer - sj-structures.h
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *
 
20
 * Authors: Ross Burton <ross@burtonini.com>
 
21
 */
 
22
 
 
23
#ifndef SJ_STRUCTURES_H
 
24
#define SJ_STRUCTURES_H
 
25
 
 
26
#include <glib/glist.h>
 
27
#include <gtk/gtktreemodel.h>
 
28
 
 
29
typedef struct _AlbumDetails AlbumDetails;
 
30
typedef struct _TrackDetails TrackDetails;
 
31
 
 
32
 
 
33
struct _TrackDetails {
 
34
  AlbumDetails *album;
 
35
  int number; /* track number */
 
36
  char *title;
 
37
  char *artist;
 
38
  int duration; /* seconds */
 
39
  char* track_id;
 
40
  char* artist_id;
 
41
  GtkTreeIter iter; /* Temporary iterator for internal use */
 
42
};
 
43
 
 
44
struct _Date {
 
45
  /* TODO: use GLib date structures? */
 
46
  guint year;
 
47
  guint month;
 
48
  guint day;
 
49
};
 
50
 
 
51
struct _AlbumDetails {
 
52
  char* title;
 
53
  char* artist;
 
54
  char *genre;
 
55
  int   number; /* number of tracks in the album */
 
56
  GList* tracks;
 
57
  GDate *release_date; /* MusicBrainz support multiple releases per album */
 
58
  char* album_id;
 
59
  char* artist_id;
 
60
};
 
61
 
 
62
void album_details_free(AlbumDetails *album);
 
63
void track_details_free(TrackDetails *track);
 
64
 
 
65
#endif