summaryrefslogtreecommitdiffstats
path: root/juk/nowplaying.h
blob: bacc6582de25cb38a4ab52479c72f1460a68f941 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/***************************************************************************
    begin                : Tue Nov 9 2004
    copyright            : (C) 2004 by Scott Wheeler
    email                : wheeler@kde.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef NOWPLAYING_H
#define NOWPLAYING_H

#include <kactivelabel.h>

#include <tqhbox.h>
#include <tqlabel.h>
#include <tqguardedptr.h>

#include "filehandle.h"
#include "playlist.h"

class TQTimer;
class TQPoint;

class NowPlayingItem;
class PlaylistCollection;
class Playlist;

/**
 * This is the widget that holds all of the other items and handles updating them
 * when the playing item changes.
 */

class NowPlaying : public TQHBox
{
    Q_OBJECT
  TQ_OBJECT

public:
    NowPlaying(TQWidget *tqparent, PlaylistCollection *collection,
               const char *name = 0);
    void addItem(NowPlayingItem *item);
    PlaylistCollection *collection() const;

private slots:
    void slotUpdate();

private:
    struct Observer : public PlaylistObserver
    {
        Observer(NowPlaying *tqparent, PlaylistInterface *playlist) :
            PlaylistObserver(playlist),
            m_parent(tqparent) {}
        virtual void updateCurrent() {}
        virtual void updateData() { m_parent->slotUpdate(); }
        NowPlaying *m_parent;
    };
    friend struct Observer;

    Observer m_observer;
    PlaylistCollection *m_collection;
    TQValueList<NowPlayingItem *> m_items;
};

/**
 * Abstract base for the other NowPlaying items.
 */

class NowPlayingItem
{
public:
    virtual void update(const FileHandle &file) = 0;
    NowPlaying *tqparent() const { return m_parent; }
protected:
    NowPlayingItem(NowPlaying *tqparent) : m_parent(tqparent) { tqparent->addItem(this); }
private:
    NowPlaying *m_parent;
};

/**
 * Displays the cover of the currently playing file if available, or hides
 * itself if not.
 */

class CoverItem : public TQLabel, public NowPlayingItem
{
public:
    CoverItem(NowPlaying *tqparent);
    virtual void update(const FileHandle &file);
    virtual void mouseReleaseEvent(TQMouseEvent *event);

protected:
    virtual void dragEnterEvent(TQDragEnterEvent *e);
    virtual void dropEvent(TQDropEvent *e);

    virtual void mousePressEvent(TQMouseEvent *e);
    virtual void mouseMoveEvent(TQMouseEvent *e);

private:
    FileHandle m_file;
    bool m_dragging;
    TQPoint m_dragStart;
};

/**
 * A link label that doesn't automatically open Konqueror.
 */

class LinkLabel : public KActiveLabel
{
public:
    LinkLabel(TQWidget *tqparent, const char *name = 0) : KActiveLabel(tqparent, name) {}
    virtual void openLink(const TQString &) {}
};

/**
 * Show the text information on the current track and provides links to the
 * album and artist of the currently playing item.
 */

class TrackItem : public TQWidget, public NowPlayingItem
{
    Q_OBJECT
  TQ_OBJECT

public:
    TrackItem(NowPlaying *tqparent);
    virtual void update(const FileHandle &file);

private slots:
    void slotOpenLink(const TQString &link);
    void slotUpdate();

private:
    FileHandle m_file;
    LinkLabel *m_label;
};

/**
 * Shows up to 10 items of history and links to those items.
 */

class HistoryItem : public LinkLabel, public NowPlayingItem
{
    Q_OBJECT
  TQ_OBJECT

public:
    HistoryItem(NowPlaying *tqparent);
    virtual void update(const FileHandle &file);
    virtual void openLink(const TQString &link);

private slots:
    void slotAddPlaying();

private:
    struct Item
    {
        Item() {}
        Item(const TQString &a, const FileHandle &f, Playlist *p)
            : anchor(a), file(f), playlist(p) {}

        TQString anchor;
        FileHandle file;
        TQGuardedPtr<Playlist> playlist;
    };

    TQValueList<Item> m_history;
    LinkLabel *m_label;
    TQTimer *m_timer;
    FileHandle m_file;
};

#endif