ROOT logo
// @(#)root/eve:$Id: TEvePointSetArrayEditor.h 21054 2007-11-26 18:00:41Z matevz $
// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007

/*************************************************************************
 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TEvePointSetArrayEditor
#define ROOT_TEvePointSetArrayEditor

#include "TGedFrame.h"

class TGCheckButton;
class TGNumberEntry;
class TGColorSelect;

class TEveGValuator;
class TEveGDoubleValuator;

class TEvePointSetArray;

class TEvePointSetArrayEditor : public TGedFrame
{
   TEvePointSetArrayEditor(const TEvePointSetArrayEditor&);            // Not implemented
   TEvePointSetArrayEditor& operator=(const TEvePointSetArrayEditor&); // Not implemented

protected:
   TEvePointSetArray   *fM;       // Model object.

   TEveGDoubleValuator *fRange;   // Control for displayed range of the separating quantity.

public:
   TEvePointSetArrayEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
                           UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
   ~TEvePointSetArrayEditor();

   virtual void SetModel(TObject* obj);

   void DoRange();

   ClassDef(TEvePointSetArrayEditor, 1); // Editor for TEvePointSetArray class.
};

#endif
 TEvePointSetArrayEditor.h:1
 TEvePointSetArrayEditor.h:2
 TEvePointSetArrayEditor.h:3
 TEvePointSetArrayEditor.h:4
 TEvePointSetArrayEditor.h:5
 TEvePointSetArrayEditor.h:6
 TEvePointSetArrayEditor.h:7
 TEvePointSetArrayEditor.h:8
 TEvePointSetArrayEditor.h:9
 TEvePointSetArrayEditor.h:10
 TEvePointSetArrayEditor.h:11
 TEvePointSetArrayEditor.h:12
 TEvePointSetArrayEditor.h:13
 TEvePointSetArrayEditor.h:14
 TEvePointSetArrayEditor.h:15
 TEvePointSetArrayEditor.h:16
 TEvePointSetArrayEditor.h:17
 TEvePointSetArrayEditor.h:18
 TEvePointSetArrayEditor.h:19
 TEvePointSetArrayEditor.h:20
 TEvePointSetArrayEditor.h:21
 TEvePointSetArrayEditor.h:22
 TEvePointSetArrayEditor.h:23
 TEvePointSetArrayEditor.h:24
 TEvePointSetArrayEditor.h:25
 TEvePointSetArrayEditor.h:26
 TEvePointSetArrayEditor.h:27
 TEvePointSetArrayEditor.h:28
 TEvePointSetArrayEditor.h:29
 TEvePointSetArrayEditor.h:30
 TEvePointSetArrayEditor.h:31
 TEvePointSetArrayEditor.h:32
 TEvePointSetArrayEditor.h:33
 TEvePointSetArrayEditor.h:34
 TEvePointSetArrayEditor.h:35
 TEvePointSetArrayEditor.h:36
 TEvePointSetArrayEditor.h:37
 TEvePointSetArrayEditor.h:38
 TEvePointSetArrayEditor.h:39
 TEvePointSetArrayEditor.h:40
 TEvePointSetArrayEditor.h:41
 TEvePointSetArrayEditor.h:42
 TEvePointSetArrayEditor.h:43
 TEvePointSetArrayEditor.h:44
 TEvePointSetArrayEditor.h:45
 TEvePointSetArrayEditor.h:46
 TEvePointSetArrayEditor.h:47
 TEvePointSetArrayEditor.h:48