00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 00017 void TGo4CreateNewDynEntry::init() 00018 { 00019 setAcceptDrops(FALSE); 00020 EntryName->setText("entry"); 00021 EntryTitle->setText("Dynamic entry title"); 00022 EntryType->setCurrentItem(0); 00023 } 00024 00025 TGo4DynamicEntry* TGo4CreateNewDynEntry::MakeEntry() 00026 { 00027 TGo4DynamicEntry* entry = 0; 00028 00029 if (EntryType->currentItem()==0) 00030 entry = new TGo4HistogramEntry(); 00031 else 00032 if (EntryType->currentItem()==1) 00033 entry = new TGo4TreeHistogramEntry(); 00034 00035 if (entry!=0) { 00036 entry->EnableProcessing(kFALSE); 00037 entry->SetName(EntryName->text().latin1()); 00038 entry->SetTitle(EntryTitle->text().latin1()); 00039 } 00040 00041 return entry; 00042 } 00043 00044 //----------------------------END OF GO4 SOURCE FILE ---------------------