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.
81 lines
3.4 KiB
81 lines
3.4 KiB
/***************************************************************************
|
|
* Copyright (C) 2007 by Andreas Pakulat *
|
|
* apaku@gmx.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "custommanagerwidget.h"
|
|
|
|
#include <tqstringlist.h>
|
|
#include <tqlayout.h>
|
|
#include <tqlistbox.h>
|
|
#include <tqwhatsthis.h>
|
|
#include <tqtooltip.h>
|
|
|
|
#include <ktextedit.h>
|
|
#include <kurlrequester.h>
|
|
#include <kurlcompletion.h>
|
|
#include <tdefiledialog.h>
|
|
#include <keditlistbox.h>
|
|
#include <tdelocale.h>
|
|
#include <kdebug.h>
|
|
|
|
#include "customprojectpart.h"
|
|
#include "domutil.h"
|
|
|
|
CustomManagerWidget::CustomManagerWidget( CustomProjectPart* part, TQWidget* parent )
|
|
: CustomManagerWidgetBase( parent ), m_part( part), m_dom( *part->projectDom() )
|
|
{
|
|
m_filetypes->insertStringList( DomUtil::readListEntry( m_dom, "kdevcustomproject/filetypes", "filetype" ) );
|
|
KURLRequester* urlselector = new KURLRequester( );
|
|
urlselector->setMode( KFile::File | KFile::ExistingOnly | KFile::LocalOnly );
|
|
urlselector->setURL( TQString() );
|
|
urlselector->completionObject() ->setDir( part->projectDirectory() );
|
|
urlselector->fileDialog() ->setURL( KURL( part->projectDirectory() ) );
|
|
m_blacklistBox = new KEditListBox( i18n("blacklisted files and directories are not"
|
|
" considered part of the project, even if they fit one of "
|
|
"the wildcard patterns in the project file list",
|
|
"Blacklisted files/dirs"), urlselector->customEditor(), this);
|
|
m_blacklistBox->setButtons( KEditListBox::Add | KEditListBox::Remove );
|
|
m_blacklistBox->insertStringList( DomUtil::readListEntry( m_dom, "kdevcustomproject/blacklist","path") );
|
|
grid->addWidget( m_blacklistBox, 0, 1 );
|
|
connect(m_blacklistBox, TQT_SIGNAL(added(const TQString&)), this, TQT_SLOT(checkUrl(const TQString&)));
|
|
}
|
|
|
|
void CustomManagerWidget::checkUrl(const TQString& url)
|
|
{
|
|
kdDebug(9025) << "got file:" << url << endl;
|
|
if( !TQFileInfo(url).isRelative() )
|
|
{
|
|
kdDebug(9025) << "seems to be non-relative" << endl;
|
|
TQString relpath = m_part->relativeToProject( url );
|
|
TQListBoxItem* item = m_blacklistBox->listBox()->findItem( url );
|
|
m_blacklistBox->listBox()->takeItem( item );
|
|
kdDebug(9025) << "relative path:" << relpath << endl;
|
|
if( !relpath.isEmpty() )
|
|
m_blacklistBox->insertItem( relpath );
|
|
}
|
|
}
|
|
|
|
CustomManagerWidget::~CustomManagerWidget()
|
|
{
|
|
}
|
|
|
|
void CustomManagerWidget::accept()
|
|
{
|
|
DomUtil::writeListEntry( m_dom, "kdevcustomproject/filetypes", "filetype",
|
|
m_filetypes->items() );
|
|
DomUtil::writeListEntry( m_dom, "kdevcustomproject/blacklist", "path",
|
|
m_blacklistBox->items() );
|
|
}
|
|
|
|
|
|
#include "custommanagerwidget.moc"
|
|
|
|
// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on
|