Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent b1b005cf85
commit 159f7e147a

@ -944,7 +944,7 @@ static int filterRandom( int n )
void KEuphoriaScreenSaver::readSettings() void KEuphoriaScreenSaver::readSettings()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
_mode = config->readNumEntry( "Mode", EuphoriaWidget::Regular ); _mode = config->readNumEntry( "Mode", EuphoriaWidget::Regular );
@ -1047,7 +1047,7 @@ void KEuphoriaSetup::slotHelp()
*/ */
void KEuphoriaSetup::slotOk() void KEuphoriaSetup::slotOk()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
TQString val; TQString val;

@ -828,7 +828,7 @@ static int filterRandom( int n )
void KFluxScreenSaver::readSettings() void KFluxScreenSaver::readSettings()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
_mode = config->readNumEntry( "Mode", FluxWidget::Regular ); _mode = config->readNumEntry( "Mode", FluxWidget::Regular );
@ -928,7 +928,7 @@ void KFluxSetup::slotHelp()
*/ */
void KFluxSetup::slotOk() void KFluxSetup::slotOk()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
TQString val; TQString val;

@ -642,7 +642,7 @@ static int filterRandom( int n )
void KSWindsScreenSaver::readSettings() void KSWindsScreenSaver::readSettings()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
_mode = config->readNumEntry( "Mode", SWindsWidget::Regular ); _mode = config->readNumEntry( "Mode", SWindsWidget::Regular );
@ -740,7 +740,7 @@ void KSWindsSetup::slotHelp()
*/ */
void KSWindsSetup::slotOk() void KSWindsSetup::slotOk()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
TQString val; TQString val;

@ -166,7 +166,7 @@ KBannerSetup::KBannerSetup( TQWidget *parent, const char *name )
// read settings from config file // read settings from config file
void KBannerSetup::readSettings() void KBannerSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed=config->readNumEntry("Speed",50); speed=config->readNumEntry("Speed",50);
@ -308,7 +308,7 @@ void KBannerSetup::slotTimeToggled( bool on )
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KBannerSetup::slotOk() void KBannerSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
config->writeEntry( "Speed", speed ); config->writeEntry( "Speed", speed );
@ -415,7 +415,7 @@ void KBannerSaver::setTimeDisplay()
// read settings from config file // read settings from config file
void KBannerSaver::readSettings() void KBannerSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
setSpeed( config->readNumEntry("Speed",50) ); setSpeed( config->readNumEntry("Speed",50) );

@ -412,7 +412,7 @@ void KBlobSaver::blank()
void KBlobSaver::readSettings() void KBlobSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
// number of seconds to spend on a frame // number of seconds to spend on a frame
@ -491,7 +491,7 @@ KBlobSetup::KBlobSetup
void KBlobSetup::readSettings() void KBlobSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
// number of seconds to spend on a frame // number of seconds to spend on a frame
@ -504,7 +504,7 @@ void KBlobSetup::readSettings()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KBlobSetup::slotOk() void KBlobSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");

@ -1001,7 +1001,7 @@ void KFireSaver :: freeTexture( unsigned int & textureID )
void KFireSaver :: readConfig () void KFireSaver :: readConfig ()
{ {
KConfig config("kfiresaverrc",true,false); TDEConfig config("kfiresaverrc",true,false);
// show // show
config.setGroup( "Show" ); config.setGroup( "Show" );

@ -58,7 +58,7 @@ void KFireSaverSetup::updatePreview()
void KFireSaverSetup::writeConfig() void KFireSaverSetup::writeConfig()
{ {
KConfig config("kfiresaverrc",false,false); TDEConfig config("kfiresaverrc",false,false);
// show // show
config.setGroup( "Show" ); config.setGroup( "Show" );
@ -129,7 +129,7 @@ void KFireSaverSetup::writeConfig()
void KFireSaverSetup::readConfig() void KFireSaverSetup::readConfig()
{ {
KConfig config("kfiresaverrc",true,false); TDEConfig config("kfiresaverrc",true,false);
// show // show
config.setGroup( "Show" ); config.setGroup( "Show" );

@ -4,7 +4,7 @@
// //
// Copyright (c) Ian Reinhart Geiser 2001 // Copyright (c) Ian Reinhart Geiser 2001
// //
// KConfig code and KScreenSaver "Setup..." improvements by // TDEConfig code and KScreenSaver "Setup..." improvements by
// Nick Betcher <nbetcher@usinternet.com> 2001 // Nick Betcher <nbetcher@usinternet.com> 2001
// //
#include <stdlib.h> #include <stdlib.h>
@ -96,7 +96,7 @@ KFountainSetup::KFountainSetup( TQWidget *parent, const char *name )
// read settings from config file // read settings from config file
void KFountainSetup::readSettings() void KFountainSetup::readSettings()
{ {
KConfig config("kssfountainrc", false, false); TDEConfig config("kssfountainrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
TQString boolval = config.readEntry( "Stars", "false" ); TQString boolval = config.readEntry( "Stars", "false" );
@ -119,7 +119,7 @@ void KFountainSetup::readSettings()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KFountainSetup::slotOkPressed() void KFountainSetup::slotOkPressed()
{ {
KConfig config("kssfountainrc", false, false); TDEConfig config("kssfountainrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
if (RadioButton1->isOn() == true) if (RadioButton1->isOn() == true)
@ -141,7 +141,7 @@ void KFountainSetup::slotOkPressed()
void KFountainSetup::aboutPressed() void KFountainSetup::aboutPressed()
{ {
KMessageBox::about(this, KMessageBox::about(this,
i18n("<h3>Particle Fountain</h3>\n<p>Particle Fountain Screen Saver for TDE</p>\nCopyright (c) Ian Reinhart Geiser 2001<br>\n\n<p>KConfig code and KScreenSaver \"Setup...\" improvements by Nick Betcher <nbetcher@usinternet.com> 2001</p>")); i18n("<h3>Particle Fountain</h3>\n<p>Particle Fountain Screen Saver for TDE</p>\nCopyright (c) Ian Reinhart Geiser 2001<br>\n\n<p>TDEConfig code and KScreenSaver \"Setup...\" improvements by Nick Betcher <nbetcher@usinternet.com> 2001</p>"));
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -191,7 +191,7 @@ Fountain::Fountain( TQWidget * parent, const char * name) : TQGLWidget (parent,n
obj = gluNewQuadric(); obj = gluNewQuadric();
// This has to be here because you can't update the fountain until 'fountain' is created! // This has to be here because you can't update the fountain until 'fountain' is created!
KConfig config("kssfountainrc", false, false); TDEConfig config("kssfountainrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
TQString boolval = config.readEntry( "Stars", "false" ); TQString boolval = config.readEntry( "Stars", "false" );
if (boolval == "true") { if (boolval == "true") {

@ -4,7 +4,7 @@
// //
// Copyright (c) Ian Reinhart Geiser 2001 // Copyright (c) Ian Reinhart Geiser 2001
// //
// KConfig code and KScreenSaver "Setup..." improvements by // TDEConfig code and KScreenSaver "Setup..." improvements by
// Nick Betcher <nbetcher@usinternet.com> 2001 // Nick Betcher <nbetcher@usinternet.com> 2001
// //
#include <stdlib.h> #include <stdlib.h>
@ -82,7 +82,7 @@ KGravitySetup::~KGravitySetup()
// read settings from config file // read settings from config file
void KGravitySetup::readSettings() void KGravitySetup::readSettings()
{ {
KConfig config("kssgravityrc", false, false); TDEConfig config("kssgravityrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
TQString boolval = config.readEntry( "Stars", "false" ); TQString boolval = config.readEntry( "Stars", "false" );
@ -105,7 +105,7 @@ void KGravitySetup::readSettings()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KGravitySetup::slotOkPressed() void KGravitySetup::slotOkPressed()
{ {
KConfig config("kssgravityrc", false, false); TDEConfig config("kssgravityrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
if (RadioButton1->isOn() == true) if (RadioButton1->isOn() == true)
@ -127,7 +127,7 @@ void KGravitySetup::slotOkPressed()
void KGravitySetup::aboutPressed() void KGravitySetup::aboutPressed()
{ {
KMessageBox::about(this, KMessageBox::about(this,
i18n("<h3>Gravity</h3>\n<p>Particle Gravity Screen Saver for TDE</p>\nCopyright (c) Ian Reinhart Geiser 2001<br>\n\n<p>KConfig code and KScreenSaver \"Setup...\" improvements by Nick Betcher <nbetcher@usinternet.com> 2001</p>")); i18n("<h3>Gravity</h3>\n<p>Particle Gravity Screen Saver for TDE</p>\nCopyright (c) Ian Reinhart Geiser 2001<br>\n\n<p>TDEConfig code and KScreenSaver \"Setup...\" improvements by Nick Betcher <nbetcher@usinternet.com> 2001</p>"));
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -179,7 +179,7 @@ Gravity::Gravity( TQWidget * parent, const char * name) : TQGLWidget (parent,nam
// obj = gluNewQuadric(); // obj = gluNewQuadric();
// This has to be here because you can't update the gravity until 'gravity' is created! // This has to be here because you can't update the gravity until 'gravity' is created!
KConfig config("kssgravityrc", false, false); TDEConfig config("kssgravityrc", false, false);
config.setGroup( "Settings" ); config.setGroup( "Settings" );
TQString boolval = config.readEntry( "Stars", "false" ); TQString boolval = config.readEntry( "Stars", "false" );
if (boolval == "true") { if (boolval == "true") {

@ -174,7 +174,7 @@ KClockSetup::~KClockSetup()
void KClockSetup::readSettings() void KClockSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
m_keepCentered = config->readBoolEntry("KeepCentered", DEFAULT_KEEP_CENTERED); m_keepCentered = config->readBoolEntry("KeepCentered", DEFAULT_KEEP_CENTERED);
@ -206,7 +206,7 @@ void KClockSetup::readSettings()
void KClockSetup::slotOk() void KClockSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
config->writeEntry("Size", m_size); config->writeEntry("Size", m_size);
config->writeEntry("KeepCentered", m_keepCentered); config->writeEntry("KeepCentered", m_keepCentered);
@ -488,7 +488,7 @@ void KClockSaver::setKeepCentered(bool b)
void KClockSaver::readSettings() void KClockSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
m_keepCentered = config->readBoolEntry("KeepCentered", DEFAULT_KEEP_CENTERED); m_keepCentered = config->readBoolEntry("KeepCentered", DEFAULT_KEEP_CENTERED);

@ -226,7 +226,7 @@ void kVmSaver::setRefreshTimeout( const int refreshTimeout )
void kVmSaver::readSettings() void kVmSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", 50 ); speed = config->readNumEntry( "Speed", 50 );
@ -329,7 +329,7 @@ kVmSetup::~kVmSetup()
void kVmSetup::readSettings() void kVmSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", 50 ); speed = config->readNumEntry( "Speed", 50 );
@ -359,7 +359,7 @@ void kVmSetup::slotRefreshTimeout( int num )
void kVmSetup::slotOk() void kVmSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString sspeed; TQString sspeed;

@ -186,7 +186,7 @@ kLinesSetup::~kLinesSetup()
// read settings from config file // read settings from config file
void kLinesSetup::readSettings(){ void kLinesSetup::readSettings(){
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString str; TQString str;
@ -244,7 +244,7 @@ void kLinesSetup::slotHelp(){
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void kLinesSetup::slotOk(){ void kLinesSetup::slotOk(){
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
TQString slength; TQString slength;
@ -319,7 +319,7 @@ void kLinesSaver::setColor(const TQColor& cs, const TQColor& cm, const TQColor&
// read configuration settings from config file // read configuration settings from config file
void kLinesSaver::readSettings(){ void kLinesSaver::readSettings(){
KConfig *config=TDEGlobal::config(); TDEConfig *config=TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
numLines=config->readNumEntry("Length", 10); numLines=config->readNumEntry("Length", 10);

@ -155,7 +155,7 @@ KLorenzSetup::~KLorenzSetup()
// read settings from config file // read settings from config file
void KLorenzSetup::readSettings() void KLorenzSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", DEFSPEED ); speed = config->readNumEntry( "Speed", DEFSPEED );
@ -223,7 +223,7 @@ void KLorenzSetup::slotHelp()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KLorenzSetup::slotOk() void KLorenzSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
config->writeEntry( "Speed", speed ); config->writeEntry( "Speed", speed );
@ -265,7 +265,7 @@ void KLorenzSetup::slotDefault()
/* // User can cancel, or save defaults? /* // User can cancel, or save defaults?
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
config->writeEntry( "Speed", speed ); config->writeEntry( "Speed", speed );
@ -461,7 +461,7 @@ KLorenzSaver::~KLorenzSaver()
// read configuration settings from config file // read configuration settings from config file
void KLorenzSaver::readSettings() void KLorenzSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", DEFSPEED ); speed = config->readNumEntry( "Speed", DEFSPEED );

@ -392,7 +392,7 @@ KPendulumSaver::~KPendulumSaver()
void KPendulumSaver::readSettings() void KPendulumSaver::readSettings()
{ {
// read configuration settings from config file // read configuration settings from config file
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
// internal saver parameters are set to stored values or left at their // internal saver parameters are set to stored values or left at their
@ -766,7 +766,7 @@ KPendulumSetup::~KPendulumSetup()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KPendulumSetup::okButtonClickedSlot() void KPendulumSetup::okButtonClickedSlot()
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
config->writeEntry("mass ratio", saver->massRatio()); config->writeEntry("mass ratio", saver->massRatio());

@ -113,7 +113,7 @@ kPolygonSetup::~kPolygonSetup()
// read settings from config file // read settings from config file
void kPolygonSetup::readSettings() void kPolygonSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
length = config->readNumEntry( "Length", length ); length = config->readNumEntry( "Length", length );
@ -159,7 +159,7 @@ void kPolygonSetup::slotSpeed( int num )
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void kPolygonSetup::slotOk() void kPolygonSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString slength; TQString slength;
@ -241,7 +241,7 @@ void kPolygonSaver::setSpeed( int spd )
// read configuration settings from config file // read configuration settings from config file
void kPolygonSaver::readSettings() void kPolygonSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
numLines = config->readNumEntry( "Length", 10 ); numLines = config->readNumEntry( "Length", 10 );

@ -558,7 +558,7 @@ void KRotationSaver::initData()
void KRotationSaver::readSettings() void KRotationSaver::readSettings()
{ {
// read configuration settings from config file // read configuration settings from config file
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
// internal saver parameters are set to stored values or left at their // internal saver parameters are set to stored values or left at their
@ -764,7 +764,7 @@ KRotationSetup::~KRotationSetup()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KRotationSetup::okButtonClickedSlot(void) void KRotationSetup::okButtonClickedSlot(void)
{ {
KConfig* config = TDEGlobal::config(); TDEConfig* config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
config->writeEntry("x trace", saver->traceFlag(0)); config->writeEntry("x trace", saver->traceFlag(0));
config->writeEntry("y trace", saver->traceFlag(1)); config->writeEntry("y trace", saver->traceFlag(1));

@ -560,7 +560,7 @@ void KScienceSaver::setHideBG( bool b )
void KScienceSaver::readSettings() void KScienceSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
TQString sMode; TQString sMode;
config->setGroup( "Settings" ); config->setGroup( "Settings" );
@ -1008,7 +1008,7 @@ void KScienceSetup::updateSettings()
// read settings from config file // read settings from config file
void KScienceSetup::readSettings() void KScienceSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
TQString sMode; TQString sMode;
config->setGroup( "Settings" ); config->setGroup( "Settings" );
@ -1118,7 +1118,7 @@ void KScienceSetup::slotSliderReleased()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KScienceSetup::slotOk() void KScienceSetup::slotOk()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
TQString sSize, sSpeed, sIntensity, sMode; TQString sSize, sSpeed, sIntensity, sMode;
config->setGroup( "Settings" ); config->setGroup( "Settings" );

@ -139,7 +139,7 @@ void kSlideShowSaver::initNextScreen()
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void kSlideShowSaver::readConfig() void kSlideShowSaver::readConfig()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
mShowRandom = config->readBoolEntry("ShowRandom", true); mShowRandom = config->readBoolEntry("ShowRandom", true);
mZoomImages = config->readBoolEntry("ZoomImages", false); mZoomImages = config->readBoolEntry("ZoomImages", false);
@ -955,7 +955,7 @@ kSlideShowSetup::~kSlideShowSetup()
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void kSlideShowSetup::readSettings() void kSlideShowSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
cfg->mCbxRandom->setChecked(config->readBoolEntry("ShowRandom", true)); cfg->mCbxRandom->setChecked(config->readBoolEntry("ShowRandom", true));
@ -971,7 +971,7 @@ void kSlideShowSetup::readSettings()
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void kSlideShowSetup::writeSettings() void kSlideShowSetup::writeSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup("Settings"); config->setGroup("Settings");
config->writeEntry("ShowRandom", cfg->mCbxRandom->isChecked()); config->writeEntry("ShowRandom", cfg->mCbxRandom->isChecked());

@ -83,7 +83,7 @@ KWaveSetup::~KWaveSetup( )
// read settings from config file // read settings from config file
void KWaveSetup::readSettings() void KWaveSetup::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
// color = config->readColorEntry( "Color", &black ); // color = config->readColorEntry( "Color", &black );
@ -92,7 +92,7 @@ void KWaveSetup::readSettings()
// Ok pressed - save settings and exit // Ok pressed - save settings and exit
void KWaveSetup::slotOkPressed() void KWaveSetup::slotOkPressed()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
// config->writeEntry( "Color", color ); // config->writeEntry( "Color", color );
@ -133,7 +133,7 @@ KWaveSaver::~KWaveSaver()
// read configuration settings from config file // read configuration settings from config file
void KWaveSaver::readSettings() void KWaveSaver::readSettings()
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
// color = config->readColorEntry( "Color", &black ); // color = config->readColorEntry( "Color", &black );

@ -110,7 +110,7 @@ KPartSaver::KPartSaver( WId id )
closeURL(); closeURL();
// load config // load config
KConfig *cfg = kapp->config(); TDEConfig *cfg = kapp->config();
cfg->setGroup( "Misc" ); cfg->setGroup( "Misc" );
m_single = cfg->readBoolEntry( "Single", true ); m_single = cfg->readBoolEntry( "Single", true );
@ -291,7 +291,7 @@ SaverConfig::SaverConfig( TQWidget* parent, const char* name )
m_down->setIconSet( SmallIconSet("down") ); m_down->setIconSet( SmallIconSet("down") );
// load config // load config
KConfig *cfg = kapp->config(); TDEConfig *cfg = kapp->config();
cfg->setGroup( "Misc" ); cfg->setGroup( "Misc" );
bool single = cfg->readBoolEntry( "Single", true ); bool single = cfg->readBoolEntry( "Single", true );
@ -317,7 +317,7 @@ void SaverConfig::apply()
{ {
kdDebug() << "apply" << endl; kdDebug() << "apply" << endl;
KConfig *cfg = kapp->config(); TDEConfig *cfg = kapp->config();
cfg->setGroup( "Misc" ); cfg->setGroup( "Misc" );
cfg->writeEntry( "Single", m_single->isChecked() ); cfg->writeEntry( "Single", m_single->isChecked() );

@ -98,7 +98,7 @@ bool KXSConfigDialog::create()
layout->addWidget(controlLayout); layout->addWidget(controlLayout);
((TQBoxLayout*)controlLayout->layout())->addStrut(120); ((TQBoxLayout*)controlLayout->layout())->addStrut(120);
KConfig config(mConfigFile); TDEConfig config(mConfigFile);
TQString xmlFile = "/doesntexist"; TQString xmlFile = "/doesntexist";
#ifdef XSCREENSAVER_CONFIG_DIR #ifdef XSCREENSAVER_CONFIG_DIR
@ -292,7 +292,7 @@ void KXSConfigDialog::slotChanged()
void KXSConfigDialog::slotOk() void KXSConfigDialog::slotOk()
{ {
KXSConfigItem *item; KXSConfigItem *item;
KConfig config(mConfigFile); TDEConfig config(mConfigFile);
for (item = mConfigItemList.first(); item != 0; item = mConfigItemList.next()) for (item = mConfigItemList.first(); item != 0; item = mConfigItemList.next())
{ {

@ -33,7 +33,7 @@
//=========================================================================== //===========================================================================
KXSRangeControl::KXSRangeControl(TQWidget *parent, const TQString &name, KXSRangeControl::KXSRangeControl(TQWidget *parent, const TQString &name,
KConfig &config) TDEConfig &config)
: TQWidget(parent), KXSRangeItem(name, config), mSlider(0), mSpinBox(0) : TQWidget(parent), KXSRangeItem(name, config), mSlider(0), mSpinBox(0)
{ {
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
@ -87,7 +87,7 @@ void KXSRangeControl::slotValueChanged(int value)
emit changed(); emit changed();
} }
void KXSRangeControl::read(KConfig &config) void KXSRangeControl::read(TDEConfig &config)
{ {
KXSRangeItem::read(config); KXSRangeItem::read(config);
if ( mSpinBox ) if ( mSpinBox )
@ -98,7 +98,7 @@ void KXSRangeControl::read(KConfig &config)
//=========================================================================== //===========================================================================
KXSDoubleRangeControl::KXSDoubleRangeControl(TQWidget *parent, KXSDoubleRangeControl::KXSDoubleRangeControl(TQWidget *parent,
const TQString &name, KConfig &config) const TQString &name, TDEConfig &config)
: TQWidget(parent), KXSDoubleRangeItem(name, config) : TQWidget(parent), KXSDoubleRangeItem(name, config)
{ {
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
@ -144,7 +144,7 @@ void KXSDoubleRangeControl::slotValueChanged(int value)
emit changed(); emit changed();
} }
void KXSDoubleRangeControl::read(KConfig &config) void KXSDoubleRangeControl::read(TDEConfig &config)
{ {
KXSDoubleRangeItem::read(config); KXSDoubleRangeItem::read(config);
mSlider->setValue((int)((mValue - mMinimum) * 100.0 / mSlider->setValue((int)((mValue - mMinimum) * 100.0 /
@ -153,7 +153,7 @@ void KXSDoubleRangeControl::read(KConfig &config)
//=========================================================================== //===========================================================================
KXSCheckBoxControl::KXSCheckBoxControl(TQWidget *parent, const TQString &name, KXSCheckBoxControl::KXSCheckBoxControl(TQWidget *parent, const TQString &name,
KConfig &config) TDEConfig &config)
: TQCheckBox(parent), KXSBoolItem(name, config) : TQCheckBox(parent), KXSBoolItem(name, config)
{ {
setText(mLabel); setText(mLabel);
@ -176,7 +176,7 @@ void KXSCheckBoxControl::slotToggled(bool state)
emit changed(); emit changed();
} }
void KXSCheckBoxControl::read(KConfig &config) void KXSCheckBoxControl::read(TDEConfig &config)
{ {
KXSBoolItem::read(config); KXSBoolItem::read(config);
setChecked(mValue); setChecked(mValue);
@ -184,7 +184,7 @@ void KXSCheckBoxControl::read(KConfig &config)
//=========================================================================== //===========================================================================
KXSDropListControl::KXSDropListControl(TQWidget *parent, const TQString &name, KXSDropListControl::KXSDropListControl(TQWidget *parent, const TQString &name,
KConfig &config) TDEConfig &config)
: TQWidget(parent), KXSSelectItem(name, config) : TQWidget(parent), KXSSelectItem(name, config)
{ {
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
@ -224,7 +224,7 @@ void KXSDropListControl::slotActivated(int indx)
emit changed(); emit changed();
} }
void KXSDropListControl::read(KConfig &config) void KXSDropListControl::read(TDEConfig &config)
{ {
KXSSelectItem::read(config); KXSSelectItem::read(config);
mCombo->setCurrentItem(mValue); mCombo->setCurrentItem(mValue);
@ -232,7 +232,7 @@ void KXSDropListControl::read(KConfig &config)
//=========================================================================== //===========================================================================
KXSLineEditControl::KXSLineEditControl(TQWidget *parent, const TQString &name, KXSLineEditControl::KXSLineEditControl(TQWidget *parent, const TQString &name,
KConfig &config) TDEConfig &config)
: TQWidget(parent), KXSStringItem(name, config) : TQWidget(parent), KXSStringItem(name, config)
{ {
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
@ -261,7 +261,7 @@ void KXSLineEditControl::textChanged( const TQString &text )
emit changed(); emit changed();
} }
void KXSLineEditControl::read(KConfig &config) void KXSLineEditControl::read(TDEConfig &config)
{ {
KXSStringItem::read(config); KXSStringItem::read(config);
mEdit->setText(mValue); mEdit->setText(mValue);
@ -269,7 +269,7 @@ void KXSLineEditControl::read(KConfig &config)
//=========================================================================== //===========================================================================
KXSFileControl::KXSFileControl(TQWidget *parent, const TQString &name, KXSFileControl::KXSFileControl(TQWidget *parent, const TQString &name,
KConfig &config) TDEConfig &config)
: TQWidget(parent), KXSStringItem(name, config) : TQWidget(parent), KXSStringItem(name, config)
{ {
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
@ -312,7 +312,7 @@ void KXSFileControl::selectFile()
} }
} }
void KXSFileControl::read(KConfig &config) void KXSFileControl::read(TDEConfig &config)
{ {
KXSStringItem::read(config); KXSStringItem::read(config);
mEdit->setText(mValue); mEdit->setText(mValue);

@ -39,10 +39,10 @@ class KXSRangeControl : public TQWidget, public KXSRangeItem
Q_OBJECT Q_OBJECT
public: public:
KXSRangeControl(TQWidget *parent, const TQString &name, KConfig &config); KXSRangeControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSRangeControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSRangeControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
signals: signals:
void changed(); void changed();
@ -61,10 +61,10 @@ class KXSDoubleRangeControl : public TQWidget, public KXSDoubleRangeItem
Q_OBJECT Q_OBJECT
public: public:
KXSDoubleRangeControl(TQWidget *parent, const TQString &name, KConfig &config); KXSDoubleRangeControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSDoubleRangeControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSDoubleRangeControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
signals: signals:
void changed(); void changed();
@ -83,10 +83,10 @@ class KXSCheckBoxControl : public TQCheckBox, public KXSBoolItem
Q_OBJECT Q_OBJECT
public: public:
KXSCheckBoxControl(TQWidget *parent, const TQString &name, KConfig &config); KXSCheckBoxControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSCheckBoxControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSCheckBoxControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
signals: signals:
void changed(); void changed();
@ -101,10 +101,10 @@ class KXSDropListControl : public TQWidget, public KXSSelectItem
Q_OBJECT Q_OBJECT
public: public:
KXSDropListControl(TQWidget *parent, const TQString &name, KConfig &config); KXSDropListControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSDropListControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSDropListControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
virtual void addOption( const TQXmlAttributes &attr ); virtual void addOption( const TQXmlAttributes &attr );
@ -124,10 +124,10 @@ class KXSLineEditControl : public TQWidget, public KXSStringItem
Q_OBJECT Q_OBJECT
public: public:
KXSLineEditControl(TQWidget *parent, const TQString &name, KConfig &config); KXSLineEditControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSLineEditControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSLineEditControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
signals: signals:
void changed(); void changed();
@ -145,10 +145,10 @@ class KXSFileControl : public TQWidget, public KXSStringItem
Q_OBJECT Q_OBJECT
public: public:
KXSFileControl(TQWidget *parent, const TQString &name, KConfig &config); KXSFileControl(TQWidget *parent, const TQString &name, TDEConfig &config);
KXSFileControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr ); KXSFileControl(TQWidget *parent, const TQString &name, const TQXmlAttributes &attr );
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
signals: signals:
void changed(); void changed();

@ -24,7 +24,7 @@
#include <tqxml.h> #include <tqxml.h>
//=========================================================================== //===========================================================================
KXSConfigItem::KXSConfigItem(const TQString &name, KConfig &config) KXSConfigItem::KXSConfigItem(const TQString &name, TDEConfig &config)
: mName(name) : mName(name)
{ {
config.setGroup(name); config.setGroup(name);
@ -38,7 +38,7 @@ KXSConfigItem::KXSConfigItem(const TQString &name, const TQXmlAttributes &attr )
} }
//=========================================================================== //===========================================================================
KXSRangeItem::KXSRangeItem(const TQString &name, KConfig &config) KXSRangeItem::KXSRangeItem(const TQString &name, TDEConfig &config)
: KXSConfigItem(name, config), mInvert(false) : KXSConfigItem(name, config), mInvert(false)
{ {
mMinimum = config.readNumEntry("Minimum"); mMinimum = config.readNumEntry("Minimum");
@ -68,21 +68,21 @@ TQString KXSRangeItem::command()
return mSwitch.arg(mInvert?mMaximum-(mValue-mMinimum):mValue); return mSwitch.arg(mInvert?mMaximum-(mValue-mMinimum):mValue);
} }
void KXSRangeItem::read(KConfig &config) void KXSRangeItem::read(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
if (config.hasKey("Value")) if (config.hasKey("Value"))
mValue = config.readNumEntry("Value"); mValue = config.readNumEntry("Value");
} }
void KXSRangeItem::save(KConfig &config) void KXSRangeItem::save(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
config.writeEntry("Value", mValue); config.writeEntry("Value", mValue);
} }
//=========================================================================== //===========================================================================
KXSDoubleRangeItem::KXSDoubleRangeItem(const TQString &name, KConfig &config) KXSDoubleRangeItem::KXSDoubleRangeItem(const TQString &name, TDEConfig &config)
: KXSConfigItem(name, config), mInvert(false) : KXSConfigItem(name, config), mInvert(false)
{ {
mMinimum = config.readDoubleNumEntry("Minimum"); mMinimum = config.readDoubleNumEntry("Minimum");
@ -112,14 +112,14 @@ TQString KXSDoubleRangeItem::command()
return mSwitch.arg(mInvert?mMaximum-(mValue-mMinimum):mValue); return mSwitch.arg(mInvert?mMaximum-(mValue-mMinimum):mValue);
} }
void KXSDoubleRangeItem::read(KConfig &config) void KXSDoubleRangeItem::read(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
if (config.hasKey("Value")) if (config.hasKey("Value"))
mValue = config.readDoubleNumEntry("Value"); mValue = config.readDoubleNumEntry("Value");
} }
void KXSDoubleRangeItem::save(KConfig &config) void KXSDoubleRangeItem::save(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
config.writeEntry("Value", mValue); config.writeEntry("Value", mValue);
@ -127,7 +127,7 @@ void KXSDoubleRangeItem::save(KConfig &config)
//=========================================================================== //===========================================================================
KXSBoolItem::KXSBoolItem(const TQString &name, KConfig &config) KXSBoolItem::KXSBoolItem(const TQString &name, TDEConfig &config)
: KXSConfigItem(name, config) : KXSConfigItem(name, config)
{ {
mValue = config.readBoolEntry("Value"); mValue = config.readBoolEntry("Value");
@ -148,21 +148,21 @@ TQString KXSBoolItem::command()
return mValue ? mSwitchOn : mSwitchOff; return mValue ? mSwitchOn : mSwitchOff;
} }
void KXSBoolItem::read(KConfig &config) void KXSBoolItem::read(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
if (config.hasKey("Value")) if (config.hasKey("Value"))
mValue = config.readBoolEntry("Value"); mValue = config.readBoolEntry("Value");
} }
void KXSBoolItem::save(KConfig &config) void KXSBoolItem::save(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
config.writeEntry("Value", mValue); config.writeEntry("Value", mValue);
} }
//=========================================================================== //===========================================================================
KXSSelectItem::KXSSelectItem(const TQString &name, KConfig &config) KXSSelectItem::KXSSelectItem(const TQString &name, TDEConfig &config)
: KXSConfigItem(name, config) : KXSConfigItem(name, config)
{ {
mOptions = config.readListEntry("Options"); mOptions = config.readListEntry("Options");
@ -191,14 +191,14 @@ TQString KXSSelectItem::command()
return (*it); return (*it);
} }
void KXSSelectItem::read(KConfig &config) void KXSSelectItem::read(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
if (config.hasKey("Value")) if (config.hasKey("Value"))
mValue = config.readNumEntry("Value"); mValue = config.readNumEntry("Value");
} }
void KXSSelectItem::save(KConfig &config) void KXSSelectItem::save(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
config.writeEntry("Value", mValue); config.writeEntry("Value", mValue);
@ -206,7 +206,7 @@ void KXSSelectItem::save(KConfig &config)
//=========================================================================== //===========================================================================
KXSStringItem::KXSStringItem(const TQString &name, KConfig &config) KXSStringItem::KXSStringItem(const TQString &name, TDEConfig &config)
: KXSConfigItem(name, config) : KXSConfigItem(name, config)
{ {
mValue = config.readEntry("Value"); mValue = config.readEntry("Value");
@ -236,14 +236,14 @@ TQString KXSStringItem::command()
return ""; return "";
} }
void KXSStringItem::read(KConfig &config) void KXSStringItem::read(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
if (config.hasKey("Value")) if (config.hasKey("Value"))
mValue = config.readEntry("Value"); mValue = config.readEntry("Value");
} }
void KXSStringItem::save(KConfig &config) void KXSStringItem::save(TDEConfig &config)
{ {
config.setGroup(mName); config.setGroup(mName);
config.writeEntry("Value", mValue); config.writeEntry("Value", mValue);

@ -29,13 +29,13 @@ class TQXmlAttributes;
class KXSConfigItem class KXSConfigItem
{ {
public: public:
KXSConfigItem(const TQString &name, KConfig &config); KXSConfigItem(const TQString &name, TDEConfig &config);
KXSConfigItem(const TQString &name, const TQXmlAttributes &attr); KXSConfigItem(const TQString &name, const TQXmlAttributes &attr);
virtual ~KXSConfigItem() {} virtual ~KXSConfigItem() {}
virtual TQString command() = 0; virtual TQString command() = 0;
virtual void save(KConfig &config) = 0; virtual void save(TDEConfig &config) = 0;
virtual void read(KConfig &config) = 0; virtual void read(TDEConfig &config) = 0;
protected: protected:
TQString mName; TQString mName;
@ -45,12 +45,12 @@ protected:
class KXSRangeItem : public KXSConfigItem class KXSRangeItem : public KXSConfigItem
{ {
public: public:
KXSRangeItem(const TQString &name, KConfig &config); KXSRangeItem(const TQString &name, TDEConfig &config);
KXSRangeItem(const TQString &name, const TQXmlAttributes &attr); KXSRangeItem(const TQString &name, const TQXmlAttributes &attr);
virtual TQString command(); virtual TQString command();
virtual void save(KConfig &config); virtual void save(TDEConfig &config);
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
protected: protected:
TQString mSwitch; TQString mSwitch;
@ -63,12 +63,12 @@ protected:
class KXSDoubleRangeItem : public KXSConfigItem class KXSDoubleRangeItem : public KXSConfigItem
{ {
public: public:
KXSDoubleRangeItem(const TQString &name, KConfig &config); KXSDoubleRangeItem(const TQString &name, TDEConfig &config);
KXSDoubleRangeItem(const TQString &name, const TQXmlAttributes &attr); KXSDoubleRangeItem(const TQString &name, const TQXmlAttributes &attr);
virtual TQString command(); virtual TQString command();
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
virtual void save(KConfig &config); virtual void save(TDEConfig &config);
protected: protected:
TQString mSwitch; TQString mSwitch;
@ -81,12 +81,12 @@ protected:
class KXSBoolItem : public KXSConfigItem class KXSBoolItem : public KXSConfigItem
{ {
public: public:
KXSBoolItem(const TQString &name, KConfig &config); KXSBoolItem(const TQString &name, TDEConfig &config);
KXSBoolItem(const TQString &name, const TQXmlAttributes &attr); KXSBoolItem(const TQString &name, const TQXmlAttributes &attr);
virtual TQString command(); virtual TQString command();
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
virtual void save(KConfig &config); virtual void save(TDEConfig &config);
protected: protected:
TQString mSwitchOn; TQString mSwitchOn;
@ -97,15 +97,15 @@ protected:
class KXSSelectItem : public KXSConfigItem class KXSSelectItem : public KXSConfigItem
{ {
public: public:
KXSSelectItem(const TQString &name, KConfig &config); KXSSelectItem(const TQString &name, TDEConfig &config);
KXSSelectItem(const TQString &name, const TQXmlAttributes &attr); KXSSelectItem(const TQString &name, const TQXmlAttributes &attr);
virtual void addOption(const TQXmlAttributes &attr); virtual void addOption(const TQXmlAttributes &attr);
virtual TQString command(); virtual TQString command();
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
virtual void save(KConfig &config); virtual void save(TDEConfig &config);
protected: protected:
TQStringList mOptions; TQStringList mOptions;
@ -116,12 +116,12 @@ protected:
class KXSStringItem : public KXSConfigItem class KXSStringItem : public KXSConfigItem
{ {
public: public:
KXSStringItem(const TQString &name, KConfig &config); KXSStringItem(const TQString &name, TDEConfig &config);
KXSStringItem(const TQString &name, const TQXmlAttributes &attr); KXSStringItem(const TQString &name, const TQXmlAttributes &attr);
virtual TQString command(); virtual TQString command();
virtual void save(KConfig &config); virtual void save(TDEConfig &config);
virtual void read(KConfig &config); virtual void read(TDEConfig &config);
protected: protected:
TQString mSwitch; TQString mSwitch;

@ -83,7 +83,7 @@ int main(int argc, char *argv[])
configFile += "rc"; configFile += "rc";
// read configuration args // read configuration args
KConfig config(configFile); TDEConfig config(configFile);
TQPtrList<KXSConfigItem> configItemList; TQPtrList<KXSConfigItem> configItemList;

@ -26,13 +26,13 @@ void fixed_size(TQWidget *w) {
w->setFixedSize(w->sizeHint()); w->setFixedSize(w->sizeHint());
} }
KConfig *klock_config() TDEConfig *klock_config()
{ {
TQString name( kapp->argv()[0] ); TQString name( kapp->argv()[0] );
int slash = name.findRev( '/' ); int slash = name.findRev( '/' );
if ( slash ) if ( slash )
name = name.mid( slash+1 ); name = name.mid( slash+1 );
return new KConfig( name + "rc" ); return new TDEConfig( name + "rc" );
} }

@ -12,12 +12,12 @@ void min_size(TQWidget *);
void fixed_size(TQWidget *); void fixed_size(TQWidget *);
/* /*
* Use this to get a KConfig object that uses a reasonable config filename. * Use this to get a TDEConfig object that uses a reasonable config filename.
* TDEGlobal::config() will use the klockrc config file. * TDEGlobal::config() will use the klockrc config file.
* *
* Caller must delete the object when finished. * Caller must delete the object when finished.
*/ */
KConfig *klock_config(); TDEConfig *klock_config();
#endif #endif

@ -540,7 +540,7 @@ void kSpaceSaver::setWarp( int w )
void kSpaceSaver::readSettings() void kSpaceSaver::readSettings()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString str; TQString str;
@ -622,7 +622,7 @@ kSpaceSetup::kSpaceSetup( TQWidget *parent, const char *name )
void kSpaceSetup::readSettings() void kSpaceSetup::readSettings()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", speed ); speed = config->readNumEntry( "Speed", speed );
@ -654,7 +654,7 @@ void kSpaceSetup::slotWarp( int num )
void kSpaceSetup::slotOk() void kSpaceSetup::slotOk()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString sspeed; TQString sspeed;

@ -297,7 +297,7 @@ void kSwarmSaver::setLevels( int l )
void kSwarmSaver::readSettings() void kSwarmSaver::readSettings()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = MAXSPEED - config->readNumEntry( "Speed", MAXSPEED - DEFSPEED ); speed = MAXSPEED - config->readNumEntry( "Speed", MAXSPEED - DEFSPEED );
@ -363,7 +363,7 @@ kSwarmSetup::kSwarmSetup( TQWidget *parent, const char *name )
void kSwarmSetup::readSettings() void kSwarmSetup::readSettings()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
speed = config->readNumEntry( "Speed", speed ); speed = config->readNumEntry( "Speed", speed );
@ -395,7 +395,7 @@ void kSwarmSetup::slotLevels( int num )
void kSwarmSetup::slotOk() void kSwarmSetup::slotOk()
{ {
KConfig *config = klock_config(); TDEConfig *config = klock_config();
config->setGroup( "Settings" ); config->setGroup( "Settings" );
TQString sspeed; TQString sspeed;

@ -29,7 +29,7 @@
#include "styledialog.h" #include "styledialog.h"
class KConfig; class TDEConfig;
class PhaseStyleConfig : public StyleDialog class PhaseStyleConfig : public StyleDialog
{ {

@ -150,7 +150,7 @@ static int scaleCoord(int c)
static void readConfig(CdeClientFactory *f) static void readConfig(CdeClientFactory *f)
{ {
KConfig conf( "twincderc" ); TDEConfig conf( "twincderc" );
conf.setGroup("General"); conf.setGroup("General");
coloredFrame = conf.readBoolEntry( "UseTitleBarBorderColors", true ); coloredFrame = conf.readBoolEntry( "UseTitleBarBorderColors", true );

@ -6,7 +6,7 @@
#include <tqvbox.h> #include <tqvbox.h>
#include <klocale.h> #include <klocale.h>
extern "C" KDE_EXPORT TQObject* allocate_config( KConfig* conf, TQWidget* parent ) extern "C" KDE_EXPORT TQObject* allocate_config( TDEConfig* conf, TQWidget* parent )
{ {
return new CdeConfig(conf, parent); return new CdeConfig(conf, parent);
} }
@ -20,10 +20,10 @@ extern "C" KDE_EXPORT TQObject* allocate_config( KConfig* conf, TQWidget* parent
* Configure tab in twindecoration * Configure tab in twindecoration
*/ */
CdeConfig::CdeConfig( KConfig* conf, TQWidget* parent ) CdeConfig::CdeConfig( TDEConfig* conf, TQWidget* parent )
: TQObject( parent ) : TQObject( parent )
{ {
cdeConfig = new KConfig("twincderc"); cdeConfig = new TDEConfig("twincderc");
TDEGlobal::locale()->insertCatalogue("twin_art_clients"); TDEGlobal::locale()->insertCatalogue("twin_art_clients");
groupBox = new TQVBox( parent ); groupBox = new TQVBox( parent );
@ -82,7 +82,7 @@ void CdeConfig::slotSelectionChanged( int )
// Loads the configurable options from the twinrc config file // Loads the configurable options from the twinrc config file
// It is passed the open config from twindecoration to improve efficiency // It is passed the open config from twindecoration to improve efficiency
void CdeConfig::load( KConfig* /*conf*/ ) void CdeConfig::load( TDEConfig* /*conf*/ )
{ {
cdeConfig->setGroup("General"); cdeConfig->setGroup("General");
@ -100,7 +100,7 @@ void CdeConfig::load( KConfig* /*conf*/ )
// Saves the configurable options to the twinrc config file // Saves the configurable options to the twinrc config file
void CdeConfig::save( KConfig* /*conf*/ ) void CdeConfig::save( TDEConfig* /*conf*/ )
{ {
cdeConfig->setGroup("General"); cdeConfig->setGroup("General");

@ -21,7 +21,7 @@ class CdeConfig: public TQObject
public: public:
CdeConfig( KConfig* conf, TQWidget* parent ); CdeConfig( TDEConfig* conf, TQWidget* parent );
~CdeConfig(); ~CdeConfig();
// These public signals/slots work similar to KCM modules // These public signals/slots work similar to KCM modules
@ -29,8 +29,8 @@ class CdeConfig: public TQObject
void changed(); void changed();
public slots: public slots:
void load( KConfig* conf ); void load( TDEConfig* conf );
void save( KConfig* conf ); void save( TDEConfig* conf );
void defaults(); void defaults();
protected slots: protected slots:
@ -38,7 +38,7 @@ class CdeConfig: public TQObject
void slotSelectionChanged( int ); void slotSelectionChanged( int );
private: private:
KConfig* cdeConfig; TDEConfig* cdeConfig;
TQCheckBox* cbColorBorder; TQCheckBox* cbColorBorder;
// TQCheckBox* cbTitlebarButton; // TQCheckBox* cbTitlebarButton;
TQHBox* groupBox; TQHBox* groupBox;

@ -45,16 +45,16 @@
extern "C" extern "C"
{ {
KDE_EXPORT TQObject* allocate_config( KConfig* conf, TQWidget* parent ) KDE_EXPORT TQObject* allocate_config( TDEConfig* conf, TQWidget* parent )
{ {
return(new GlowConfigDialog(conf, parent)); return(new GlowConfigDialog(conf, parent));
} }
} }
GlowConfigDialog::GlowConfigDialog( KConfig * conf, TQWidget * parent ) GlowConfigDialog::GlowConfigDialog( TDEConfig * conf, TQWidget * parent )
: TQObject(parent) : TQObject(parent)
{ {
_glowConfig = new KConfig("twinglowrc"); _glowConfig = new TDEConfig("twinglowrc");
TDEGlobal::locale()->insertCatalogue("twin_glow_config"); TDEGlobal::locale()->insertCatalogue("twin_glow_config");
_main_group_box = new TQWidget(parent); _main_group_box = new TQWidget(parent);
@ -138,8 +138,8 @@ GlowConfigDialog::GlowConfigDialog( KConfig * conf, TQWidget * parent )
TQHBoxLayout *titlebarGradientTypeLayout = new TQHBoxLayout(); TQHBoxLayout *titlebarGradientTypeLayout = new TQHBoxLayout();
_titlebarGradientTypeComboBox = new TQComboBox(_main_group_box); _titlebarGradientTypeComboBox = new TQComboBox(_main_group_box);
KConfig *c = TDEGlobal::config(); TDEConfig *c = TDEGlobal::config();
KConfigGroupSaver cgs( c, TQString::fromLatin1("WM") ); TDEConfigGroupSaver cgs( c, TQString::fromLatin1("WM") );
TQColor activeBackground = c->readColorEntry("activeBackground"); TQColor activeBackground = c->readColorEntry("activeBackground");
TQColor activeBlend = c->readColorEntry("activeBlend"); TQColor activeBlend = c->readColorEntry("activeBlend");
@ -183,7 +183,7 @@ GlowConfigDialog::~GlowConfigDialog()
delete[] _buttonConfigMap; delete[] _buttonConfigMap;
} }
void GlowConfigDialog::load( KConfig* /* conf */ ) void GlowConfigDialog::load( TDEConfig* /* conf */ )
{ {
TQColor color; TQColor color;
const TQColor defaultCloseButtonColor(DEFAULT_CLOSE_BUTTON_COLOR); const TQColor defaultCloseButtonColor(DEFAULT_CLOSE_BUTTON_COLOR);
@ -229,7 +229,7 @@ void GlowConfigDialog::load( KConfig* /* conf */ )
slotTitleButtonClicked(0); slotTitleButtonClicked(0);
} }
void GlowConfigDialog::save( KConfig* /* conf */ ) void GlowConfigDialog::save( TDEConfig* /* conf */ )
{ {
_glowConfig->setGroup("General"); _glowConfig->setGroup("General");
@ -298,7 +298,7 @@ void GlowConfigDialog::slotLoadThemeList ()
if (! _theme_list_view->findItem (finfo->fileName(), 0)) if (! _theme_list_view->findItem (finfo->fileName(), 0))
{ {
KConfig conf (dir.path() + "/" + finfo->fileName() + "/" + TDEConfig conf (dir.path() + "/" + finfo->fileName() + "/" +
finfo->fileName() + ".theme"); finfo->fileName() + ".theme");
TQSize button_size = conf.readSizeEntry ( TQSize button_size = conf.readSizeEntry (
"buttonSize", new TQSize (-1, -1)); "buttonSize", new TQSize (-1, -1));

@ -26,7 +26,7 @@ class TQPushButton;
class TQSignalMapper; class TQSignalMapper;
class TQCheckBox; class TQCheckBox;
class TQComboBox; class TQComboBox;
class KConfig; class TDEConfig;
class KColorButton; class KColorButton;
class GlowConfigDialog : public TQObject class GlowConfigDialog : public TQObject
@ -35,15 +35,15 @@ class GlowConfigDialog : public TQObject
public: public:
GlowConfigDialog( KConfig* conf, TQWidget* parent ); GlowConfigDialog( TDEConfig* conf, TQWidget* parent );
~GlowConfigDialog(); ~GlowConfigDialog();
signals: signals:
void changed(); void changed();
public slots: public slots:
void load( KConfig* conf ); void load( TDEConfig* conf );
void save( KConfig* conf ); void save( TDEConfig* conf );
void defaults(); void defaults();
protected slots: protected slots:
@ -60,7 +60,7 @@ private:
enum ButtonType{stickyButton, helpButton, iconifyButton, enum ButtonType{stickyButton, helpButton, iconifyButton,
maximizeButton, closeButton }; maximizeButton, closeButton };
KConfig *_glowConfig; TDEConfig *_glowConfig;
bool _showResizeHandle; bool _showResizeHandle;
KPixmapEffect::GradientType _titlebarGradientType; KPixmapEffect::GradientType _titlebarGradientType;

@ -51,7 +51,7 @@ GlowClientConfig::GlowClientConfig()
void GlowClientConfig::load(KDecorationFactory *factory) void GlowClientConfig::load(KDecorationFactory *factory)
{ {
KConfig conf("twinglowrc"); TDEConfig conf("twinglowrc");
conf.setGroup("General"); conf.setGroup("General");
const TQColor defaultCloseButtonColor(DEFAULT_CLOSE_BUTTON_COLOR); const TQColor defaultCloseButtonColor(DEFAULT_CLOSE_BUTTON_COLOR);
@ -173,7 +173,7 @@ void GlowClientGlobals::readTheme()
return; return;
} }
KConfig conf (theme_config_file); TDEConfig conf (theme_config_file);
_theme = new GlowTheme(default_glow_theme); _theme = new GlowTheme(default_glow_theme);
_theme->buttonSize = conf.readSizeEntry ("buttonSize", _theme->buttonSize = conf.readSizeEntry ("buttonSize",

@ -39,7 +39,7 @@
extern "C" extern "C"
{ {
KDE_EXPORT TQObject* allocate_config( KConfig* conf, TQWidget* parent ) KDE_EXPORT TQObject* allocate_config( TDEConfig* conf, TQWidget* parent )
{ {
return(new IceWMConfig(conf, parent)); return(new IceWMConfig(conf, parent));
} }
@ -55,10 +55,10 @@ extern "C"
// Configure tab in twindecoration // Configure tab in twindecoration
// ========================================================================== // ==========================================================================
IceWMConfig::IceWMConfig( KConfig* conf, TQWidget* parent ) IceWMConfig::IceWMConfig( TDEConfig* conf, TQWidget* parent )
: TQObject( parent ) : TQObject( parent )
{ {
icewmConfig = new KConfig("twinicewmrc"); icewmConfig = new TDEConfig("twinicewmrc");
TDEGlobal::locale()->insertCatalogue("twin_art_clients"); TDEGlobal::locale()->insertCatalogue("twin_art_clients");
mainWidget = new TQVBox( parent ); mainWidget = new TQVBox( parent );
@ -224,7 +224,7 @@ void IceWMConfig::slotSelectionChanged()
// Loads the configurable options from the twinicewmrc config file // Loads the configurable options from the twinicewmrc config file
void IceWMConfig::load( KConfig* ) void IceWMConfig::load( TDEConfig* )
{ {
icewmConfig->setGroup("General"); icewmConfig->setGroup("General");
@ -242,7 +242,7 @@ void IceWMConfig::load( KConfig* )
// Saves the configurable options to the twinicewmrc config file // Saves the configurable options to the twinicewmrc config file
void IceWMConfig::save( KConfig* ) void IceWMConfig::save( TDEConfig* )
{ {
icewmConfig->setGroup("General"); icewmConfig->setGroup("General");
icewmConfig->writeEntry( "ThemeTitleTextColors", cbThemeTitleTextColors->isChecked() ); icewmConfig->writeEntry( "ThemeTitleTextColors", cbThemeTitleTextColors->isChecked() );

@ -43,7 +43,7 @@ class IceWMConfig: public TQObject
public: public:
IceWMConfig( KConfig* conf, TQWidget* parent ); IceWMConfig( TDEConfig* conf, TQWidget* parent );
~IceWMConfig(); ~IceWMConfig();
// These public signals/slots work similar to KCM modules // These public signals/slots work similar to KCM modules
@ -51,8 +51,8 @@ class IceWMConfig: public TQObject
void changed(); void changed();
public slots: public slots:
void load( KConfig* conf ); void load( TDEConfig* conf );
void save( KConfig* conf ); void save( TDEConfig* conf );
void defaults(); void defaults();
protected slots: protected slots:
@ -61,7 +61,7 @@ class IceWMConfig: public TQObject
void findIceWMThemes(); void findIceWMThemes();
private: private:
KConfig* icewmConfig; TDEConfig* icewmConfig;
TQCheckBox* cbThemeTitleTextColors; TQCheckBox* cbThemeTitleTextColors;
TQCheckBox* cbTitleBarOnTop; TQCheckBox* cbTitleBarOnTop;
TQCheckBox* cbShowMenuButtonIcon; TQCheckBox* cbShowMenuButtonIcon;

@ -237,7 +237,7 @@ TQString ThemeHandler::reverseString( TQString s )
// This function reads the twinicewmrc config file // This function reads the twinicewmrc config file
void ThemeHandler::readConfig() void ThemeHandler::readConfig()
{ {
KConfig conf("twinicewmrc"); TDEConfig conf("twinicewmrc");
conf.setGroup("General"); conf.setGroup("General");
themeName = conf.readEntry("CurrentTheme"); themeName = conf.readEntry("CurrentTheme");
themeTitleTextColors = conf.readBoolEntry("ThemeTitleTextColors", true); themeTitleTextColors = conf.readBoolEntry("ThemeTitleTextColors", true);
@ -271,7 +271,7 @@ void ThemeHandler::initTheme()
// We use kconfig to read icewm config files... // We use kconfig to read icewm config files...
// this is easy since icewm uses key=value pairs! // this is easy since icewm uses key=value pairs!
KConfig config( locate("data", TQString("twin/icewm-themes/") + TDEConfig config( locate("data", TQString("twin/icewm-themes/") +
themeName + TQString("default.theme")) ); themeName + TQString("default.theme")) );
// Load specifics, or use IceWM defaults instead. // Load specifics, or use IceWM defaults instead.

@ -26,10 +26,10 @@
// ------------- // -------------
// Constructor // Constructor
smoothblendConfig::smoothblendConfig(KConfig* config, TQWidget* parent) smoothblendConfig::smoothblendConfig(TDEConfig* config, TQWidget* parent)
: TQObject(parent), config_(0), dialog_(0) { : TQObject(parent), config_(0), dialog_(0) {
// create the configuration object // create the configuration object
config_ = new KConfig("twinsmoothblendrc"); config_ = new TDEConfig("twinsmoothblendrc");
TDEGlobal::locale()->insertCatalogue("twin_smoothblend_config"); TDEGlobal::locale()->insertCatalogue("twin_smoothblend_config");
// create and show the configuration dialog // create and show the configuration dialog
@ -96,7 +96,7 @@ void smoothblendConfig::selectionChanged(int) {
// ------ // ------
// Load configuration data // Load configuration data
void smoothblendConfig::load(KConfig*) { void smoothblendConfig::load(TDEConfig*) {
config_->setGroup("General"); config_->setGroup("General");
TQString value = config_->readEntry("TitleAlignment", "AlignHCenter"); TQString value = config_->readEntry("TitleAlignment", "AlignHCenter");
@ -126,7 +126,7 @@ void smoothblendConfig::load(KConfig*) {
// ------ // ------
// Save configuration data // Save configuration data
void smoothblendConfig::save(KConfig*) { void smoothblendConfig::save(TDEConfig*) {
config_->setGroup("General"); config_->setGroup("General");
TQRadioButton *button = (TQRadioButton*)dialog_->titlealign->selected(); TQRadioButton *button = (TQRadioButton*)dialog_->titlealign->selected();
@ -172,7 +172,7 @@ void smoothblendConfig::defaults() {
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
extern "C" { extern "C" {
TQObject* allocate_config(KConfig* config, TQWidget* parent) { TQObject* allocate_config(TDEConfig* config, TQWidget* parent) {
return (new smoothblendConfig(config, parent)); return (new smoothblendConfig(config, parent));
} }
} }

@ -27,29 +27,29 @@
#include <tqobject.h> #include <tqobject.h>
class KConfig; class TDEConfig;
class ConfigDialog; class ConfigDialog;
class smoothblendConfig : public TQObject { class smoothblendConfig : public TQObject {
Q_OBJECT Q_OBJECT
public: public:
smoothblendConfig(KConfig* config, TQWidget* parent); smoothblendConfig(TDEConfig* config, TQWidget* parent);
~smoothblendConfig(); ~smoothblendConfig();
signals: signals:
void changed(); void changed();
public slots: public slots:
void load(KConfig*); void load(TDEConfig*);
void save(KConfig*); void save(TDEConfig*);
void defaults(); void defaults();
protected slots: protected slots:
void selectionChanged(int); void selectionChanged(int);
private: private:
KConfig *config_; TDEConfig *config_;
ConfigDialog *dialog_; ConfigDialog *dialog_;
}; };

@ -118,7 +118,7 @@ bool smoothblendFactory::reset(unsigned long changed) {
bool smoothblendFactory::readConfig() { bool smoothblendFactory::readConfig() {
// create a config object // create a config object
KConfig config("twinsmoothblendrc"); TDEConfig config("twinsmoothblendrc");
config.setGroup("General"); config.setGroup("General");
// grab settings // grab settings

Loading…
Cancel
Save