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.
117 lines
2.9 KiB
117 lines
2.9 KiB
/***************************************************************************
|
|
registeritem.cpp - description
|
|
-------------------
|
|
begin : Tue Jun 13 2006
|
|
copyright : (C) 2000-2006 by Thomas Baumgart
|
|
email : Thomas Baumgart <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
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/registeritem.h>
|
|
#include <kmymoney/register.h>
|
|
|
|
#include "../kmymoneyglobalsettings.h"
|
|
|
|
using namespace KMyMoneyRegister;
|
|
|
|
TQDate RegisterItem::nullDate;
|
|
MyMoneyMoney RegisterItem::nullValue;
|
|
|
|
RegisterItem::RegisterItem() :
|
|
m_parent(0),
|
|
m_prev(0),
|
|
m_next(0)
|
|
{
|
|
init();
|
|
}
|
|
|
|
RegisterItem::RegisterItem(Register* parent) :
|
|
m_parent(parent),
|
|
m_prev(0),
|
|
m_next(0)
|
|
{
|
|
init();
|
|
parent->addItem(this);
|
|
}
|
|
|
|
void RegisterItem::init(void)
|
|
{
|
|
m_startRow = 0;
|
|
m_rowsRegister = 1;
|
|
m_rowsForm = 1;
|
|
m_visible = true;
|
|
}
|
|
|
|
RegisterItem::~RegisterItem()
|
|
{
|
|
m_parent->removeItem(this);
|
|
}
|
|
|
|
void RegisterItem::setParent(Register* parent)
|
|
{
|
|
m_parent = parent;
|
|
}
|
|
|
|
void RegisterItem::setNumRowsRegister(int rows)
|
|
{
|
|
if(rows != m_rowsRegister) {
|
|
m_rowsRegister = rows;
|
|
if(m_parent)
|
|
m_parent->forceUpdateLists();
|
|
}
|
|
}
|
|
|
|
bool RegisterItem::markVisible(bool visible)
|
|
{
|
|
if(m_visible == visible)
|
|
return false;
|
|
m_visible = visible;
|
|
return true;
|
|
}
|
|
|
|
void RegisterItem::setVisible(bool visible)
|
|
{
|
|
if(markVisible(visible) && m_parent) {
|
|
if(visible) {
|
|
for(int i = startRow(); i < startRow() + numRowsRegister(); ++i) {
|
|
m_parent->showRow(i);
|
|
m_parent->setRowHeight(i, rowHeightHint());
|
|
}
|
|
} else {
|
|
for(int i = startRow(); i < startRow() + numRowsRegister(); ++i) {
|
|
m_parent->hideRow(i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int RegisterItem::rowHeightHint(void) const
|
|
{
|
|
if(!m_visible)
|
|
return 0;
|
|
|
|
if(m_parent) {
|
|
return m_parent->rowHeightHint();
|
|
}
|
|
|
|
TQFontMetrics fm( KMyMoneyGlobalSettings::listCellFont() );
|
|
return fm.lineSpacing()+6;
|
|
}
|