Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TQClass.h
Go to the documentation of this file.
1// @(#)root/base:$Id$
2// Author: Valeriy Onuchin & Fons Rademakers 15/10/2000
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TQClass
13#define ROOT_TQClass
14
15//////////////////////////////////////////////////////////////////////////
16// //
17// This is part of the ROOT implementation of the Qt object //
18// communication mechanism (see also //
19// http://www.troll.no/qt/metaobjects.html) //
20// //
21// See TQObject for details. //
22// //
23// This implementation is provided by //
24// Valeriy Onuchin (onuchin@sirius.ihep.su). //
25// //
26//////////////////////////////////////////////////////////////////////////
27
28#include "TQObject.h"
29#include "TClass.h"
30
31// This class makes it possible to have a single connection from
32// all objects of the same class
33class TQClass : public TQObject, public TClass {
34
35private:
36 TQClass(const TClass&) = delete;
37 TQClass& operator=(const TQClass&) = delete;
38
39friend class TQObject;
40
41public:
42 TQClass(const char *name, Version_t cversion,
43 const std::type_info &info, TVirtualIsAProxy *isa,
44 const char *dfil = nullptr, const char *ifil = nullptr,
45 Int_t dl = 0, Int_t il = 0) :
46 TQObject(),
47 TClass(name, cversion, info,isa,dfil, ifil, dl, il) { }
48
49 virtual ~TQClass() { Disconnect(); }
50
51 ClassDefOverride(TQClass,0) // Class with connections
52};
53
54
55//---- Class Initialization Behavior --------------------------------------
56//
57// This Class and Function are automatically used for classes inheriting from
58// TQObject. They make it possible to have a single connection from all
59// objects of the same class.
60namespace ROOT {
61namespace Internal {
62 class TDefaultInitBehavior;
64 public:
66 const std::type_info &info, TVirtualIsAProxy *isa,
67 const char *dfil, const char *ifil,
68 Int_t dl, Int_t il) const override
69 {
70 return new TQClass(cname, id, info, isa, dfil, ifil,dl, il);
71 }
72 };
73
75 {
77 return behave;
78 }
79}
80}
81
82
83#endif
84
short Version_t
Definition RtypesCore.h:65
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char cname
char name[80]
Definition TGX11.cxx:110
TClass * CreateClass(const char *cname, Version_t id, const std::type_info &info, TVirtualIsAProxy *isa, const char *dfil, const char *ifil, Int_t dl, Int_t il) const override
Definition TQClass.h:65
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:81
TQClass & operator=(const TQClass &)=delete
TQClass(const char *name, Version_t cversion, const std::type_info &info, TVirtualIsAProxy *isa, const char *dfil=nullptr, const char *ifil=nullptr, Int_t dl=0, Int_t il=0)
Definition TQClass.h:42
virtual ~TQClass()
Definition TQClass.h:49
TQClass(const TClass &)=delete
This is the ROOT implementation of the Qt object communication mechanism (see also http://www....
Definition TQObject.h:48
Bool_t Disconnect(const char *signal=nullptr, void *receiver=nullptr, const char *slot=nullptr)
Disconnects signal of this object from slot of receiver.
const TInitBehavior * DefineBehavior(void *, void *)
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.