GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4WidgetProxy.cxx
Go to the documentation of this file.
1 // $Id: TGo4WidgetProxy.cxx 1129 2014-01-21 17:03:57Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #include "TGo4WidgetProxy.h"
15 
16 #include "TPad.h"
17 #include "TGo4Slot.h"
18 #include "QGo4Widget.h"
19 
20 Bool_t TGo4WidgetProxy::ProcessEvent(TGo4Slot* slot, TGo4Slot* source, Int_t id, void* param)
21 {
22  if (fWidget==0) return kTRUE;
23 
24  TGo4Slot* src = (TGo4Slot*) source;
25 
26  if ((id==TGo4Slot::evObjAssigned) ||
28  fWidget->ProcessSignal(src->GetName(), true, src->GetAssignedObject(), src);
29  else
30  if (id==TGo4Slot::evDelete) {
31  fWidget->ProcessSignal(src->GetName(), false, 0, src);
32  }
33  else
34  if (id==TGo4Slot::evObjDeleted)
35  fWidget->ProcessSignal(src->GetName(), false, (TObject*)param, src);
36  else
38  fWidget->ProcessSignal("TGo4Slot::evSubslotUpdated", true, (TObject*)param, src);
39 
40  // process further events which important for data management
41  return (id==TGo4Slot::evDelete);
42 }
43 
45 {
46  if (fWidget)
47  fWidget->ProcessSignal("PadRangeAxisChanged", true, 0, 0);
48 }
49 
51 {
52  if (fWidget)
53  fWidget->ProcessSignal("PadModified", true, 0, 0);
54 }
void ProcessSignal(const char *linkname, bool assigned, TObject *obj, TGo4Slot *slot)
Definition: QGo4Widget.cpp:250
TObject * GetAssignedObject()
Definition: TGo4Slot.cxx:373
virtual void PadRangeAxisChanged()
QGo4Widget * fWidget
virtual void PadModified()
virtual Bool_t ProcessEvent(TGo4Slot *slot, TGo4Slot *source, Int_t id, void *param)