]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/viewmgr.hxx
Modified Files:
[flightgear.git] / src / Main / viewmgr.hxx
index eff9d67ff3c78b4f1f0c779e2399f1fe84f958e7..8a42629b0a79b9240b8025c7e7875b37f5d863be 100644 (file)
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
 #ifndef _VIEWMGR_HXX
 #define _VIEWMGR_HXX
 
-
-#ifndef __cplusplus                                                          
-# error This library requires C++
-#endif                                   
-
+#include <vector>
 
 #include <simgear/compiler.h>
 #include <simgear/structure/subsystem_mgr.hxx>
@@ -37,8 +33,7 @@
 #  include <config.h>
 #endif
 
-#include <vector>
-
+#include "fg_props.hxx"
 #include "viewer.hxx"
 
 SG_USING_STD(vector);
@@ -90,18 +85,11 @@ public:
        return views[i];
     }
     inline FGViewer *next_view() {
-       ++current;
-       if ( current >= (int)views.size() ) {
-           current = 0;
-       }
-        copyToCurrent();
+       setView((current+1 < (int)views.size()) ? (current + 1) : 0);
        return views[current];
     }
     inline FGViewer *prev_view() {
-       --current;
-       if ( current < 0 ) {
-           current = views.size() - 1;
-       }
+       setView((0 < current) ? (current - 1) : (views.size() - 1));
        return views[current];
     }
 
@@ -158,7 +146,8 @@ private:
     int getView () const;
     void setView (int newview);
 
-    typedef vector < FGViewer * > viewer_list;
+    vector<SGPropertyNode_ptr> config_list;
+    typedef vector<FGViewer *> viewer_list;
     viewer_list views;
 
     int current;