|
|
|
/***************************************************************************
|
|
|
|
copyright : (C) 2005-2007 by Robby Stephenson
|
|
|
|
email : robby@periapsis.org
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of version 2 of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TELLICO_DETAILEDENTRYITEM_H
|
|
|
|
#define TELLICO_DETAILEDENTRYITEM_H
|
|
|
|
|
|
|
|
class TQTime;
|
|
|
|
class TQTimer;
|
|
|
|
|
|
|
|
#include "entryitem.h"
|
|
|
|
|
|
|
|
namespace Tellico {
|
|
|
|
|
|
|
|
class DetailedListView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Robby Stephenson
|
|
|
|
*/
|
|
|
|
class DetailedEntryItem : public EntryItem {
|
|
|
|
public:
|
|
|
|
enum State { Normal, New, Modified };
|
|
|
|
|
|
|
|
DetailedEntryItem(DetailedListView* parent, Data::EntryPtr entry);
|
|
|
|
~DetailedEntryItem();
|
|
|
|
|
|
|
|
void setState(State state);
|
|
|
|
|
|
|
|
virtual TQColor backgroundColor(int column);
|
|
|
|
virtual void paintCell(TQPainter* p, const TQColorGroup& cg,
|
|
|
|
int column, int width, int align);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Paints a focus indicator on the rectangle (current item). Disable for current items.
|
|
|
|
*/
|
|
|
|
void paintFocus(TQPainter*, const TQColorGroup&, const TQRect&);
|
|
|
|
|
|
|
|
State m_state;
|
|
|
|
TQTime* m_time;
|
|
|
|
TQTimer* m_timer;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|