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.
tdewebdev/quanta/parts/kafka/kafkasyncoptions.cpp

86 lines
2.9 KiB

/***************************************************************************
kafkasyncoptions.cpp
-------------------
copyright : (C) 2003 - Nicolas Deschildre
email : ndeschildre@tdewebdev.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. *
* *
***************************************************************************/
#include <tqradiobutton.h>
#include <tqcheckbox.h>
#include <tqspinbox.h>
#include <kconfig.h>
#include <kdebug.h>
#include "kafkasyncoptions.h"
#include "kafkasyncoptions.moc"
KafkaSyncOptions::KafkaSyncOptions( KConfig *a_config, TQWidget* parent, const char* name )
: KafkaSyncOptionsUI( parent, name )
{
config = a_config;
config->setGroup("HTML Enhancer");
bool showIcons = config->readBoolEntry("Show Scripts Icons", true);
config->setGroup("Kafka Synchronization options");
TQString sourceRefresh = config->readEntry("Source refresh", "delay");
int sourceRefreshDelay = config->readNumEntry("Source refresh delay", 500);
TQString kafkaRefresh = config->readEntry("Kafka refresh", "focus");
int kafkaRefreshDelay = config->readNumEntry("Kafka refresh delay", 4000);
if ( !name )
setName( "kafkaSyncOptions" );
showScriptsIcon->setChecked(showIcons);
if(sourceRefresh == "focus")
sourceFocusRefresh->setChecked(true);
else if(sourceRefresh == "delay")
sourceDelayRefresh->setChecked(true);
sourceDelay->setValue(sourceRefreshDelay);
if(kafkaRefresh == "focus")
kafkaFocusRefresh->setChecked(true);
else if(kafkaRefresh == "delay")
kafkaDelayRefresh->setChecked(true);
kafkaDelay->setValue(kafkaRefreshDelay);
}
KafkaSyncOptions::~KafkaSyncOptions()
{
}
void KafkaSyncOptions::updateConfig()
{
config->setGroup("HTML Enhancer");
config->writeEntry("Show Scripts Icons", showScriptsIcon->isChecked());
config->setGroup("Kafka Synchronization options");
if(sourceFocusRefresh->isChecked())
config->writeEntry("Source refresh", "focus");
else if(sourceDelayRefresh->isChecked())
config->writeEntry("Source refresh", "delay");
config->writeEntry("Source refresh delay", sourceDelay->value());
if(kafkaFocusRefresh->isChecked())
config->writeEntry("Kafka refresh", "focus");
else if(kafkaDelayRefresh->isChecked())
config->writeEntry("Kafka refresh", "delay");
config->writeEntry("Kafka refresh delay", kafkaDelay->value());
}