ROOT logo
// @(#)root/eve:$Id: TEveWindowEditor.h 26561 2008-12-01 17:35:55Z matevz $
// Author: Matevz Tadel 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_TEveWindowEditor
#define ROOT_TEveWindowEditor

#include "TGedFrame.h"

class TGButton;
class TGCheckButton;
class TGNumberEntry;
class TGColorSelect;

class TEveWindow;

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

protected:
   TEveWindow            *fM; // Model object.

   TGCheckButton         *fShowTitleBar;

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

   virtual void SetModel(TObject* obj);

   void DoShowTitleBar();

   ClassDef(TEveWindowEditor, 0); // GUI editor for TEveWindow.
};

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