ui: statusbar
statusbar added, listen to status- , error- and parsingfinishedmessages
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user