summaryrefslogtreecommitdiffstats
path: root/src/replaygainscanner.h
blob: a613d0aaee58802511d2eeccdc63204d48a723c6 (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


#ifndef REPLAYGAINSCANNER_H
#define REPLAYGAINSCANNER_H

#include <kdialog.h>

#include "replaygainfilelist.h"

class Config;
class Logger;
class ComboButton;

class TQCheckBox;

class KPushButton;
class KProgress;


/**
 * @short The Replay Gain Tool
 * @author Daniel Faust <hessijames@gmail.com>
 * @version 0.3
 */
class ReplayGainScanner : public KDialog
{
    Q_OBJECT
  
public:
    /**
     * Constructor
     */
    ReplayGainScanner( TagEngine*, Config*, Logger*, TQWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 );

    /**
     * Destructor
     */
    virtual ~ReplayGainScanner();

    void addFiles( TQStringList );

private slots:
    void addClicked( int );
    void showDirDialog();
    void showFileDialog();
    void calcReplayGainClicked();
    void removeReplayGainClicked();
    void cancelClicked();
    void processStarted();
    void processStopped();
    void updateProgress( int, int );

private:
    ComboButton* cAdd;
    TQCheckBox* cForce;
    //TQComboBox* cFilter;
    ReplayGainFileList* lList;
    KProgress* pProgressBar;
    KPushButton* pTagVisible;
    KPushButton* pRemoveTag;
    KPushButton* pCancel;
    KPushButton* pOk;

    TagEngine* tagEngine;
    Config* config;
    Logger* logger;

    TQTime elapsedTime;

signals:
    void addFile( const TQString& );
    void addDir( const TQString&, const TQStringList& filter = "", bool recursive = true );
    void calcAllReplayGain( bool force );
    void removeAllReplayGain();
    void cancelProcess();
};

#endif // REPLAYGAINSCANNER_H