Changeset 17037 for fact/tools


Ignore:
Timestamp:
08/23/13 14:54:34 (11 years ago)
Author:
ogrimm
Message:
Evidence GUI ported to qwt 6.1.0. Added highlighting of curves in GUI.
Location:
fact/tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/Edd/Edd.cc

    r14255 r17037  
    8585  N.Channel = Channel;
    8686  N.Trigger = new QwtPlotMarker();
    87   N.Trigger->setSymbol(QwtSymbol(QwtSymbol::Diamond, QBrush(N.Curve->pen().color()), N.Curve->pen(), QSize(10,10)));
     87  N.Trigger->setSymbol(new QwtSymbol(QwtSymbol::Diamond, QBrush(N.Curve->pen().color()), N.Curve->pen(), QSize(10,10)));
    8888  N.Trigger->attach(this);
    8989
     
    778778
    779779  for (int i=0; i<Data.size(); i++) {
    780         Pixel[i]->setPalette(QPalette(Map.color(QwtDoubleInterval(300, 400), Data[i])));
     780        Pixel[i]->setPalette(QPalette(Map.color(QwtInterval(300, 400), Data[i])));
    781781  }
    782782}
     
    10531053  static bool AlarmServerWarned = false;
    10541054
     1055
     1056  // Removed 19 August 2013
     1057  return;
     1058
    10551059  // === Check service Alarm/MasterAlarm ===
    10561060  DimCurrentInfo MasterAlarm("Alarm/MasterAlarm", -1);
  • fact/tools/Edd/Edd.h

    r12940 r17037  
    4949  public slots:
    5050        void OpenRawFile(QString=QString());
    51        
     51        void RemoveService(QwtPlotCurve *) {};
     52               
    5253  signals:
    5354        void PixelData(QVector<double>);
  • fact/tools/Scripts/Logon

    r11368 r17037  
    77if [ -z "$DIMDIR" ]; then export DIMDIR=/usr/local/dim/; fi
    88if [ -z "$QWTDIR" ]; then export QWTDIR=/usr/local/qwt/; fi
    9 if [ -z "$QTDIR" ]; then export QTDIR=/usr/local/Trolltech/Qt-4.6.2; fi
    109
    1110#Set paths
    1211export LD_LIBRARY_PATH=$QWTDIR/lib:$DIMDIR/linux:$LD_LIBRARY_PATH
    13 export PATH=.:$DIMDIR/linux:$QTDIR/bin:$PATH
     12export PATH=.:$DIMDIR/linux:$PATH
Note: See TracChangeset for help on using the changeset viewer.