Changeset 151 for Evidence/Edd


Ignore:
Timestamp:
01/18/10 13:10:57 (15 years ago)
Author:
ogrimm
Message:
DColl publishes also current data file name
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Evidence/Edd/Edd.cc

    r142 r151  
    597597  MainLayout = new QGridLayout(MainWidget);
    598598
     599  Value = new Edd_Indicator("Alarm/Status");
     600  Value->setMaximumWidth(200);
     601  MainLayout->addWidget(Value, 0, 0, 1, 2);     
     602
     603  Value = new Edd_Indicator("Alarm/MasterAlarm");
     604  MainLayout->addWidget(Value, 0, 1, 1, 1);
     605
     606  Textout = new Edd_Textout("Alarm/Summary");
     607  Textout->Accumulate = false;
     608  Textout->setMaximumWidth(200);
     609  Textout->setMaximumHeight(150);
     610  MainLayout->addWidget(Textout, 1, 0, 1, 2);
     611
     612  Value = new Edd_Indicator("DColl/Status");
     613  Value->setMaximumWidth(200);
     614  MainLayout->addWidget(Value, 3, 0, 1, 2);     
     615
    599616  Value = new Edd_Indicator("DColl/DataSizekB");
    600   MainLayout->addWidget(Value, 3, 5, 1, 1);
     617  MainLayout->addWidget(Value, 4, 0, 1, 1);
    601618
    602619  Value = new Edd_Indicator("DColl/LogSizekB");
    603   MainLayout->addWidget(Value, 4, 5, 1, 1);
     620  MainLayout->addWidget(Value, 4, 1, 1, 1);
     621
     622  Value = new Edd_Indicator("DColl/CurrentFile");
     623  Value->setMaximumWidth(400);
     624  MainLayout->addWidget(Value, 5, 0, 1, 3);
     625
     626  Value = new Edd_Indicator("Config/Status");
     627  Value->setMaximumWidth(200);
     628  MainLayout->addWidget(Value, 6, 0, 1, 2);     
    604629
    605630  Value = new Edd_Indicator("Config/ModifyTime");
    606631  Value->setMaximumWidth(200);
    607632  Value->ShowAsTime = true;
    608   MainLayout->addWidget(Value, 5, 5, 1, 1);
    609 
    610   Value = new Edd_Indicator("Alarm/MasterAlarm");
    611   MainLayout->addWidget(Value, 2, 0, 1, 1);
    612 
    613   Textout = new Edd_Textout("Alarm/Summary");
    614   Textout->Accumulate = false;
    615   MainLayout->addWidget(Textout, 3, 0, 2, 1);
     633  MainLayout->addWidget(Value, 7, 0, 1, 1);
     634
    616635
    617636  // Layout of all widgets
Note: See TracChangeset for help on using the changeset viewer.