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.
136 lines
3.8 KiB
136 lines
3.8 KiB
/* This file is part of the KDE libraries
|
|
Copyright (C) 2000 Wilco Greven <greven@kde.org>
|
|
|
|
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 <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#include <qlabel.h>
|
|
#include <qlayout.h>
|
|
#include <qstring.h>
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <kaccel.h>
|
|
#include <kfiledialog.h>
|
|
#include <kglobal.h>
|
|
#include <kiconloader.h>
|
|
#include <klineedit.h>
|
|
#include <klocale.h>
|
|
#include <krecentdocument.h>
|
|
#include <kurl.h>
|
|
#include <kurlrequester.h>
|
|
|
|
#include "kurlrequesterdlg.h"
|
|
|
|
|
|
KURLRequesterDlg::KURLRequesterDlg( const QString& urlName, QWidget *parent,
|
|
const char *name, bool modal )
|
|
: KDialogBase( Plain, QString::null, Ok|Cancel|User1, Ok, parent, name,
|
|
modal, true, KStdGuiItem::clear() )
|
|
{
|
|
initDialog(i18n( "Location:" ), urlName);
|
|
}
|
|
|
|
KURLRequesterDlg::KURLRequesterDlg( const QString& urlName, const QString& _text, QWidget *parent, const char *name, bool modal )
|
|
: KDialogBase( Plain, QString::null, Ok|Cancel|User1, Ok, parent, name,
|
|
modal, true, KStdGuiItem::clear() )
|
|
{
|
|
initDialog(_text, urlName);
|
|
}
|
|
|
|
KURLRequesterDlg::~KURLRequesterDlg()
|
|
{
|
|
}
|
|
|
|
void KURLRequesterDlg::initDialog(const QString &text,const QString &urlName)
|
|
{
|
|
QVBoxLayout * topLayout = new QVBoxLayout( plainPage(), 0,
|
|
spacingHint() );
|
|
|
|
QLabel * label = new QLabel( text , plainPage() );
|
|
topLayout->addWidget( label );
|
|
|
|
urlRequester_ = new KURLRequester( urlName, plainPage(), "urlRequester" );
|
|
urlRequester_->setMinimumWidth( urlRequester_->sizeHint().width() * 3 );
|
|
topLayout->addWidget( urlRequester_ );
|
|
urlRequester_->setFocus();
|
|
connect( urlRequester_->lineEdit(), SIGNAL(textChanged(const QString&)),
|
|
SLOT(slotTextChanged(const QString&)) );
|
|
bool state = !urlName.isEmpty();
|
|
enableButtonOK( state );
|
|
enableButton( KDialogBase::User1, state );
|
|
/*
|
|
KFile::Mode mode = static_cast<KFile::Mode>( KFile::File |
|
|
KFile::ExistingOnly );
|
|
urlRequester_->setMode( mode );
|
|
*/
|
|
connect( this, SIGNAL( user1Clicked() ), SLOT( slotClear() ) );
|
|
}
|
|
|
|
void KURLRequesterDlg::slotTextChanged(const QString & text)
|
|
{
|
|
bool state = !text.stripWhiteSpace().isEmpty();
|
|
enableButtonOK( state );
|
|
enableButton( KDialogBase::User1, state );
|
|
}
|
|
|
|
void KURLRequesterDlg::slotClear()
|
|
{
|
|
urlRequester_->clear();
|
|
}
|
|
|
|
KURL KURLRequesterDlg::selectedURL() const
|
|
{
|
|
if ( result() == QDialog::Accepted )
|
|
return KURL::fromPathOrURL( urlRequester_->url() );
|
|
else
|
|
return KURL();
|
|
}
|
|
|
|
|
|
KURL KURLRequesterDlg::getURL(const QString& dir, QWidget *parent,
|
|
const QString& caption)
|
|
{
|
|
KURLRequesterDlg dlg(dir, parent, "filedialog", true);
|
|
|
|
dlg.setCaption(caption.isNull() ? i18n("Open") : caption);
|
|
|
|
dlg.exec();
|
|
|
|
const KURL& url = dlg.selectedURL();
|
|
if (url.isValid())
|
|
KRecentDocument::add(url);
|
|
|
|
return url;
|
|
}
|
|
|
|
KFileDialog * KURLRequesterDlg::fileDialog()
|
|
{
|
|
return urlRequester_->fileDialog();
|
|
}
|
|
|
|
KURLRequester * KURLRequesterDlg::urlRequester()
|
|
{
|
|
return urlRequester_;
|
|
}
|
|
|
|
#include "kurlrequesterdlg.moc"
|
|
|
|
// vim:ts=4:sw=4:tw=78
|