// @(#)root/base:$Name: $:$Id: TControlBarImp.h,v 1.1.1.1 2000/05/16 17:00:39 rdm Exp $ // Author: Nenad Buncic 20/02/96 /************************************************************************* * Copyright (C) 1995-2000, 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_TControlBarImp #define ROOT_TControlBarImp //////////////////////////////////////////////////////////////////////////////// // // // TControlBarImp // // // // ABC describing GUI independent control bar (see TControlBar) // // // //////////////////////////////////////////////////////////////////////////////// #ifndef ROOT_Rtypes #include "Rtypes.h" #endif class TControlBar; class TControlBarImp { protected: TControlBar *fControlBar; //TControlBar associated with this implementation Int_t fXpos; //Initial x position Int_t fYpos; //Initial y position public: TControlBarImp(TControlBar *c, const char * = "") : fControlBar(c) { } TControlBarImp(TControlBar *c, const char *, Int_t, Int_t) : fControlBar(c) { } virtual ~TControlBarImp() { } virtual TControlBar *GetControlBar() { return fControlBar; } virtual void Create() { } virtual void Hide() { } virtual void Show() { } ClassDef(TControlBarImp,0) //GUI independent controlbar abc }; #endif