16 SigTestSpitter(TEveSelection *
sel,
const TString &prefix) : fSel(
sel), fPrefix(prefix)
18 fSel->
Connect(
"SelectionAdded(TEveElement*)",
"SigTestSpitter",
this,
"Added(TEveElement*)");
19 fSel->
Connect(
"SelectionRemoved(TEveElement*)",
"SigTestSpitter",
this,
"Removed(TEveElement*)");
20 fSel->
Connect(
"SelectionCleared()",
"SigTestSpitter",
this,
"Cleared()");
24 fSel->
Disconnect(
"SelectionAdded(TEveElement*)",
this,
"Added(TEveElement*)");
25 fSel->
Disconnect(
"SelectionRemoved(TEveElement*)",
this,
"Removed(TEveElement*)");
26 fSel->
Disconnect(
"SelectionCleared()",
this,
"Cleared()");
29 void Added(TEveElement *el)
31 printf(
"%s Added 0x%lx '%s'\n", fPrefix.
Data(), (
ULong_t)el, el ? el->GetElementName() :
"");
33 void Removed(TEveElement *el)
35 printf(
"%s Removed 0x%lx '%s'\n", fPrefix.
Data(), (
ULong_t)el, el ? el->GetElementName() :
"");
37 void Cleared() { printf(
"%s Cleared'\n", fPrefix.
Data()); }
44 new SigTestSpitter(
gEve->GetSelection(),
"Selection");
45 new SigTestSpitter(
gEve->GetHighlight(),
"Highlight");
unsigned long ULong_t
Unsigned long integer 4 bytes (unsigned long). Size depends on architecture.
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 ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t sel
static TEveManager * Create(Bool_t map_window=kTRUE, Option_t *opt="FIV")
If global TEveManager* gEve is not set initialize it.
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
Non-static method is used to connect from the signal of this object to the receiver slot.
Bool_t Disconnect(const char *signal=nullptr, void *receiver=nullptr, const char *slot=nullptr)
Disconnects signal of this object from slot of receiver.
const char * Data() const