SequenceListItem.h
Go to the documentation of this file.00001 #ifndef SEQUENCE_LIST_ITEM_H
00002 #define SEQUENCE_LIST_ITEM_H
00003
00004 #include <qlistview.h>
00005 #include <qwidget.h>
00006 #include "Sequence.h"
00007
00008 class SequenceListItem : public QCheckListItem {
00009
00010 public:
00011
00012 SequenceListItem( QListView* parent, const QString& text, Sequence sequence );
00013 ~SequenceListItem();
00014
00015 Sequence& getSequence();
00016
00017 virtual void setOn( bool isOn );
00018
00019 private:
00020
00021 Sequence sequence;
00022
00023 };
00024
00025 #endif
00026