selection.h
author insilmaril
Tue, 21 Feb 2006 16:18:23 +0000
changeset 217 375be2baa976
parent 0 7a96bd401351
child 2 608f976aa7bb
child 364 7b74fa3772bf
permissions -rw-r--r--
rudimentary mmap import
     1 #ifndef SELECTIONOBJ_H
     2 #define SELECTIONOBJ_H
     3 
     4 #include "linkablemapobj.h"
     5 #include <qptrlist.h>
     6 
     7 class Selection 
     8 {
     9 public:
    10 	Selection ();
    11 	Selection (const Selection&);
    12 	~Selection();
    13 	void init();
    14 	void copy(const Selection&);
    15 	void clear();
    16 	
    17 	bool select (LinkableMapObj*);
    18 	void unselect (LinkableMapObj*);
    19 	bool isEmpty();
    20 	uint count();
    21 
    22 private:
    23 	QPtrList <LinkableMapObj> selectList;
    24 };
    25 #endif
    26