diff options
Diffstat (limited to 'kitchensync/src/configguifile.cpp')
-rw-r--r-- | kitchensync/src/configguifile.cpp | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/kitchensync/src/configguifile.cpp b/kitchensync/src/configguifile.cpp deleted file mode 100644 index 22767ab83..000000000 --- a/kitchensync/src/configguifile.cpp +++ /dev/null @@ -1,81 +0,0 @@ -/* - 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 <tdelocale.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; -} |