summaryrefslogtreecommitdiffstats
path: root/kaudiocreator/tracksimp.h
blob: bc109f55e5b0a230771d70c584e7fc1f300e8df1 (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
/**
 * This file is part of the KAudioCreator package
 * Copyright (C) 2003 Benjamin C Meyer (ben+kaudiocreator at meyerhome dot 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 library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef TRACKSIMP_H
#define TRACKSIMP_H

#include "tracks.h"
#include <kiconloader.h>
#include <klistview.h>
#include <klocale.h>

// CDDB support via libkcddb
#include <libkcddb/client.h>

#define HEADER_RIP 0
#define HEADER_TRACK 1
#define HEADER_LENGTH 2
#define HEADER_TRACK_NAME 3
#define HEADER_TRACK_ARTIST 4
#define HEADER_TRACK_COMMENT 5

using namespace KCDDB;
class Job;
class KProcess;
class KCompactDisc;

class TracksItem : public KListViewItem
{
public:
    TracksItem( KListView *tqparent, KListViewItem *after, TQString t, TQString a, int tr, TQString l, TQString c )
        : KListViewItem( tqparent, after, TQString()/*rip*/, TQString::number(tr), l, t )
    {
        m_title = t;
        m_artist = a;
        m_length = l;
        m_track = tr;
        m_comment = c;
        m_checked = false;
    }

    TQString title()     const { return m_title; }
    TQString artist()    const { return m_artist; }
    int     track()     const { return m_track; }
    TQString length()    const { return m_length; }
    bool    checked()   const { return m_checked; }
    TQString comment()   const { return m_comment; }
    #include <kdebug.h>
    void    setTitle( const TQString &t )  { m_title = t; kdDebug() << "title: " << m_title << endl; }
    void    setChecked( const bool &b )   { 
        m_checked = b;
        b ? setPixmap( HEADER_RIP, SmallIcon( "apply", height()-2 ) ) :
            setPixmap( HEADER_RIP, 0 );
    }

private:
    TQString m_title;
    TQString m_artist;
    int     m_track;
    TQString m_length;
    TQString m_comment;
    bool    m_checked; // marked for ripping
};



/**
 * This class handles the display of the tracks. It also starts off the job que.
 */
class TracksImp : public Tracks {

Q_OBJECT
  TQ_OBJECT

signals:
	void ripTrack(Job *job);
	void hasCD(bool);
	void hasTracks(bool);
 
public:
	TracksImp( TQWidget* tqparent = 0, const char* name = 0);
	~TracksImp();

	bool hasCD();

public slots:
	void loadSettings();

	// Toolbar Buttons
	void startSession( int encoder = -1 );
	void editInformation();
	void performCDDB();
	void ejectDevice(const TQString &deviceToEject);
	void eject();
	void selectAllTracks();
	void deselectAllTracks();

private slots:
    void changeDevice(const TQString &file);
	void keyPressEvent(TQKeyEvent *event);
	void lookupCDDBDone(CDDB::Result result);
    void newDisc(unsigned discId);   
    void selectTrack(TQListViewItem *);   

private:
	void lookupDevice();
	void lookupCDDB();
	void newAlbum();
	void ripWholeAlbum();
    TQPtrList<TracksItem> selectedTracks();   
    
	TQString formatTime(unsigned ms);

	KCDDB::Client *cddb;
	KCompactDisc  *cd;

	// Current album
	KCDDB::CDInfo cddbInfo;
};

#endif // TRACKSIMP_H