summaryrefslogtreecommitdiff
path: root/libopie2/opieui/olistview.cpp
authormickeyl <mickeyl>2004-03-05 21:36:58 (UTC)
committer mickeyl <mickeyl>2004-03-05 21:36:58 (UTC)
commitb9d58b616102970872129b5bc2f55569910f5c03 (patch) (side-by-side diff)
tree593b40cce6f3da75593c90bff337b9b9c5092f7e /libopie2/opieui/olistview.cpp
parent4a18103940564be8585af8121203561e16f0a32c (diff)
downloadopie-b9d58b616102970872129b5bc2f55569910f5c03.zip
opie-b9d58b616102970872129b5bc2f55569910f5c03.tar.gz
opie-b9d58b616102970872129b5bc2f55569910f5c03.tar.bz2
add OCheckListItem
change my email address
Diffstat (limited to 'libopie2/opieui/olistview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/olistview.cpp153
1 files changed, 150 insertions, 3 deletions
diff --git a/libopie2/opieui/olistview.cpp b/libopie2/opieui/olistview.cpp
index 84617f8..0ee2fde 100644
--- a/libopie2/opieui/olistview.cpp
+++ b/libopie2/opieui/olistview.cpp
@@ -1,6 +1,6 @@
/*
                This file is part of the Opie Project
- =. (C) 2003 Michael 'Mickey' Lauer <mickey@Vanille.de>
+ =. (C) 2003-2004 Michael 'Mickey' Lauer <mickey@Vanille.de>
.=l.
           .>+-=
 _;:,     .>    :=|. This program is free software; you can
@@ -174,7 +174,7 @@ void OListView::serializeFrom( QDataStream& s )
int cols;
s >> cols;
- qDebug( "read number of columns = %d", cols );
+ odebug << "read number of columns = " << cols << oendl;
while ( columns() < cols ) addColumn( QString::null );
@@ -188,7 +188,7 @@ void OListView::serializeFrom( QDataStream& s )
int items;
s >> items;
- qDebug( "read number of items = %d", items );
+ odebug << "read number of items = " << items << oendl;
for ( int i = 0; i < items; ++i )
{
@@ -200,6 +200,30 @@ void OListView::serializeFrom( QDataStream& s )
}
+
+void OListView::expand()
+{
+ odebug << "OListView::expand" << oendl;
+
+ QListViewItemIterator it( this );
+ while ( it.current() ) {
+ it.current()->setOpen( true );
+ ++it;
+ }
+}
+
+
+void OListView::collapse()
+{
+ odebug << "OListView::collapse" << oendl;
+ QListViewItemIterator it( this );
+ while ( it.current() ) {
+ it.current()->setOpen( false );
+ ++it;
+ }
+}
+
+
QDataStream& operator<<( QDataStream& s, const OListView& lv )
{
lv.serializeTo( s );
@@ -445,6 +469,129 @@ QDataStream& operator>>( QDataStream& s, OListViewItem& lvi )
/*======================================================================================
+ * OCheckListItem
+ *======================================================================================*/
+
+OCheckListItem::OCheckListItem( QCheckListItem* parent, const QString& text, Type t )
+ :QCheckListItem( parent, text, t )
+{
+ init();
+}
+
+
+OCheckListItem::OCheckListItem( QListViewItem* parent, const QString& text, Type t)
+ :QCheckListItem( parent, text, t )
+{
+ init();
+}
+
+
+OCheckListItem::OCheckListItem( QListView* parent, const QString& text, Type t )
+ :QCheckListItem( parent, text, t )
+{
+ init();
+}
+
+
+OCheckListItem::OCheckListItem( QListViewItem* parent, const QString& text, const QPixmap& p )
+ :QCheckListItem( parent, text, p )
+{
+ init();
+}
+
+
+OCheckListItem::OCheckListItem( QListView* parent, const QString& text, const QPixmap& p )
+ :QCheckListItem( parent, text, p )
+{
+ init();
+}
+
+
+OCheckListItem::~OCheckListItem()
+{
+}
+
+void OCheckListItem::init()
+{
+ m_known = false;
+}
+
+
+const QColor &OCheckListItem::backgroundColor()
+{
+ return isAlternate() ? static_cast<OListView*>(listView())->alternateBackground() :
+ listView()->viewport()->colorGroup().base();
+}
+
+
+bool OCheckListItem::isAlternate()
+{
+ OListView *lv = static_cast<OListView*>( listView() );
+
+ // check if the item above is an OCheckListItem
+ OCheckListItem *above = static_cast<OCheckListItem*>( itemAbove() );
+ /*if (! itemAbove()->inherits( "OCheckListItem" )) return false;*/
+
+ // check if we have a valid alternate background color
+ if (!(lv && lv->alternateBackground().isValid())) return false;
+
+ m_known = above ? above->m_known : true;
+ if (m_known)
+ {
+ m_odd = above ? !above->m_odd : false;
+ }
+ else
+ {
+ OCheckListItem *item;
+ bool previous = true;
+ if (parent())
+ {
+ item = static_cast<OCheckListItem *>(parent());
+ if ( item /*&& item->inherits( "OCheckListItem" )*/ ) previous = item->m_odd;
+ item = static_cast<OCheckListItem *>(parent()->firstChild());
+ /* if ( !item.inherits( "OCheckListItem" ) item = 0; */
+ }
+ else
+ {
+ item = static_cast<OCheckListItem *>(lv->firstChild());
+ }
+
+ while(item)
+ {
+ item->m_odd = previous = !previous;
+ item->m_known = true;
+ item = static_cast<OCheckListItem *>(item->nextSibling());
+ /* if (!item.inherits( "OCheckListItem" ) ) break; */
+ }
+ }
+ return m_odd;
+}
+
+
+void OCheckListItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment)
+{
+ QColorGroup _cg = cg;
+ const QPixmap *pm = listView()->viewport()->backgroundPixmap();
+ if (pm && !pm->isNull())
+ {
+ _cg.setBrush( QColorGroup::Base, QBrush(backgroundColor(), *pm) );
+ p->setBrushOrigin( -listView()->contentsX(), -listView()->contentsY() );
+ }
+ else if ( isAlternate() )
+ {
+ _cg.setColor( QColorGroup::Base, static_cast<OListView*>( listView() )->alternateBackground() );
+ }
+ QCheckListItem::paintCell( p, _cg, column, width, alignment );
+
+ //FIXME: Use styling here!
+
+ const QPen& pen = static_cast<OListView*>( listView() )->columnSeparator();
+ p->setPen( pen );
+ p->drawLine( width-1, 0, width-1, height() );
+}
+
+
+/*======================================================================================
* ONamedListView
*======================================================================================*/