00001
00006 #ifndef _STATEBAR_
00007 #define _STATEBAR_
00008
00009 #include <glui.h>
00010 #include <string>
00011
00012 #include "LifeVariables.h"
00013
00014 using namespace std;
00015
00016 class StateBar {
00017 private:
00019 GLUI *panel;
00021 GLUI_StaticText *fileName;
00023 GLUI_StaticText *modeState;
00025 string fileInfoText;
00027 string modeStateText;
00029 string fileDimensionsText;
00030
00031 public:
00039 StateBar(int mainWindowRef=0, int position=0);
00040
00046 void updateFileInfo(string fileInfoStr);
00047
00051 void updateRenderInfo(string renderInfo);
00052
00053 };
00054 #endif