summaryrefslogtreecommitdiffstats
path: root/renamedlgplugins/audio/audio_plugin.cpp
blob: 5aeeb49c7662a08114aebd1c127bc6f2d3d743e0 (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
/* This file is part of the KDE project
   Copyright (C) 2003 Fabian Wolf <fabianw@gmx.net>

   image_plugin.cpp (also Part of the KDE Project) used as template

   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; version 2
   of the License.

   This program 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
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#include <kgenericfactory.h>
#include <renamedlgplugin.h>
#include <kio/renamedlg.h>
#include <tqlabel.h>
#include <tqdialog.h>
#include <tqwidget.h>
#include <tqstringlist.h>
#include <kio/global.h>
#include <tqlayout.h>

#include <sys/types.h>

#include "audiopreview.h"

class AudioPlugin : public RenameDlgPlugin{
public:
  AudioPlugin( TQDialog *dialog, const char *name, const TQStringList & );
  ~AudioPlugin();
  virtual bool initialize( KIO::RenameDlg_Mode /*mod*/, const TQString &/*_src*/, const TQString &/*_dest*/,
		  const TQString &/*mimeSrc*/,
		  const TQString &/*mimeDest*/,
		  KIO::filesize_t /*sizeSrc*/,
		  KIO::filesize_t /*sizeDest*/,
		  time_t /*ctimeSrc*/,
		  time_t /*ctimeDest*/,
		  time_t /*mtimeSrc*/,
		  time_t /*mtimeDest*/ );
};

AudioPlugin::AudioPlugin( TQDialog *dialog, const char *name, const TQStringList &list ) : RenameDlgPlugin( dialog, name, list) {
  qWarning("loaded" );  
}
AudioPlugin::~AudioPlugin()
{
}
bool AudioPlugin::initialize( KIO::RenameDlg_Mode mode, const TQString &_src, const TQString &_dest,
		  const TQString &mimeSrc,
		  const TQString &mimeDest,
		  KIO::filesize_t /*sizeSrc*/,
		  KIO::filesize_t /*sizeDest*/,
		  time_t /*ctimeSrc*/,
		  time_t /*ctimeDest*/,
		  time_t mtimeSrc,
		  time_t mtimeDest ) {
 TQGridLayout *lay = new TQGridLayout(this, 4, 3, 5);
 if( mode & KIO::M_OVERWRITE ){
   TQLabel *label_head = new TQLabel(this);
   TQLabel *label_src  = new TQLabel(this);
   TQLabel *label_dst  = new TQLabel(this);
   TQLabel *label_ask  = new TQLabel(this);

   TQString sentence1;
   TQString dest = KURL::fromPathOrURL(_dest).pathOrURL();
   if (mtimeDest < mtimeSrc)
      sentence1 = i18n("An older file named '%1' already exists.\n").tqarg(dest);
   else if (mtimeDest == mtimeSrc)
      sentence1 = i18n("A similar file named '%1' already exists.\n").tqarg(dest);
   else
      sentence1 = i18n("A newer file named '%1' already exists.\n").tqarg(dest);
   label_head->setText(sentence1);
   label_src->setText(i18n("Source File"));
   label_dst->setText(i18n("Existing File"));
   label_ask->setText(i18n("Would you like to replace the existing file with the one on the right?") );
   label_head->adjustSize();
   label_src->adjustSize();
   label_dst->adjustSize();
   label_ask->adjustSize();
   lay->addMultiCellWidget(label_head, 0, 0, 0, 2, TQt::AlignLeft);
   lay->addWidget(label_dst, 1, 0, TQt::AlignLeft);
   lay->addWidget(label_src, 1, 2, TQt::AlignLeft);
   lay->addMultiCellWidget(label_ask, 3, 3, 0, 2,  TQt::AlignLeft);
   adjustSize();
 }
 AudioPreview *left= new AudioPreview(this, "Preview Left", _dest, mimeDest );
 AudioPreview *right = new AudioPreview( this, "Preview Right", _src, mimeSrc);
 lay->addWidget(left, 2, 0 );
 lay->addWidget(right, 2, 2 );
 adjustSize();
 return true;
}

typedef KGenericFactory<AudioPlugin, TQDialog> AudioPluginFactory;
K_EXPORT_COMPONENT_FACTORY( librenaudioplugin, AudioPluginFactory("audiorename_plugin") )