#ifndef __STATUS_HPP #define __STATUS_HPP #include "statusbar.hpp" class ICEStatusBar : public FStatusBar { unsigned long currentLine; unsigned currentColumn; int currentInsertMode; public: ICEStatusBar(); Bool Create(FWnd *pwnd); void SetLine(unsigned long line); void SetColumn(unsigned col); void SetInsertMode(int mode); void SetMessage(const char *m); }; #endif