You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/libkopete/ui/kopetefileconfirmdialog.cpp

118 lines
3.7 KiB

/*
kopetefileconfirmdialog.cpp
Copyright (c) 2003-2004 by Olivier Goffart <ogoffart @ kde.org>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#include <tqtextedit.h>
#include <klineedit.h>
#include <tdeconfig.h>
#include <klocale.h>
#include <tdefiledialog.h>
#include <kpushbutton.h>
#include <kmessagebox.h>
//#include "kopetetransfermanager.h"
#include "fileconfirmbase.h"
#include "kopetefileconfirmdialog.h"
#include "kopetemetacontact.h"
#include "kopetecontact.h"
KopeteFileConfirmDialog::KopeteFileConfirmDialog(const Kopete::FileTransferInfo &info,const TQString& description,TQWidget *parent, const char *name )
: KDialogBase( parent, name, false, i18n( "A User Would Like to Send You a File" ),
KDialogBase::User1 | KDialogBase::User2, KDialogBase::User1, true, i18n( "&Refuse" ), i18n( "&Accept" ) ),
m_info( info )
{
setWFlags( WDestructiveClose );
m_emited=false;
m_view=new FileConfirmBase(this, "FileConfirmView");
m_view->m_from->setText( info.contact()->metaContact()->displayName() + TQString::fromLatin1( " <" ) +
info.contact()->contactId() + TQString::fromLatin1( "> " ) );
m_view->m_size->setText( TDEGlobal::locale()->formatNumber( long( info.size() ), 0 ) );
m_view->m_description->setText( description );
m_view->m_filename->setText( info.file() );
TDEGlobal::config()->setGroup("File Transfer");
const TQString defaultPath=TDEGlobal::config()->readEntry("defaultPath" , TQDir::homeDirPath() );
m_view->m_saveto->setText(defaultPath + TQString::fromLatin1( "/" ) + info.file() );
setMainWidget(m_view);
connect(m_view->cmdBrowse, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotBrowsePressed()));
}
KopeteFileConfirmDialog::~KopeteFileConfirmDialog()
{
}
void KopeteFileConfirmDialog::slotBrowsePressed()
{
TQString saveFileName = KFileDialog::getSaveFileName( m_view->m_saveto->text(), TQString::fromLatin1( "*" ), 0L , i18n( "File Transfer" ) );
if ( !saveFileName.isNull())
{
m_view->m_saveto->setText(saveFileName);
}
}
void KopeteFileConfirmDialog::slotUser2()
{
m_emited=true;
KURL url(m_view->m_saveto->text());
if(url.isValid() && url.isLocalFile() )
{
const TQString directory=url.directory();
if(!directory.isEmpty())
{
TDEGlobal::config()->setGroup("File Transfer");
TDEGlobal::config()->writeEntry("defaultPath" , directory );
}
if(TQFile(m_view->m_saveto->text()).exists())
{
int ret=KMessageBox::warningContinueCancel(this, i18n("The file '%1' already exists.\nDo you want to overwrite it ?").arg(m_view->m_saveto->text()) ,
i18n("Overwrite File") , KStdGuiItem::save());
if(ret==KMessageBox::Cancel)
return;
}
emit accepted(m_info,m_view->m_saveto->text());
close();
}
else
KMessageBox::queuedMessageBox (this, KMessageBox::Sorry, i18n("You must provide a valid local filename") );
}
void KopeteFileConfirmDialog::slotUser1()
{
m_emited=true;
emit refused(m_info);
close();
}
void KopeteFileConfirmDialog::closeEvent( TQCloseEvent *e)
{
if(!m_emited)
{
m_emited=true;
emit refused(m_info);
}
KDialogBase::closeEvent(e);
}
#include "kopetefileconfirmdialog.moc"