f7215ac853
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9016 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
491 B
C++
21 lines
491 B
C++
#ifndef ZOIDBERG_MAIL_ERRORLOGWINDOW_H
|
|
#define ZOIDBERG_MAIL_ERRORLOGWINDOW_H
|
|
|
|
#include <Window.h>
|
|
#include <Alert.h>
|
|
|
|
class ErrorLogWindow : public BWindow {
|
|
public:
|
|
ErrorLogWindow(BRect rect, const char *name, window_type type);
|
|
|
|
void AddError(alert_type type,const char *message,const char *tag = NULL,bool timestamp = true);
|
|
|
|
bool QuitRequested();
|
|
void FrameResized(float new_width, float new_height);
|
|
|
|
private:
|
|
BView *view;
|
|
};
|
|
|
|
#endif // ZOIDBERG_MAIL_ERRORLOGWINDOW_H
|