~oopsdude/stellarium/stellarium-whatsuptonight

« back to all changes in this revision

Viewing changes to plugins/Exoplanets/src/Exoplanets.hpp

  • Committer: Alexander Wolf
  • Date: 2012-11-23 15:39:10 UTC
  • Revision ID: alex.v.wolf@gmail.com-20121123153910-taijk93qz6aaaste
added distribution mode for exoplanets

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
        //! @param b if true, updates will be enabled, else they will be disabled
122
122
        void setUpdatesEnabled(bool b) {updatesEnabled=b;}
123
123
 
 
124
        bool getDisplayMode(void) {return distributionEnabled;}
 
125
        void setDisplayMode(bool b) {distributionEnabled=b;}
 
126
 
124
127
        //! get the date and time the TLE elements were updated
125
128
        QDateTime getLastUpdate(void) {return lastUpdate;}
126
129
 
198
201
        bool updatesEnabled;
199
202
        QDateTime lastUpdate;
200
203
        int updateFrequencyHours;
 
204
        bool distributionEnabled;
201
205
 
202
206
        QSettings* conf;
203
207