~ubuntu-branches/debian/jessie/stellarium/jessie

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2013-02-02 18:00:48 UTC
  • mto: (11.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20130202180048-8xfa026z0z4h0gd6
Tags: upstream-0.12.0
ImportĀ upstreamĀ versionĀ 0.12.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        virtual void init();
63
63
        virtual void deinit();
64
64
        virtual bool configureGui(bool show=true);
65
 
        virtual void draw(StelCore* core);
 
65
        virtual void draw(StelCore* core, class StelRenderer* renderer);
66
66
        virtual double getCallOrder(StelModuleActionName actionName) const;
67
67
        //! Returns the module-specific style sheet.
68
68
        //! The main StelStyle instance should be passed.
134
134
        bool isBinocularDefined();
135
135
 
136
136
        //! Reneders the CCD bounding box on-screen.  A telescope must be selected, or this call does nothing.
137
 
        void paintCCDBounds();
 
137
        void paintCCDBounds(class StelRenderer* renderer);
138
138
        //! Renders crosshairs into the viewport.
139
 
        void paintCrosshairs();
 
139
        void paintCrosshairs(class StelRenderer* renderer);
140
140
        //! Paint the mask into the viewport.
141
 
        void paintOcularMask();
 
141
        void paintOcularMask(class StelRenderer* renderer);
142
142
        //! Renders the three Telrad circles, but only if not in ocular mode.
143
 
        void paintTelrad();
 
143
        void paintTelrad(class StelRenderer* renderer);
144
144
 
145
145
 
146
146
        //! Paints the text about the current object selections to the upper right hand of the screen.
147
147
        //! Should only be called from a 'ready' state; currently from the draw() method.
148
 
        void paintText(const StelCore* core);
 
148
        void paintText(const StelCore* core, StelRenderer* renderer);
149
149
 
150
150
        //! This method is called by the zoom() method, when this plugin is toggled off; it resets to the default view.
151
151
        void unzoomOcular();