HSpheresSelectionSet.h

Go to the documentation of this file.
00001 
00002 #ifndef _HSpheresSelectionSet_H__20010203__0953__
00003 #define _HSpheresSelectionSet_H__20010203__0953__
00004 
00005 #include "HSelectionSet.h"
00006 
00007 class HSpheresSelectionSet :  public HSelectionSet 
00008 {
00009 private:
00010     HSelectLevel m_SelectLevel;
00011 
00012 public:
00013     HSpheresSelectionSet(HBaseView* view);
00014     ~HSpheresSelectionSet();
00015 
00016     virtual void Select(HC_KEY key, int num_include_keys, HC_KEY * include_keys, bool emit_message = false);
00017     virtual void DeSelect(HC_KEY key, int num_include_keys, HC_KEY * include_keys, bool emit_message = false);
00018     virtual void DeSelect(HC_KEY key, bool emit_message = false);
00019 
00020     virtual void SelectFromMessage(HC_KEY key, int num_include_keys, HC_KEY * include_keys, bool emit_message = false);
00021     virtual void DeSelectFromMessage(HC_KEY key, int num_include_keys, HC_KEY * include_keys, bool emit_message = false);
00022 
00023     void SetSelectLevel(HSelectLevel level) { m_SelectLevel = level; }
00024     const HSelectLevel GetSelectLevel() { return (m_SelectLevel);}
00025 
00026 };
00027 
00028 #endif  // _HSpheresSelectionSet_H__20010203__0953__
00029 
00030 
00031