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.
80 lines
3.3 KiB
80 lines
3.3 KiB
/***************************************************************************
|
|
ksettingsregister.cpp
|
|
--------------------
|
|
copyright : (C) 2005 by Thomas Baumgart
|
|
email : ipwizard@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <ktextedit.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include "ksettingsregister.h"
|
|
#include <kmymoney/transactionsortoption.h>
|
|
|
|
KSettingsRegister::KSettingsRegister(TQWidget* parent, const char* name) :
|
|
KSettingsRegisterDecl(parent, name)
|
|
{
|
|
// hide the internally used text fields
|
|
kcfg_sortNormalView->hide();
|
|
kcfg_sortReconcileView->hide();
|
|
kcfg_sortSearchView->hide();
|
|
|
|
// setup connections, so that the sort optios get loaded once the edit fields are filled
|
|
connect(kcfg_sortNormalView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadNormal()));
|
|
connect(kcfg_sortReconcileView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadReconcile()));
|
|
connect(kcfg_sortSearchView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadSearch()));
|
|
|
|
// setup connections, so that changes by the user are forwarded to the (hidden) edit fields
|
|
connect(m_sortNormalView, TQT_SIGNAL(settingsChanged(const TQString&)), kcfg_sortNormalView, TQT_SLOT(setText(const TQString&)));
|
|
connect(m_sortReconcileView, TQT_SIGNAL(settingsChanged(const TQString&)), kcfg_sortReconcileView, TQT_SLOT(setText(const TQString&)));
|
|
connect(m_sortSearchView, TQT_SIGNAL(settingsChanged(const TQString&)), kcfg_sortSearchView, TQT_SLOT(setText(const TQString&)));
|
|
}
|
|
|
|
KSettingsRegister::~KSettingsRegister()
|
|
{
|
|
}
|
|
|
|
void KSettingsRegister::slotLoadNormal(void)
|
|
{
|
|
// only need this once
|
|
disconnect(kcfg_sortNormalView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadNormal()));
|
|
m_sortNormalView->setSettings(kcfg_sortNormalView->text());
|
|
}
|
|
|
|
void KSettingsRegister::slotLoadReconcile(void)
|
|
{
|
|
// only need this once
|
|
disconnect(kcfg_sortReconcileView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadReconcile()));
|
|
m_sortReconcileView->setSettings(kcfg_sortReconcileView->text());
|
|
}
|
|
|
|
void KSettingsRegister::slotLoadSearch(void)
|
|
{
|
|
// only need this once
|
|
disconnect(kcfg_sortSearchView, TQT_SIGNAL(textChanged()), this, TQT_SLOT(slotLoadSearch()));
|
|
m_sortSearchView->setSettings(kcfg_sortSearchView->text());
|
|
}
|
|
|
|
#include "ksettingsregister.moc"
|