~ubuntu-branches/ubuntu/gutsy/kid3/gutsy

« back to all changes in this revision

Viewing changes to kid3/tracktypedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2007-07-01 00:31:03 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070701003103-2qownnv49a7jdqm3
Tags: 0.9-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \file tracktypedialog.h
 
3
 * TrackType.org import dialog.
 
4
 *
 
5
 * \b Project: Kid3
 
6
 * \author Urs Fleisch
 
7
 * \date 25 Apr 2007
 
8
 */
 
9
 
 
10
#ifndef TRACKTYPEDIALOG_H
 
11
#define TRACKTYPEDIALOG_H
 
12
 
 
13
#include "freedbdialog.h"
 
14
 
 
15
/**
 
16
 * TrackType.org import dialog.
 
17
 */
 
18
class TrackTypeDialog : public FreedbDialog
 
19
{
 
20
public:
 
21
        /**
 
22
         * Constructor.
 
23
         *
 
24
         * @param parent  parent widget
 
25
         * @param trackDataVector track data to be filled with imported values
 
26
         */
 
27
        TrackTypeDialog(QWidget* parent,
 
28
                                                         ImportTrackDataVector& trackDataVector);
 
29
 
 
30
        /**
 
31
         * Destructor.
 
32
         */
 
33
        virtual ~TrackTypeDialog();
 
34
 
 
35
        /**
 
36
         * Process finished findCddbAlbum request.
 
37
         *
 
38
         * @param searchStr search data received
 
39
         */
 
40
        virtual void parseFindResults(const QByteArray& searchStr);
 
41
};
 
42
 
 
43
#endif