ui: statusbar

statusbar added, listen to status- , error-  and parsingfinishedmessages
This commit is contained in:
Andreas Stallinger
2014-11-24 16:35:46 +01:00
parent 048fcb28b4
commit af4e3f7676
30 changed files with 392 additions and 6 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef STATUS_BAR_VIEW_H
#define STATUS_BAR_VIEW_H
#include "component/view/View.h"
class StatusBarController;
class StatusBarView : public View
{
public:
StatusBarView(ViewLayout* viewLayout);
~StatusBarView(void);
virtual std::string getName() const;
virtual void showMessage(const std::string& message, bool isError) = 0;
protected:
StatusBarController* getController();
};
#endif //STATUS_BAR_VIEW_H