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.
87 lines
3.4 KiB
87 lines
3.4 KiB
/***************************************************************************
|
|
scheduledtransaction.h
|
|
-------------------
|
|
begin : Tue Aug 19 2008
|
|
copyright : (C) 2008 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef SCHEDULEDTRANSACTION_H
|
|
#define SCHEDULEDTRANSACTION_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/transaction.h>
|
|
|
|
namespace KMyMoneyTransactionForm {
|
|
class TransactionForm;
|
|
}; // namespace
|
|
|
|
namespace KMyMoneyRegister {
|
|
|
|
class StdTransactionScheduled : public StdTransaction
|
|
{
|
|
public:
|
|
StdTransactionScheduled(Register* parent, const MyMoneyTransaction& transaction, const MyMoneySplit& split, int uniqueId);
|
|
virtual ~StdTransactionScheduled() {}
|
|
|
|
virtual const char* className(void) { return "StdTransactionScheduled"; }
|
|
|
|
/**
|
|
* This method sets the general paramaters required for the painting of a cell
|
|
* in the register. These are:
|
|
*
|
|
* - background color (alternating)
|
|
* - background color (imported transaction)
|
|
* - background color (matched transaction)
|
|
* - background color (selected transaction)
|
|
* - cellRect (area covering the cell)
|
|
* - textRect (area covering the text)
|
|
* - color of the pen to do the painting of text and lines
|
|
*
|
|
* @param painter pointer to the TQPainter object
|
|
* @param row vertical index of cell in register
|
|
* @param col horizontal index of cell in register
|
|
* @param cellRect ref to TQRect object receiving the area information for the cell
|
|
* @param textRect ref to TQRect object receiving the area information for the text
|
|
* @param cg ref to TQColorGroup object receiving the color information to be used
|
|
* @param brush ref to TQBrush object receiveing the brush information to be used
|
|
*/
|
|
virtual bool paintRegisterCellSetup(TQPainter* painter, int& row, int& col, TQRect& cellRect, TQRect& textRect, TQColorGroup& cg, TQBrush& brush);
|
|
|
|
bool isSelectable(void) const { return true; }
|
|
bool canHaveFocus(void) const { return true; }
|
|
virtual bool isScheduled(void) const { return true; }
|
|
|
|
virtual int sortSamePostDate(void) const { return 4; }
|
|
|
|
// virtual void paintRegisterGrid(TQPainter* painter, int row, int col, const TQRect& r, const TQColorGroup& cg) const;
|
|
|
|
// void registerCellText(TQString& txt, int& align, int row, int col, TQPainter* painter = 0);
|
|
|
|
private:
|
|
unsigned int m_drawCounter;
|
|
};
|
|
|
|
}; // namespace
|
|
|
|
#endif
|
|
// vim:cin:si:ai:et:ts=2:sw=2:
|
|
|