summaryrefslogtreecommitdiffstats
path: root/krename/encodingplugin.h
blob: 801dd3f571a1df688833368e8cf7a3565e1c0b16 (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
/***************************************************************************
                         encodingplugin.h  -  description
                             -------------------
    begin                : Tue Jul 06 2004
    copyright            : (C) 2004 by Dominik Seichter
    email                : domseichter@web.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 _ENCODINGPLUGIN_H_
#define _ENCODINGPLUGIN_H_

#include "batchrenamer.h"
#include "pluginloader.h"
#include "plugin.h"
#include "helpdialog.h"
#include "fileoperation.h"

class KComboBox;
class QCheckBox;

class EncodingPlugin : public Plugin  {
    Q_OBJECT
    public:
        const QString getName() const;
        const QString getAccelName() const;
        const int type() const;

        bool checkError();
        void drawInterface( QWidget* w, QVBoxLayout* l );
        void fillStructure();
        QString processFile( BatchRenamer*, int, QString token, int );
        void finished();

        const QPixmap getIcon() const;

     private slots:
	 void enableControls();

     private:
	void setLocale( KComboBox* combo );

	FileOperation fop;

	QString m_input_codec;
	QString m_output_codec;
	QString m_locale_codec;

	int mib_input;
	int mib_output;
 
	QCheckBox* checkInput;
	QCheckBox* checkOutput;

	KComboBox* comboInput;
	KComboBox* comboOutput;
};


#endif //  _ENCODINGPLUGIN_H_