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.
64 lines
2.4 KiB
64 lines
2.4 KiB
14 years ago
|
/***************************************************************************
|
||
|
ksettingsgeneral.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. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// QT Includes
|
||
|
|
||
|
#include <qlabel.h>
|
||
|
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// KDE Includes
|
||
|
|
||
|
#include <klineedit.h>
|
||
|
#include <klistview.h>
|
||
|
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// Project Includes
|
||
|
|
||
|
#include <kmymoney/kmymoneydateinput.h>
|
||
|
#include "ksettingsgeneral.h"
|
||
|
|
||
|
KSettingsGeneral::KSettingsGeneral(QWidget* parent, const char* name) :
|
||
|
KSettingsGeneralDecl(parent, name)
|
||
|
{
|
||
|
// hide the internally used date field
|
||
|
kcfg_StartDate->hide();
|
||
|
kcfg_hiddenViews->hide();
|
||
|
|
||
|
// for now, we don't show the widgets for view selection
|
||
|
m_viewLabel->hide();
|
||
|
m_viewList->hide();
|
||
|
|
||
|
// setup connections, so that the sort optios get loaded once the edit fields are filled
|
||
|
connect(kcfg_StartDate, SIGNAL(valueChanged(const QDate&)), this, SLOT(slotLoadStartDate(const QDate&)));
|
||
|
|
||
|
// setup connections, so that changes by the user are forwarded to the (hidden) edit fields
|
||
|
connect(m_startDateEdit, SIGNAL(dateChanged(const QDate&)), kcfg_StartDate, SLOT(setDate(const QDate&)));
|
||
|
}
|
||
|
|
||
|
KSettingsGeneral::~KSettingsGeneral()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void KSettingsGeneral::slotLoadStartDate(const QDate&)
|
||
|
{
|
||
|
// only need this once
|
||
|
disconnect(kcfg_StartDate, SIGNAL(valueChanged(const QDate&)), this, SLOT(slotLoadStartDate(const QDate&)));
|
||
|
m_startDateEdit->setDate(kcfg_StartDate->date());
|
||
|
}
|
||
|
|
||
|
#include "ksettingsgeneral.moc"
|