ROOT logo
// $Id: MetaViewInfo.h 2088 2008-11-23 20:26:46Z matevz $

// Copyright (C) 1999-2008, Matevz Tadel. All rights reserved.
// This file is part of GLED, released under GNU General Public License version 2.
// For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/.

#ifndef GledCore_MetaViewInfo_H
#define GledCore_MetaViewInfo_H

#include <Glasses/ZList.h>

class MetaViewInfo : public ZList {
  MAC_RNR_FRIENDS(MetaViewInfo);

private:
  void _init();

protected:
  Int_t		mW;        // X{GS} 7 Value(-range=>[1,256,1], -join=>1)
  Int_t		mH;        // X{GS} 7 Value(-range=>[1,256,1])

  Bool_t	bExpertP;  // X{GS} 7 Bool()

public:
  MetaViewInfo(const Text_t* n="MetaViewInfo", const Text_t* t=0) :
    ZList(n,t) { _init(); }

  void Size(int w, int h);  // X{E}

#include "MetaViewInfo.h7"
  ClassDef(MetaViewInfo, 1);
}; // endclass MetaViewInfo


#endif
 MetaViewInfo.h:1
 MetaViewInfo.h:2
 MetaViewInfo.h:3
 MetaViewInfo.h:4
 MetaViewInfo.h:5
 MetaViewInfo.h:6
 MetaViewInfo.h:7
 MetaViewInfo.h:8
 MetaViewInfo.h:9
 MetaViewInfo.h:10
 MetaViewInfo.h:11
 MetaViewInfo.h:12
 MetaViewInfo.h:13
 MetaViewInfo.h:14
 MetaViewInfo.h:15
 MetaViewInfo.h:16
 MetaViewInfo.h:17
 MetaViewInfo.h:18
 MetaViewInfo.h:19
 MetaViewInfo.h:20
 MetaViewInfo.h:21
 MetaViewInfo.h:22
 MetaViewInfo.h:23
 MetaViewInfo.h:24
 MetaViewInfo.h:25
 MetaViewInfo.h:26
 MetaViewInfo.h:27
 MetaViewInfo.h:28
 MetaViewInfo.h:29
 MetaViewInfo.h:30
 MetaViewInfo.h:31
 MetaViewInfo.h:32
 MetaViewInfo.h:33
 MetaViewInfo.h:34
 MetaViewInfo.h:35