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.
tdewebdev/quanta/project/rescanprj.cpp

250 lines
7.2 KiB

/***************************************************************************
rescanprj.cpp - description
-------------------
begin : ?
copyright : (C) 2000 by Dmitry Poplavsky & Alexander Yakovlev & Eric Laffoon <pdima@users.sourceforge.net,yshurik@penguinpowered.com,sequitur@easystreet.com>
(C) 2002, 2003 Andras Mantia <amantia@kde.org>
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
// qt includes
#include <tqlistview.h>
#include <tqpushbutton.h>
#include <tqlayout.h>
#include <tqlabel.h>
// kde includes
#include <kdebug.h>
#include <kurl.h>
#include <tdelocale.h>
#include <tdefileitem.h>
#include <tdeglobal.h>
#include <kprogress.h>
// app includes
#include "rescanprj.h"
#include "qextfileinfo.h"
#include "quantacommon.h"
#include "uploadtreefolder.h"
#include "uploadtreeview.h"
#include "resource.h"
#include "projectlist.h"
RescanPrj::RescanPrj(const ProjectList &p_prjFileList, const KURL& p_baseURL, const TQRegExp &p_excludeRx,
TQWidget *parent, const char *name, bool modal )
: RescanPrjDir(parent,name,modal)
{
setCaption(name);
listView->setColumnText(1, i18n("Add"));
baseURL = p_baseURL;
baseURL.adjustPath(1);
prjFileList = p_prjFileList;
excludeRx = p_excludeRx;
progressText->setText(i18n("Reading folder:"));
TDEIO::ListJob *job = TDEIO::listRecursive( baseURL, false );
m_listJobCount = 1;
connect( job, TQT_SIGNAL(entries(TDEIO::Job *,const TDEIO::UDSEntryList &)),
this,TQT_SLOT (addEntries(TDEIO::Job *,const TDEIO::UDSEntryList &)));
connect( job, TQT_SIGNAL(result(TDEIO::Job *)),
this,TQT_SLOT (slotListDone(TDEIO::Job *)));
connect( buttonSelect, TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotSelect()));
connect( buttonDeselect, TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotDeselect()));
connect( buttonInvert, TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotInvert()));
connect( buttonExpand, TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotExpand()));
connect( buttonCollapse, TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotCollapse()));
}
RescanPrj::~RescanPrj()
{
for (uint i = 0; i < urlList.count(); i++)
{
delete urlList[i].fileItem;
}
urlList.clear();
}
void RescanPrj::addEntries(TDEIO::Job *job,const TDEIO::UDSEntryList &list)
{
KURL url = static_cast<TDEIO::ListJob *>(job)->url();
url.adjustPath(-1);
// avoid creating these TQStrings again and again
static const TQString& dot = TDEGlobal::staticQString(".");
static const TQString& dotdot = TDEGlobal::staticQString("..");
TDEIO::UDSEntryListConstIterator it = list.begin();
TDEIO::UDSEntryListConstIterator end = list.end();
KURL itemURL;
URLListEntry urlEntry;
TQString name;
TQPtrList<KFileItem> linkItems;
linkItems.setAutoDelete(true);
for ( ; it != end; ++it )
{
KFileItem item( *it, url, false, true );
name = item.name();
if (item.isDir() && item.isLink())
{
TQString linkDest = item.linkDest();
kdDebug(24000) << "Got link: " << name << " Points to:" << linkDest << endl;
KURL u = item.url();
if (linkDest.startsWith("."))
{
u.setPath(u.directory(false, true) + linkDest);
u.cleanPath();
}
else
u.setPath(linkDest);
u.adjustPath(+1);
KURL u2 = QExtFileInfo::toRelative(u, baseURL);
bool found = false;
for (uint i = 0; i < urlList.count(); i++)
if (urlList[i].url == u2)
{
found = true;
break;
}
if (!prjFileList.contains(u) && !found)
{
linkItems.append(new KFileItem(item));
} else
{
kdDebug(24000) << "Recursive link - points to a place inside the project" << endl;
continue;
}
}
if (!name.isEmpty() && name != dot && name != dotdot && !excludeRx.exactMatch(name))
{
itemURL = item.url();
if (item.isDir())
itemURL.adjustPath(+1);
ProjectURL *proUrl = prjFileList.find(itemURL);
if (!proUrl)
{
urlEntry.url = prjFileList.toRelative(itemURL);
urlEntry.fileItem = new KFileItem(item);
urlList.append(urlEntry);
}
}
}
for (TQPtrList<KFileItem>::ConstIterator it = linkItems.constBegin(); it != linkItems.constEnd(); ++it)
{
TDEIO::ListJob *ljob = TDEIO::listRecursive( (*it)->url(), false );
m_listJobCount++;
connect( ljob, TQT_SIGNAL(entries(TDEIO::Job *,const TDEIO::UDSEntryList &)),
this,TQT_SLOT (addEntries(TDEIO::Job *,const TDEIO::UDSEntryList &)));
connect( ljob, TQT_SIGNAL(result(TDEIO::Job *)),
this,TQT_SLOT (slotListDone(TDEIO::Job *)));
}
}
void RescanPrj::resizeEvent ( TQResizeEvent *t )
{
RescanPrjDir::resizeEvent(t);
// listView->setColumnWidth(0,listView->width()-listView->columnWidth(1)-20);
// MainLayout->setGeometry(childrenRect());
}
void RescanPrj::slotSelect()
{
listView->selectAll(true);
listView->checkboxTree();
}
void RescanPrj::slotDeselect()
{
listView->selectAll(false);
listView->checkboxTree();
}
void RescanPrj::slotInvert()
{
listView->invertAll();
listView->checkboxTree();
}
void RescanPrj::slotExpand()
{
listView->expandAll();
}
void RescanPrj::slotCollapse()
{
listView->collapseAll();
}
KURL::List RescanPrj::files()
{
KURL::List r;
TQListViewItem *item;
TQListViewItemIterator it(listView);
for ( ; it.current(); ++it )
{
item = it.current();
if ( listView->isSelected( item ))
{
KURL u;
if (dynamic_cast<UploadTreeFolder*>(item))
{
u = dynamic_cast<UploadTreeFolder*>(item)->url();
} else
{
u = dynamic_cast<UploadTreeFile*>(item)->url();
}
if (!u.isEmpty())
r.append( QExtFileInfo::toAbsolute(u, baseURL) );
}
}
return r;
}
/** No descriptions */
void RescanPrj::slotListDone(TDEIO::Job *)
{
m_listJobCount--;
// kdDebug(24000) << "slotListDone " << m_listJobCount << endl;
if (m_listJobCount == 0)
{
progressText->setText(i18n("Building tree:"));
progressText->repaint();
progress->setTotalSteps(urlList.count());
progress->setValue(0);
URLListEntry urlEntry;
for (uint i = 0; i < urlList.count(); i++)
{
urlEntry = urlList[i];
listView->addItem(urlEntry.url, *(urlEntry.fileItem));
progress->advance(1);
}
progress->setTotalSteps(1);
progress->setValue(0);
progress->setTextEnabled(false);
progressText->setText(i18n("Progress:"));
slotSelect();
}
}
#include "rescanprj.moc"