mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//   list_listviewitem.cpp
 | 
						|
//
 | 
						|
//   A QListViewItem class for RDLogEdit.
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2006,2016 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//   This program is free software; you can redistribute it and/or modify
 | 
						|
//   it under the terms of the GNU General Public License version 2 as
 | 
						|
//   published by the Free Software Foundation.
 | 
						|
//
 | 
						|
//   This program is distributed in the hope that it will be useful,
 | 
						|
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
//   GNU General Public License for more details.
 | 
						|
//
 | 
						|
//   You should have received a copy of the GNU General Public
 | 
						|
//   License along with this program; if not, write to the Free Software
 | 
						|
//   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
//
 | 
						|
 | 
						|
#include <qfontmetrics.h>
 | 
						|
#include <qpainter.h>
 | 
						|
//Added by qt3to4:
 | 
						|
#include <QPixmap>
 | 
						|
 | 
						|
#include <list_listviewitem.h>
 | 
						|
 | 
						|
#include "../icons/greenball.xpm"
 | 
						|
#include "../icons/redball.xpm"
 | 
						|
#include "../icons/whiteball.xpm"
 | 
						|
 | 
						|
ListListViewItem::ListListViewItem(Q3ListView *parent)
 | 
						|
  : Q3ListViewItem(parent)
 | 
						|
{
 | 
						|
  list_track_column=-1;
 | 
						|
  list_tracks=-1;
 | 
						|
  list_total_tracks=0;
 | 
						|
  list_parent=parent;
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Icons
 | 
						|
  //
 | 
						|
  list_whiteball_map=new QPixmap(whiteball_xpm);
 | 
						|
  list_greenball_map=new QPixmap(greenball_xpm);
 | 
						|
  list_redball_map=new QPixmap(redball_xpm);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int ListListViewItem::trackColumn() const
 | 
						|
{
 | 
						|
  return list_track_column;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListListViewItem::setTrackColumn(int col)
 | 
						|
{
 | 
						|
  list_track_column=col;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int ListListViewItem::tracks() const
 | 
						|
{
 | 
						|
  return list_tracks;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListListViewItem::setTracks(int quan)
 | 
						|
{
 | 
						|
  list_tracks=quan;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int ListListViewItem::totalTracks() const
 | 
						|
{
 | 
						|
  return list_total_tracks;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListListViewItem::setTotalTracks(int quan)
 | 
						|
{
 | 
						|
  list_total_tracks=quan;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListListViewItem::paintCell(QPainter *p,const QColorGroup &cg,int column,
 | 
						|
				 int width,int align)
 | 
						|
{
 | 
						|
  if(column!=list_track_column) {
 | 
						|
    Q3ListViewItem::paintCell(p,cg,column,width,align);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  QColor fg=cg.text();
 | 
						|
  QColor bg=cg.base();
 | 
						|
  if(isSelected()) {
 | 
						|
    fg=cg.highlightedText();
 | 
						|
    bg=cg.highlight();
 | 
						|
  }
 | 
						|
  QString str=QString().sprintf("%u / %u",list_tracks,list_total_tracks);
 | 
						|
  QPixmap *icon=list_whiteball_map;
 | 
						|
  if(list_total_tracks>0) {
 | 
						|
    if(list_tracks==list_total_tracks) {
 | 
						|
      icon=list_greenball_map;
 | 
						|
    }
 | 
						|
    else {
 | 
						|
      icon=list_redball_map;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  QFontMetrics *m=new QFontMetrics(p->font());
 | 
						|
  p->setBackgroundColor(bg);
 | 
						|
  p->eraseRect(0,0,width,height());
 | 
						|
  p->setPen(fg);
 | 
						|
  p->drawPixmap(list_parent->itemMargin(),(height()-icon->size().height())/2,
 | 
						|
		*icon);
 | 
						|
  p->drawText(icon->size().width()+10,3*(height()-m->height())/2,str);
 | 
						|
  delete m;
 | 
						|
}
 |