- Timestamp:
- 06/19/12 08:44:57 (12 years ago)
- Location:
- fact
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/Evidence/GUI.cc
r14061 r14187 43 43 QGridLayout *Layout = new QGridLayout(M->centralWidget()); 44 44 45 // If service ends with 'C' make text display, otherwise numeric plot 45 46 if (Format.endsWith('C', Qt::CaseInsensitive)) Layout->addWidget(new EddText(Service), 0, 0); 46 else 47 else { 47 48 EddPlot *W = new EddPlot(Service, FromIndex); 49 50 // If service is array and no index given, try to find out how many indices exist and add all 51 if (FromIndex == -1 && Format.size() == 1) { 52 DimCurrentInfo X(Service, NULL, 0); 53 54 FromIndex = 0; 55 ToIndex = EvidenceServer::Tokenize(EvidenceServer::ToString(Format.toAscii().data(), X.getData(), X.getSize()), " ").size() - 1; 56 } 57 58 // Add all requested indices 48 59 for (int i=FromIndex+1; i<=ToIndex; i++) W->AddService(Service,i); 49 60 -
fact/Evidence/readme.txt
r14174 r14187 66 66 services subscribed to. 67 67 13/6/2012 Removed calling Message() before abort() in signal handler, as Message() might get stuck 68 19/6/2012 Giving no indices in OpenHistory() will try to open plot for all members of an array -
fact/tools/Edd/Edd.cc
r12940 r14187 950 950 // Open dialog and open history window 951 951 QString Result = QInputDialog::getItem(this, "Edd Request", 952 "Enter or choose DIM service name (add index or index range a-b separated by colon)", List, 0, true, &OK);952 "Enter or choose DIM service name\n\nAdd index or index range a-b separated by colon\nWithout index, all array members will be plotted (for numeric data)", List, 0, true, &OK); 953 953 954 954 // Check if cancelled or empty data
Note:
See TracChangeset
for help on using the changeset viewer.