00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef S5_COCKPIT_H_INCLUDED_
00019 #define S5_COCKPIT_H_INCLUDED_
00020
00021
00022 #include <Inventor/nodes/SoSeparator.h>
00023 #include <Inventor/nodes/SoText2.h>
00024
00025
00026 class S5cockpit
00027 {
00028 public:
00029
00030 static SoSeparator* init();
00031 static void done();
00032
00033 static void fpsReset();
00034 static void fpsTick();
00035
00036 static const char* getFPSstring(int line = 0) { return root ? fpsString->string.getValues(line)->getString() : NULL; }
00037 static void setFPSstring(const char *s) { assert(root); fpsString->string.setValue(s); }
00038
00039 private:
00040
00041 static SoSeparator *root;
00042 static SoText2 *fpsString;
00043
00044 static void callback(void *userData, SoAction *action);
00045 static void rearrange();
00046
00047 };
00048
00049
00050 #endif