~ubuntu-branches/ubuntu/precise/rhythmbox/precise-201203091205

« back to all changes in this revision

Viewing changes to widgets/rb-song-display-box.h

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#ifndef __RB_SONG_DISPLAY_BOX_H
33
33
#define __RB_SONG_DISPLAY_BOX_H
34
34
 
35
 
#include <gtk/gtklabel.h>
36
 
#include <gtk/gtkwidget.h>
37
 
#include <gtk/gtkbox.h>
 
35
#include <gtk/gtk.h>
38
36
 
39
 
#include <libgnomeui/libgnomeui.h>
 
37
#include "rhythmdb.h"
40
38
 
41
39
#define RB_TYPE_SONG_DISPLAY_BOX        (rb_song_display_box_get_type ())
42
40
#define RB_SONG_DISPLAY_BOX(obj)        (GTK_CHECK_CAST ((obj), RB_TYPE_SONG_DISPLAY_BOX, RBSongDisplayBox))
47
45
        GtkBox box;
48
46
 
49
47
        RBSongDisplayBoxPrivate *priv;
50
 
 
51
 
        GnomeHRef *album;
52
 
        GnomeHRef *artist;
53
48
} RBSongDisplayBox;
54
49
 
55
50
typedef struct
60
55
GType                   rb_song_display_box_get_type (void) G_GNUC_CONST;
61
56
GtkWidget *             rb_song_display_box_new      (void);
62
57
 
 
58
void                    rb_song_display_box_sync        (RBSongDisplayBox *displaybox,
 
59
                                                         RhythmDBEntry *entry);
 
60
 
63
61
#endif /* __RB_PLAYER_H */