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.
103 lines
3.0 KiB
103 lines
3.0 KiB
/***************************************************************************
|
|
pathmapperdialog.cpp
|
|
--------------------
|
|
begin : 2005-01-08
|
|
copyright : (C) 2004 Linus McCabe <linus@mccabe.nu>
|
|
***************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "pathmapperdialog.h"
|
|
#include <tqlistview.h>
|
|
#include <tqlineedit.h>
|
|
#include <qextfileinfo.h>
|
|
#include <tqcolor.h>
|
|
#include <kled.h>
|
|
|
|
PathMapperDialog::PathMapperDialog(const TQString& path, const PathMapperDialog::Direction direction)
|
|
: PathMapperDialogS(0, "PathMapperDialog", false, 0)
|
|
{
|
|
m_direction = direction;
|
|
m_path = path;
|
|
linePath->setText(path);
|
|
|
|
if(m_direction == LocalToServer)
|
|
ledTranslationExists->hide();
|
|
|
|
connect(listHistory, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotSelectionChanged()));
|
|
connect(lineLocalPath, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotPathsChanged()));
|
|
connect(lineServerPath, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotPathsChanged()));
|
|
}
|
|
|
|
PathMapperDialog::~PathMapperDialog()
|
|
{
|
|
}
|
|
|
|
void PathMapperDialog::addHistory(const TQString &serverdir, const TQString &localdir)
|
|
{
|
|
new TQListViewItem(listHistory, localdir, serverdir);
|
|
}
|
|
|
|
void PathMapperDialog::slotSelectionChanged()
|
|
{
|
|
lineLocalPath->setText(listHistory->currentItem()->text(0));
|
|
lineServerPath->setText(listHistory->currentItem()->text(1));
|
|
}
|
|
|
|
void PathMapperDialog::slotPathsChanged()
|
|
{
|
|
TQString translated, from, to;
|
|
if(m_direction == ServerToLocal)
|
|
{
|
|
from = lineServerPath->text();
|
|
to = lineLocalPath->text();
|
|
}
|
|
else
|
|
{
|
|
to = lineServerPath->text();
|
|
from = lineLocalPath->text();
|
|
}
|
|
|
|
translated = m_path;
|
|
|
|
// Check if this dir is matched by the maps
|
|
if(m_path.startsWith(from, false))
|
|
{
|
|
translated.remove(0, from.length());
|
|
translated = to + translated;
|
|
}
|
|
|
|
// Indicate wether local file exists
|
|
if(m_direction == ServerToLocal)
|
|
{
|
|
if(QExtFileInfo::exists(translated, true, this))
|
|
ledTranslationExists->setColor(TQt::green);
|
|
else
|
|
ledTranslationExists->setColor(TQt::red);
|
|
ledTranslationExists->on();
|
|
}
|
|
|
|
lineTranslated->setText(translated);
|
|
}
|
|
|
|
TQString PathMapperDialog::serverPath()
|
|
{
|
|
return lineServerPath->text();
|
|
}
|
|
|
|
TQString PathMapperDialog::localPath()
|
|
{
|
|
return lineLocalPath->text();
|
|
}
|
|
|
|
#include "pathmapperdialog.moc"
|
|
|