~alexwolf/stellarium/config-flags

« back to all changes in this revision

Viewing changes to src/core/modules/GridLinesMgr.hpp

  • Committer: Timothy Reaves
  • Date: 2011-06-24 03:22:05 UTC
  • mfrom: (4900.1.3 horizon)
  • Revision ID: treaves@silverfieldstech.com-20110624032205-l26mhuzeehahx00m
MergeĀ lp:~alexwolf/stellarium/horizon

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
        //! Set the color of the Meridian Line.
128
128
        void setColorMeridianLine(const Vec3f& v);
129
129
 
 
130
        //! Set flag for displaying Horizon Line.
 
131
        void setFlagHorizonLine(bool b);
 
132
        //! Get flag for displaying Horizon Line.
 
133
        bool getFlagHorizonLine(void) const;
 
134
        //! Get the current color of the Horizon Line.
 
135
        Vec3f getColorHorizonLine(void) const;
 
136
        //! Set the color of the Horizon Line.
 
137
        void setColorHorizonLine(const Vec3f& v);
 
138
 
130
139
private slots:
131
140
        //! Sets the colors of: grids and great circles, Equatorial Grid, Azimuthal Grid, 
132
141
        //! Meridian Line, Equator Line and Ecliptic Line.
140
149
        SkyLine * equatorLine;  // Celestial Equator line
141
150
        SkyLine * eclipticLine; // Ecliptic line
142
151
        SkyLine * meridianLine; // Meridian line
 
152
        SkyLine * horizonLine;  // Horizon line
143
153
};
144
154
 
145
155
#endif // _GRIDLINESMGR_HPP_