Skip to content
Snippets Groups Projects
Select Git revision
  • 5b1c6d30f085a8c42832653b86296da0112ee854
  • master default
  • mingw_gcc44
  • release_ABP1_012
  • release_ABP1_008
  • release_ABP1_006
  • release_ABP1_007
  • release_ABP1_005
  • release_ABP1_004
  • release_ABP1_003
  • pre_release_0.15
  • release_ABP1_001
  • release_ABP1_002
  • pre_release_0.13
  • pre_release_0.14
  • pre_release_0.11
  • pre_release_0.12
  • pre_release_0.10
  • pre_release_0.09
  • pre_release_0.08
20 results

SDL_sysevents.c.patch

Blame
  • Forked from einsteinathome / graphicsframework
    Source project has a limited visibility.
    • Oliver Bock's avatar
      bf200e93
      Added patch for SDL · bf200e93
      Oliver Bock authored
      * The BOINC v6 screensaver expects the graphics app to bear a specific window class name
      * It exits if the graphics app can't be found by that name!
      * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
      bf200e93
      History
      Added patch for SDL
      Oliver Bock authored
      * The BOINC v6 screensaver expects the graphics app to bear a specific window class name
      * It exits if the graphics app can't be found by that name!
      * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
    plotdata.h 647 B
    #ifndef PLOTDATA_H
    #define PLOTDATA_H
    
    #include <QObject>
    #include <QVector>
    #include <QString>
    
    #include "common.h"
    
    class PlotData : public QObject
    {
        Q_OBJECT
    
    public:
        PlotData();
    
        // let's make these private and add getters/setters later :-p
        QVector<double> m_dataLHO;
        QVector<double> m_dataLLO;
        QVector<double> m_dataVirgo;
    
        double m_ampLHO;
        double m_ampLLO;
        double m_ampVirgo;
    
        double m_phiLHO;
        double m_phiLLO;
        double m_phiVirgo;
    
        double m_dtLHO;
        double m_dtLLO;
        double m_dtVirgo;
    
        QString m_colorLHO;
        QString m_colorLLO;
        QString m_colorVirgo;
    };
    
    #endif // PLOTDATA_H