28 lines
575 B
C++
28 lines
575 B
C++
/*
|
|||
|
|
** Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
|
||
|
|
** Distributed under the terms of the OpenBeOS License.
|
||
|
|
*/
|
||
|
|
#ifndef PROBE_WINDOW_H
|
||
|
|
#define PROBE_WINDOW_H
|
||
|
|
|
||
|
|
|
||
|
|
#include <Window.h>
|
||
|
|
#include <Entry.h>
|
||
|
|
|
||
|
|
|
||
|
|
class ProbeWindow : public BWindow {
|
||
|
|
public:
|
||
|
|
ProbeWindow(BRect rect, entry_ref *ref, const char *attribute = NULL);
|
||
|
|
virtual ~ProbeWindow();
|
||
|
|
|
||
|
|
virtual void MessageReceived(BMessage *message);
|
||
|
|
virtual bool QuitRequested();
|
||
|
|
|
||
|
|
const entry_ref &EntryRef() const { return fRef; }
|
||
|
|
|
||
|
|
private:
|
||
|
|
entry_ref fRef;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* PROBE_WINDOW_H */
|