ROOT logo
// $Id: MetaSubViewInfo.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_MetaSubViewInfo_H
#define GledCore_MetaSubViewInfo_H

#include <Glasses/ZList.h>

class MetaSubViewInfo : public ZList {
  MAC_RNR_FRIENDS(MetaSubViewInfo);

private:
  void _init();

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

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

  void Position(int x, int y);  // X{E}

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


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