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.
68 lines
2.5 KiB
68 lines
2.5 KiB
/***************************************************************************
|
|
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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqlabel.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <klineedit.h>
|
|
#include <tdelistview.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/kmymoneydateinput.h>
|
|
#include "ksettingsgeneral.h"
|
|
|
|
KSettingsGeneral::KSettingsGeneral(TQWidget* 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, TQT_SIGNAL(valueChanged(const TQDate&)), this, TQT_SLOT(slotLoadStartDate(const TQDate&)));
|
|
|
|
// setup connections, so that changes by the user are forwarded to the (hidden) edit fields
|
|
connect(m_startDateEdit, TQT_SIGNAL(dateChanged(const TQDate&)), kcfg_StartDate, TQT_SLOT(setDate(const TQDate&)));
|
|
}
|
|
|
|
KSettingsGeneral::~KSettingsGeneral()
|
|
{
|
|
}
|
|
|
|
void KSettingsGeneral::slotLoadStartDate(const TQDate&)
|
|
{
|
|
// only need this once
|
|
disconnect(kcfg_StartDate, TQT_SIGNAL(valueChanged(const TQDate&)), this, TQT_SLOT(slotLoadStartDate(const TQDate&)));
|
|
m_startDateEdit->setDate(kcfg_StartDate->date());
|
|
}
|
|
|
|
#include "ksettingsgeneral.moc"
|