~ubuntu-branches/ubuntu/precise/stellarium/precise

« back to all changes in this revision

Viewing changes to src/modules/MilkyWay.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2009-03-13 20:07:22 UTC
  • mfrom: (1.1.8 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090313200722-l66s4zy2s3e8up0s
Tags: 0.10.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define _MILKYWAY_HPP_
22
22
 
23
23
#include "StelModule.hpp"
24
 
#include "vecmath.h"
25
 
#include "STextureTypes.hpp"
 
24
#include "VecMath.hpp"
 
25
#include "StelTextureTypes.hpp"
26
26
 
27
27
//! @class MilkyWay 
28
28
//! Manages the displaying of the Milky Way.
52
52
        virtual void updateI18n() {;}
53
53
        
54
54
        //! Does nothing in the MilkyWay module.
55
 
        virtual void updateSkyCulture() {;}
 
55
        //! @param skyCultureDir the name of the directory containing the sky culture to use.
 
56
        virtual void updateSkyCulture(const QString& skyCultureDir) {;}
56
57
        
57
58
        //! Used to determine the order in which the various modules are drawn.
58
59
        virtual double getCallOrder(StelModuleActionName actionName) const {return 1.;}
81
82
        void setTexture(const QString& texFile);
82
83
        
83
84
        float radius;
84
 
        STextureSP tex;
 
85
        StelTextureSP tex;
85
86
        Vec3f color;
86
87
        float intensity;
87
88
        class LinearFader* fader;