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.
201 lines
6.7 KiB
201 lines
6.7 KiB
15 years ago
|
/*
|
||
|
This file is part of KitchenSync.
|
||
|
|
||
|
Copyright (c) 2005 Tobias Koenig <tokoe@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 <kcombobox.h>
|
||
|
#include <kdialog.h>
|
||
|
#include <klineedit.h>
|
||
|
#include <klocale.h>
|
||
|
|
||
|
#include <qbuttongroup.h>
|
||
|
#include <qcheckbox.h>
|
||
|
#include <qdom.h>
|
||
|
#include <qlabel.h>
|
||
|
#include <qlayout.h>
|
||
|
#include <qradiobutton.h>
|
||
|
#include <qspinbox.h>
|
||
|
#include <qtabwidget.h>
|
||
|
|
||
|
#include "configguipalm.h"
|
||
|
|
||
|
ConfigGuiPalm::ConfigGuiPalm( const QSync::Member &member, QWidget *parent )
|
||
|
: ConfigGui( member, parent )
|
||
|
{
|
||
|
initGUI();
|
||
|
|
||
|
mDevice->insertItem( "/dev/pilot" );
|
||
|
mDevice->insertItem( "/dev/ttyUSB0" );
|
||
|
mDevice->insertItem( "/dev/ttyUSB1" );
|
||
|
mDevice->insertItem( "/dev/ttyUSB2" );
|
||
|
mDevice->insertItem( "/dev/ttyUSB3" );
|
||
|
|
||
|
mSpeed->insertItem( "9600" );
|
||
|
mSpeed->insertItem( "19200" );
|
||
|
mSpeed->insertItem( "38400" );
|
||
|
mSpeed->insertItem( "57600" );
|
||
|
mSpeed->insertItem( "115200" );
|
||
|
}
|
||
|
|
||
|
void ConfigGuiPalm::load( const QString &xml )
|
||
|
{
|
||
|
QDomDocument doc;
|
||
|
doc.setContent( xml );
|
||
|
QDomElement docElement = doc.documentElement();
|
||
|
QDomNode node;
|
||
|
for( node = docElement.firstChild(); !node.isNull(); node = node.nextSibling() ) {
|
||
|
QDomElement element = node.toElement();
|
||
|
if ( element.tagName() == "sockaddr" ) {
|
||
|
mDevice->setCurrentText( element.text() );
|
||
|
} else if ( element.tagName() == "speed" ) {
|
||
|
mSpeed->setCurrentText( element.text() );
|
||
|
} else if ( element.tagName() == "timeout" ) {
|
||
|
mTimeout->setValue( element.text().toInt() );
|
||
|
} else if ( element.tagName() == "username" ) {
|
||
|
mUserName->setText( element.text() );
|
||
|
} else if ( element.tagName() == "mismatch" ) {
|
||
|
switch ( element.text().toInt() ) {
|
||
|
case 0:
|
||
|
mSyncAlways->setChecked( true );
|
||
|
break;
|
||
|
case 2:
|
||
|
mSyncAbort->setChecked( true );
|
||
|
break;
|
||
|
case 1:
|
||
|
default:
|
||
|
mSyncAsk->setChecked( true );
|
||
|
break;
|
||
|
}
|
||
|
} else if ( element.tagName() == "popup" ) {
|
||
|
mPopup->setChecked( element.text() == "1" );
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
QString ConfigGuiPalm::save() const
|
||
|
{
|
||
|
QString config = "<config>";
|
||
|
|
||
|
config += "<sockaddr>" + mDevice->currentText() + "</sockaddr>";
|
||
|
config += "<username>" + mUserName->text() + "</username>";
|
||
|
config += "<timeout>" + QString::number( mTimeout->value() ) + "</timeout>";
|
||
|
config += "<type>0</type>";
|
||
|
config += "<speed>" + mSpeed->currentText() + "</speed>";
|
||
|
config += "<id>0</id>";
|
||
|
config += "<codepage>cp1252</codepage>";
|
||
|
config += "<popup>" + QString( mPopup->isChecked() ? "1" : "0" ) + "</popup>";
|
||
|
|
||
|
QString popup;
|
||
|
if ( mSyncAlways->isChecked() )
|
||
|
popup = "0";
|
||
|
else if ( mSyncAsk->isChecked() )
|
||
|
popup = "1";
|
||
|
else if ( mSyncAbort->isChecked() )
|
||
|
popup = "2";
|
||
|
|
||
|
config += "<mismatch>" + popup + "</mismatch>";
|
||
|
|
||
|
config += "</config>";
|
||
|
|
||
|
return config;
|
||
|
}
|
||
|
|
||
|
void ConfigGuiPalm::initGUI()
|
||
|
{
|
||
|
QFont boldFont = font();
|
||
|
boldFont.setBold( true );
|
||
|
|
||
|
QTabWidget *tabWidget = new QTabWidget( this );
|
||
|
|
||
|
QWidget *connectionWidget = new QWidget( tabWidget );
|
||
|
QVBoxLayout *connectionLayout = new QVBoxLayout( connectionWidget,
|
||
|
KDialog::marginHint(), KDialog::spacingHint() );
|
||
|
|
||
|
QLabel *label = new QLabel( i18n( "Connection" ), connectionWidget );
|
||
|
label->setFont( boldFont );
|
||
|
connectionLayout->addWidget( label );
|
||
|
|
||
|
QGridLayout *gridLayout = new QGridLayout( connectionLayout, 3, 2, KDialog::spacingHint() );
|
||
|
gridLayout->setMargin( KDialog::marginHint() );
|
||
|
|
||
|
gridLayout->addWidget( new QLabel( i18n( "Port:" ), connectionWidget ), 0, 0 );
|
||
|
gridLayout->addWidget( new QLabel( i18n( "Speed:" ), connectionWidget ), 1, 0 );
|
||
|
gridLayout->addWidget( new QLabel( i18n( "Timeout:" ), connectionWidget ), 2, 0 );
|
||
|
|
||
|
mDevice = new KComboBox( true, connectionWidget );
|
||
|
mSpeed = new KComboBox( connectionWidget );
|
||
|
mTimeout = new QSpinBox( 1, 60, 1, connectionWidget );
|
||
|
mTimeout->setSuffix( i18n( " sec" ) );
|
||
|
|
||
|
gridLayout->addWidget( mDevice, 0, 1 );
|
||
|
gridLayout->addWidget( mSpeed, 1, 1 );
|
||
|
gridLayout->addWidget( mTimeout, 2, 1 );
|
||
|
gridLayout->setColStretch( 1, 1 );
|
||
|
|
||
|
label = new QLabel( i18n( "User" ), connectionWidget );
|
||
|
label->setFont( boldFont );
|
||
|
connectionLayout->addWidget( label );
|
||
|
|
||
|
gridLayout = new QGridLayout( connectionLayout, 1, 2, KDialog::spacingHint() );
|
||
|
gridLayout->setMargin( KDialog::marginHint() );
|
||
|
|
||
|
gridLayout->addWidget( new QLabel( i18n( "Username:" ), connectionWidget ), 0, 0 );
|
||
|
|
||
|
mUserName = new KLineEdit( connectionWidget );
|
||
|
gridLayout->addWidget( mUserName, 0, 1 );
|
||
|
|
||
|
label = new QLabel( i18n( "What to do if Username does not match" ), connectionWidget );
|
||
|
label->setFont( boldFont );
|
||
|
connectionLayout->addWidget( label );
|
||
|
|
||
|
gridLayout = new QGridLayout( connectionLayout, 1, 2, KDialog::spacingHint() );
|
||
|
gridLayout->setMargin( KDialog::marginHint() );
|
||
|
|
||
|
QButtonGroup *buttonGroup = new QButtonGroup( 1, Qt::Horizontal, connectionWidget );
|
||
|
buttonGroup->setExclusive( true );
|
||
|
buttonGroup->setFrameStyle( QFrame::NoFrame );
|
||
|
mSyncAlways = new QRadioButton( i18n( "Sync Anyway" ), buttonGroup );
|
||
|
mSyncAsk = new QRadioButton( i18n( "Ask What To Do" ), buttonGroup );
|
||
|
mSyncAbort = new QRadioButton( i18n( "Abort Sync" ), buttonGroup );
|
||
|
|
||
|
gridLayout->addMultiCellWidget( buttonGroup, 0, 0, 0, 1 );
|
||
|
|
||
|
connectionLayout->addStretch( 1 );
|
||
|
tabWidget->addTab( connectionWidget, i18n( "Connection" ) );
|
||
|
|
||
|
QWidget *optionWidget = new QWidget( tabWidget );
|
||
|
QVBoxLayout *optionLayout = new QVBoxLayout( optionWidget,
|
||
|
KDialog::marginHint(), KDialog::spacingHint() );
|
||
|
|
||
|
label = new QLabel( i18n( "Hotsync Notification" ), optionWidget );
|
||
|
label->setFont( boldFont );
|
||
|
optionLayout->addWidget( label );
|
||
|
|
||
|
gridLayout = new QGridLayout( optionLayout, 1, 2, KDialog::spacingHint() );
|
||
|
gridLayout->setMargin( KDialog::marginHint() );
|
||
|
|
||
|
mPopup = new QCheckBox( i18n( "Popup when interaction is required" ), optionWidget );
|
||
|
gridLayout->addMultiCellWidget( mPopup, 0, 0, 0, 1 );
|
||
|
|
||
|
optionLayout->addStretch( 1 );
|
||
|
tabWidget->addTab( optionWidget, i18n( "Options" ) );
|
||
|
|
||
|
topLayout()->addWidget( tabWidget );
|
||
|
}
|