|
|
|
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2002 Montel Laurent <lmontel@mandrakesoft.com>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <tdeversion.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include <tqlayout.h>
|
|
|
|
#include <tqpushbutton.h>
|
|
|
|
#include <tqlistbox.h>
|
|
|
|
#include "KoEditPath.h"
|
|
|
|
#include <keditlistbox.h>
|
|
|
|
#include <tdefiledialog.h>
|
|
|
|
#include <kurlrequester.h>
|
|
|
|
#include <tqhbox.h>
|
|
|
|
#include <klineedit.h>
|
|
|
|
#include <tqvbox.h>
|
|
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <tqlabel.h>
|
|
|
|
|
|
|
|
KoEditPathDia::KoEditPathDia( const TQString & _path, TQWidget *parent, const char *name )
|
|
|
|
: KDialogBase( parent, name , true, "", Ok|Cancel, Ok, true )
|
|
|
|
{
|
|
|
|
setCaption( i18n("Edit Path") );
|
|
|
|
TQWidget *page = new TQWidget( this );
|
|
|
|
setMainWidget(page);
|
|
|
|
TQGridLayout * grid = new TQGridLayout(page, 5, 2, KDialog::marginHint(), KDialog::spacingHint());
|
|
|
|
|
|
|
|
urlReq = new KURLRequester();
|
|
|
|
urlReq->fileDialog()->setMode(KFile::Directory | KFile::LocalOnly);
|
|
|
|
|
|
|
|
KEditListBox::CustomEditor tmp(urlReq, urlReq->lineEdit());
|
|
|
|
|
|
|
|
m_listpath = new KEditListBox( i18n("Expression Path"),
|
|
|
|
tmp,page, "list_editor" , false, KEditListBox::Add|KEditListBox::Remove );
|
|
|
|
|
|
|
|
grid->addMultiCellWidget(m_listpath, 0, 4, 0, 0);
|
|
|
|
m_listpath->listBox()->insertStringList(TQStringList::split(TQString(";"), _path));
|
|
|
|
setFocus();
|
|
|
|
resize( 500, 300);
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString KoEditPathDia::newPath()const
|
|
|
|
{
|
|
|
|
TQString tmp;
|
|
|
|
for (int i = 0; i <(int)m_listpath->listBox()->count(); i++)
|
|
|
|
{
|
|
|
|
if ( i!=0)
|
|
|
|
tmp +=";";
|
|
|
|
tmp += m_listpath->listBox()->text( i );
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KoChangePathDia::KoChangePathDia( const TQString & _path, TQWidget *parent, const char *name )
|
|
|
|
: KDialogBase( parent, name , true, "", Ok|Cancel, Ok, true )
|
|
|
|
{
|
|
|
|
setCaption( i18n("Edit Path") );
|
|
|
|
|
|
|
|
TQVBox *page =makeVBoxMainWidget();
|
|
|
|
new TQLabel( i18n("Location:"), page);
|
|
|
|
m_urlReq = new KURLRequester(page);
|
|
|
|
m_urlReq->setMinimumWidth( m_urlReq->sizeHint().width() * 3 );
|
|
|
|
|
|
|
|
m_urlReq->lineEdit()->setText( _path );
|
|
|
|
m_urlReq->fileDialog()->setMode(KFile::Directory | KFile::LocalOnly);
|
|
|
|
m_defaultPath = new TQCheckBox( i18n("Default path"), page );
|
|
|
|
connect( m_defaultPath, TQT_SIGNAL(toggled ( bool )), this, TQT_SLOT( slotChangeDefaultValue( bool )));
|
|
|
|
slotChangeDefaultValue( _path.isEmpty() );
|
|
|
|
m_defaultPath->setChecked( _path.isEmpty() );
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString KoChangePathDia::newPath() const
|
|
|
|
{
|
|
|
|
return m_defaultPath->isChecked() ? TQString() : m_urlReq->lineEdit()->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KoChangePathDia::slotChangeDefaultValue( bool _b)
|
|
|
|
{
|
|
|
|
m_urlReq->setEnabled( !_b);
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "KoEditPath.moc"
|