SequenceListItem.cpp

Go to the documentation of this file.
00001 #include "SequenceListItem.h"
00002 
00003 SequenceListItem::SequenceListItem( QListView* parent, const QString& text, Sequence sequence )
00004     : QCheckListItem( parent, text, QCheckListItem::CheckBox ), sequence( sequence ) {
00005 }
00006 
00007 SequenceListItem::~SequenceListItem() {
00008 }
00009 
00010 void SequenceListItem::setOn( bool isOn ) {
00011     QCheckListItem::setOn( isOn );
00012     sequence.setEnabled( isOn );
00013 }
00014 
00015 Sequence& SequenceListItem::getSequence() {
00016     return( sequence );
00017 }

Generated on Sun Mar 1 17:30:47 2009 for toMOTko by  doxygen 1.5.6