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.
kpilot/conduits/docconduit/doc-setup.cpp

137 lines
5.2 KiB

/* KPilot
**
** Copyright (C) 2002 by Reinhold Kainhofer
**
** This file defines the setup dialog for the doc-conduit plugin.
*/
/*
** 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 in a file called COPYING; if not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA 02110-1301, USA.
*/
/*
** Bug reports and questions can be sent to kde-pim@kde.org
*/
#include "options.h"
#include <tqtabwidget.h>
#include <tqcheckbox.h>
#include <tqbuttongroup.h>
#include <tqcombobox.h>
#include <tdeconfig.h>
#include <kurlrequester.h>
#include <kcharsets.h>
#include "doc-setupdialog.h"
#include "doc-factory.h"
#include "doc-setup.h"
#include "docconduitSettings.h"
DOCWidgetConfig::DOCWidgetConfig(TQWidget * w, const char *n):
ConduitConfigBase(w, n),
fConfigWidget(new DOCWidget(w))
{
FUNCTIONSETUP;
fWidget=fConfigWidget;
TQStringList l = TDEGlobal::charsets()->descriptiveEncodingNames();
for ( TQStringList::Iterator it = l.begin(); it != l.end(); ++it)
{
fConfigWidget->fEncoding->insertItem(*it);
}
fConfigWidget->fTXTDir->setMode(KFile::Directory);
fConfigWidget->fPDBDir->setMode(KFile::Directory);
ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,DOCConduitFactory::about());
fConduitName=i18n("Palm DOC");
#define CMOD(a,b) connect(fConfigWidget->a,TQT_SIGNAL(b),this,TQT_SLOT(modified()))
CMOD(fTXTDir,textChanged(const TQString &));
CMOD(fPDBDir,textChanged(const TQString &));
CMOD(fkeepPDBLocally,clicked());
CMOD(fConflictResolution,clicked(int));
CMOD(fConvertBookmarks,stateChanged(int));
CMOD(fBookmarksBmk,stateChanged(int));
CMOD(fBookmarksInline,stateChanged(int));
CMOD(fBookmarksEndtags,stateChanged(int));
CMOD(fCompress,stateChanged(int));
CMOD(fSyncDirection,clicked(int));
CMOD(fNoConversionOfBmksOnly,stateChanged(int));
CMOD(fAlwaysUseResolution,stateChanged(int));
CMOD(fPCBookmarks,clicked(int));
CMOD(fEncoding,textChanged(const TQString &));
#undef CMOD
fConfigWidget->adjustSize();
}
/* virtual */ void DOCWidgetConfig::commit()
{
FUNCTIONSETUP;
DOCConduitSettings::setTXTDirectory( fConfigWidget->fTXTDir->url() );
DOCConduitSettings::setPDBDirectory( fConfigWidget->fPDBDir->url() );
DOCConduitSettings::setKeepPDBsLocally( fConfigWidget->fkeepPDBLocally->isChecked());
DOCConduitSettings::setConflictResolution( fConfigWidget->fConflictResolution->id(
fConfigWidget->fConflictResolution->selected()) );
DOCConduitSettings::setConvertBookmarks(fConfigWidget->fConvertBookmarks->isChecked());
DOCConduitSettings::setBmkFileBookmarks(fConfigWidget->fBookmarksBmk->isChecked());
DOCConduitSettings::setInlineBookmarks(fConfigWidget->fBookmarksInline->isChecked());
DOCConduitSettings::setEndtagBookmarks(fConfigWidget->fBookmarksEndtags->isChecked());
DOCConduitSettings::setCompress(fConfigWidget->fCompress->isChecked());
DOCConduitSettings::setSyncDirection(fConfigWidget->fSyncDirection->id(
fConfigWidget->fSyncDirection->selected()));
DOCConduitSettings::setIgnoreBmkChanges(fConfigWidget->fNoConversionOfBmksOnly->isChecked());
DOCConduitSettings::setAlwaysShowResolutionDialog(fConfigWidget->fAlwaysUseResolution->isChecked());
DOCConduitSettings::setBookmarksToPC( fConfigWidget->fPCBookmarks->id(
fConfigWidget->fPCBookmarks->selected()) );
DOCConduitSettings::setEncoding( fConfigWidget->fEncoding->currentText() );
DOCConduitSettings::self()->writeConfig();
unmodified();
}
/* virtual */ void DOCWidgetConfig::load()
{
FUNCTIONSETUP;
DOCConduitSettings::self()->readConfig();
fConfigWidget->fTXTDir->setURL( DOCConduitSettings::tXTDirectory() );
fConfigWidget->fPDBDir->setURL( DOCConduitSettings::pDBDirectory() );
fConfigWidget->fkeepPDBLocally->setChecked( DOCConduitSettings::keepPDBsLocally() );
fConfigWidget->fConflictResolution->setButton(DOCConduitSettings::conflictResolution() );
fConfigWidget->fConvertBookmarks->setChecked(DOCConduitSettings::convertBookmarks() );
fConfigWidget->fBookmarksBmk->setChecked(DOCConduitSettings::bmkFileBookmarks() );
fConfigWidget->fBookmarksInline->setChecked(DOCConduitSettings::inlineBookmarks() );
fConfigWidget->fBookmarksEndtags->setChecked(DOCConduitSettings::endtagBookmarks() );
fConfigWidget->fCompress->setChecked(DOCConduitSettings::compress() );
fConfigWidget->fSyncDirection->setButton(DOCConduitSettings::syncDirection() );
fConfigWidget->fNoConversionOfBmksOnly->setChecked( DOCConduitSettings::ignoreBmkChanges() );
fConfigWidget->fAlwaysUseResolution->setChecked( DOCConduitSettings::alwaysShowResolutionDialog() );
fConfigWidget->fPCBookmarks->setButton(DOCConduitSettings::bookmarksToPC() );
fConfigWidget->fEncoding->setCurrentText(DOCConduitSettings::encoding() );
unmodified();
}