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.
82 lines
2.4 KiB
82 lines
2.4 KiB
/*
|
|
This file is part of KitchenSync.
|
|
|
|
Copyright (c) 2005 Cornelius Schumacher <schumacher@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.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
USA.
|
|
*/
|
|
|
|
#include "configguifile.h"
|
|
|
|
#include <kurlrequester.h>
|
|
#include <klocale.h>
|
|
#include <kdialog.h>
|
|
|
|
#include <tqlayout.h>
|
|
#include <tqcheckbox.h>
|
|
#include <tqlabel.h>
|
|
#include <tqdom.h>
|
|
|
|
ConfigGuiFile::ConfigGuiFile( const QSync::Member &member, TQWidget *parent )
|
|
: ConfigGui( member, parent )
|
|
{
|
|
TQBoxLayout *filenameLayout = new TQHBoxLayout( topLayout() );
|
|
|
|
TQLabel *label = new TQLabel( i18n("Directory name:"), this );
|
|
filenameLayout->addWidget( label );
|
|
|
|
mFilename = new KURLRequester( this );
|
|
mFilename->setMode( KFile::Directory | KFile::LocalOnly );
|
|
filenameLayout->addWidget( mFilename );
|
|
|
|
TQBoxLayout *recursiveLayout = new TQHBoxLayout( topLayout() );
|
|
|
|
mRecursive = new TQCheckBox( i18n("Sync all subdirectories"), this );
|
|
recursiveLayout->addWidget( mRecursive );
|
|
|
|
topLayout()->addStretch( 1 );
|
|
}
|
|
|
|
void ConfigGuiFile::load( const TQString &xml )
|
|
{
|
|
TQDomDocument doc;
|
|
doc.setContent( xml );
|
|
TQDomElement docElement = doc.documentElement();
|
|
TQDomNode n;
|
|
for( n = docElement.firstChild(); !n.isNull(); n = n.nextSibling() ) {
|
|
TQDomElement e = n.toElement();
|
|
if ( e.tagName() == "path" ) {
|
|
mFilename->setURL( e.text() );
|
|
} else if ( e.tagName() == "recursive" ) {
|
|
mRecursive->setChecked( e.text() == "TRUE" );
|
|
}
|
|
}
|
|
}
|
|
|
|
TQString ConfigGuiFile::save() const
|
|
{
|
|
TQString xml;
|
|
xml = "<config>";
|
|
xml += "<path>" + mFilename->url() + "</path>";
|
|
xml += "<recursive>";
|
|
if ( mRecursive->isChecked() ) xml += "TRUE";
|
|
else xml += "FALSE";
|
|
xml += "</recursive>";
|
|
xml += "</config>";
|
|
|
|
return xml;
|
|
}
|