Client program which allows the snooping of objects from a spyserv process.
To run this demo do the following (see spyserv.C):
- open two or more windows
- start root in all windows
- execute in the first window: .x spyserv.C (or spyserv.C++)
- execute in the other window(s): .x spy.C (or spy.C++)
- in the "spy" client windows click the "Connect" button and snoop the histograms by clicking on the "hpx", "hpxpy" and "hprof" buttons
void Connect();
void DoButton();
};
{
return;
switch (
btn->WidgetId()) {
case 1:
break;
case 2:
fSock->Send(
"get hpxpy");
break;
case 3:
fSock->Send(
"get hprof");
break;
}
Error(
"Spy::DoButton",
"error receiving message");
return;
}
if (fHist) delete fHist;
else
}
}
void Spy::Connect()
{
}
Spy::Spy()
{
fMain->AddFrame(fCanvas,
fLcan);
fHpx->Connect(
"Clicked()",
"Spy",
this,
"DoButton()");
fHpxpy->Connect(
"Clicked()",
"Spy",
this,
"DoButton()");
fHprof->Connect(
"Clicked()",
"Spy",
this,
"DoButton()");
fConnect->Connect(
"Clicked()",
"Spy",
this,
"Connect()");
fMain->SetWindowName("Spy on SpyServ");
fMain->MapSubwindows();
fMain->Resize(fMain->GetDefaultSize());
fMain->MapWindow();
fHist = 0;
}
Spy::~Spy()
{
delete fHist;
delete fQuit;
delete fCanvas;
delete fMain;
}
{
}
#define RQ_OBJECT(sender_class)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
R__EXTERN void * gTQSender
void Update() override
Update canvas pad buffers.
A composite frame that layout their children in horizontal way.
This class describes layout hints used by the layout classes.
Defines top level windows that interact with the system Window Manager.
Yield an action as soon as it is clicked.
TH1 is the base class of all histogram classes in ROOT.
void Draw(Option_t *option="") override
Draw this histogram with options.
void Modified(Bool_t flag=true) override
Mark pad modified Will be repainted when TCanvas::Update() will be called next time.
This class creates a TGCanvas in which a TCanvas is created.
TCanvas * GetCanvas() const
- Author
- Fons Rademakers
Definition in file spy.C.