Files
Sourcetrail/src/lib/component/view/StatusBarView.h
T
wrongway88 97fd40fe9b ui: bookmarks
can now bookmark tokens
2017-02-12 15:06:07 +01:00

26 lines
588 B
C++

#ifndef STATUS_BAR_VIEW_H
#define STATUS_BAR_VIEW_H
#include "component/view/View.h"
#include "data/ErrorCountInfo.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, bool showLoader) = 0;
virtual void setErrorCount(ErrorCountInfo errorCount) = 0;
virtual void showIdeStatus(const std::string& message) = 0;
protected:
StatusBarController* getController();
};
#endif //STATUS_BAR_VIEW_H