00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4QMultiGraphItem.h"
00017
00018 #include <iostream.h>
00019
00020 #include "TPad.h"
00021 #include "TMultiGraph.h"
00022
00023 #include "Go4GUIRegistry/TGo4GUIRegistry.h"
00024 #include "Go4GUI/TGo4PreviewPanel.h"
00025 #include "Go4GUI/TGo4MonitoredObject.h"
00026 #include "Go4GUI/TGo4BrowserSlots.h"
00027 #include "Go4GUI/TGo4BrowserStatus.h"
00028 #include "Go4GUI/TGo4Browser.h"
00029 #include "Go4GUI/TGo4QRootCanvas.h"
00030
00031 TGo4QMultiGraphItem::TGo4QMultiGraphItem( QListViewItem* parent, const QString & text, const QString & text1, const QString & text2)
00032 :TGo4QTHItem (parent, "superimpose.png", text, text1, text2)
00033 {
00034 }
00035
00036 TGo4QMultiGraphItem::TGo4QMultiGraphItem( QListView* parent, const QString & text, const QString & text1, const QString & text2)
00037 :TGo4QTHItem (parent, "superimpose.png", text, text1, text2)
00038 {
00039 }
00040
00041 TGo4QMultiGraphItem::~TGo4QMultiGraphItem(){}
00042
00043 void TGo4QMultiGraphItem::DrawObj(TGo4PreviewPanel *viewpanel, TPad* currentpad)
00044 {
00045 if(!AssignDrawPanel(viewpanel, currentpad)) return;
00046 TMultiGraph* Gr=dynamic_cast<TMultiGraph *> (GetWorkObject());
00047 if(Gr!=0)
00048 {
00049 QString realname=Gr->GetName();
00050 TGo4BrowserSlots* browserslots = dynamic_cast <TGo4BrowserSlots *>(fxTGo4GUIRegistry->GetSlotClass("TGo4BrowserSlots"));
00051 TGo4Browser* browser=browserslots->GetBrowserGUI();
00052 if(InFileBrowser())
00053 {
00054 if(browserslots)
00055 {
00056 browserslots->AddObject(Gr,fxDrawPanel->GetQCanvas(),fxDrawPad);
00057 realname=browserslots->GetAddedItemName();
00058
00059
00060
00061 fxDrawPad->cd();
00062 TGo4QItem *memitem = (TGo4QItem*) browser->ListViewLocal->findItem(realname,0);
00063 if (memitem!=0)
00064 {
00065 memitem->DrawObj(fxDrawPanel,fxDrawPad);
00066 }
00067 }
00068 }
00069 else
00070 {
00071 TPad* padsav=fxDrawPanel->GetActivePad();
00072 fxDrawPanel->SetActivePad(fxDrawPad);
00073 fxDrawPanel->ClearPad();
00074 Gr->Draw("AP");
00075 fxDrawPanel->UpdatePad(fxDrawPad, Gr);
00076 fxDrawPanel->SetActivePad(padsav);
00077 }
00078 }
00079
00080
00081 }
00082
00083 void TGo4QMultiGraphItem::UpdateOnline(TObject *fxObj)
00084 {
00085 TMultiGraph* LocalGraph=dynamic_cast <TMultiGraph*>(GetWorkObject());
00086 if(LocalGraph )
00087 {
00088 fxDrawPanel->ClearLegend(fxDrawPad,true);
00089 TGo4QItem::UpdateOnline(fxObj);
00090 DrawObj(fxDrawPanel,fxDrawPad);
00091 UpdateDrawPad();
00092 }
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161 }
00162
00163
00164
00165
00166